/* V2 Specific Styles for New Page Structure */

/* Logo Shield Specific Styling */
.logo img {
    height: 48px;  /* Adjusted for shield logo */
    width: auto;
    margin-right: 12px;  /* Add margin for text spacing */
}

/* Show the logo text alongside shield logo */
.logo h1 {
    display: block;  /* Show text logo alongside shield */
    font-size: 1.75rem;
    font-weight: 700;
}

/* Hero Section Enhancements */
.hero {
    background: #ffffff;
    color: var(--text-dark);
    padding: 80px 0 90px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero .subtitle {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 500;
}

.hero .hero-text {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.hero .app-preview {
    margin: 40px auto;
    max-width: 300px;
}

.hero .app-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* Un-Finance Section */
.un-finance-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.un-finance-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.un-finance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.finance-app,
.un-finance-app {
    padding: 30px;
    border-radius: 10px;
}

.finance-app {
    background: #fee;
    border: 2px solid #fcc;
}

.un-finance-app {
    background: #e8f0fe;
    border: 2px solid var(--pulse-blue);
}

.finance-app h4 {
    color: #d32f2f;
    margin-bottom: 20px;
}

.un-finance-app h4 {
    color: var(--pulse-blue);
    margin-bottom: 20px;
}

.finance-app ul,
.un-finance-app ul {
    list-style: none;
    padding: 0;
}

.finance-app li,
.un-finance-app li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.finance-app li::before {
    content: "−";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
}

.un-finance-app li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--pulse-blue);
    font-weight: bold;
}

.un-finance-quote {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-style: italic;
    margin-top: 30px;
}

/* Three Steps Section */
.three-steps {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.three-steps h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--pulse-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Core Features Section */
.core-features {
    padding: 80px 0;
}

.core-features h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.feature-highlight {
    margin-bottom: 80px;
}

.feature-highlight .feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-highlight.spend-pulse .feature-image,
.feature-highlight.flex-buffer .feature-image {
    order: -1;
}

.feature-text h4 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-tagline {
    color: var(--pulse-blue);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-points li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.feature-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pulse-blue);
    font-weight: bold;
}

.feature-quote {
    margin-top: 25px;
    padding: 20px;
    background: #f0f7ff;
    border-left: 3px solid var(--pulse-blue);
    border-radius: 0 8px 8px 0;
}

.feature-quote p {
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}

/* Getting Started Section */
.getting-started {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.getting-started h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.setup-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.setup-step {
    text-align: center;
    padding: 30px 20px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.setup-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* CTA Transition Section */
.cta-transition {
    background: linear-gradient(135deg, #e8f0fe 0%, #d6e7ff 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-transition h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-transition p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Problem Solution Section */
.problem-solution {
    padding: 80px 0;
    background-color: #fff;
}

.problem-solution h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.solution-intro {
    text-align: center;
    margin-top: 60px;
}

.solution-intro h3 {
    color: var(--pulse-blue);
    margin-bottom: 20px;
}

/* Key Benefits Section */
.key-benefits {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-card h4 {
    color: var(--pulse-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background-color: #fff;
}

.social-proof h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-compact {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--pulse-blue);
}

.testimonial-compact p {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.testimonial-compact cite {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 60px;
}

.stat {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--pulse-blue);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--pulse-blue) 0%, #1a5dcc 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: white;
    opacity: 1;
}

.final-cta .app-stores {
    justify-content: center;
}

/* Science List Styling */
.science-list {
    list-style: none;
    padding: 0;
}

.science-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.science-list .icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    flex-shrink: 0;
}

.science-list .icon img {
    width: 100%;
    height: 100%;
}

.science-list .text h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Manual Entry Section */
.manual-entry-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.manual-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.manual-benefits li {
    margin-bottom: 25px;
}

.manual-benefits h4 {
    color: var(--pulse-blue);
    margin-bottom: 8px;
}

.science-quote {
    background: #e8f0fe;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--pulse-blue);
    font-style: italic;
}

/* Ballpark Precision Section */
.ballpark-precision {
    padding: 80px 0;
    background-color: #fff;
}

.ballpark-precision h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.comparison-column h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.negative-list,
.positive-list {
    list-style: none;
    padding: 0;
}

.negative-list li,
.positive-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.negative-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.positive-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.insight-text {
    background: #e8f0fe;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    font-style: italic;
    color: var(--text-dark);
    border-left: 3px solid var(--pulse-blue);
}

/* Privacy Promise Section */
.privacy-promise {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.privacy-promise h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.privacy-promise > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.privacy-item {
    text-align: center;
    padding: 30px;
}

.privacy-item h4 {
    color: var(--pulse-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Success Stories Section */
.success-stories {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.success-stories h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial cite {
    display: block;
    text-align: right;
    color: var(--text-light);
    font-style: normal;
}

/* Learn More Link */
.learn-more {
    margin-top: 20px;
}

.learn-more a {
    color: var(--pulse-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.learn-more a:hover {
    color: #1a5dcc;
    text-decoration: underline;
}

/* Learn more link in blue background sections */
.final-cta .learn-more a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.final-cta .learn-more a:hover {
    color: #f0f7ff;
    text-decoration-thickness: 2px;
}

/* Or Learn Link */
.or-learn {
    margin-top: 20px;
    color: var(--text-light);
}

.or-learn a {
    color: var(--pulse-blue);
    text-decoration: none;
    font-weight: 500;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.comparison-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.comparison-table {
    width: 100%;
    margin-top: 40px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background-color: var(--pulse-blue);
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 20px;
    color: var(--text-dark);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table td:nth-child(1) {
    color: #6b7280;
}

.comparison-table td:nth-child(2) {
    font-weight: 500;
    color: var(--pulse-blue);
}

.comparison-table td:nth-child(3) {
    color: var(--text-light);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-highlight .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-highlight .feature-image {
        order: -1;
    }
    
    .feature-highlight.spend-pulse .feature-image,
    .feature-highlight.flex-buffer .feature-image {
        order: -1;
    }
    
    .steps-grid,
    .problems-grid,
    .benefits-grid,
    .testimonials-row,
    .privacy-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .setup-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Responsive table */
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
    
    .un-finance-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    @media (max-width: 600px) {
        .comparison-table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }
        
        .hero h2 {
            font-size: 2rem;
        }
        
        .hero .subtitle {
            font-size: 1.5rem;
        }
        
        .hero .tagline {
            font-size: 1rem;
        }
    }
}