/* ============================================
   SPEED2LEAD AI - ECOMMERCE PAGE STYLES
   Premium B2B SaaS Design System
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --navy: #1a2332;
    --teal: #0891B2;
    --gold: #F59E0B;
    --light-gray: #F9FAFB;
    --white: #FFFFFF;
    --dark-gray: #374151;
    --medium-gray: #6B7280;
    --border-gray: #E5E7EB;
    
    /* Success/Warning/Error */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Section */
.section {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

/* Typography */
.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-primary:hover {
    background-color: var(--teal);
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--teal);
    border-color: var(--teal);
}

.btn-secondary:hover {
    background-color: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

.btn-xlarge {
    padding: 24px 48px;
    font-size: 22px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 16px;
}

.btn-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    border-color: #f59e0b;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-color: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-orange.btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

.btn-orange.btn-xlarge {
    padding: 24px 48px;
    font-size: 22px;
}

@media (max-width: 768px) {
    .btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    .btn-xlarge {
        padding: 18px 36px;
        font-size: 20px;
    }
}

/* Navigation */
.nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-gray);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-brand .logo img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 76px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 76px);
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
        align-items: stretch;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .nav-links .btn {
        padding: 14px 24px;
        font-size: 16px;
        text-align: center;
        margin-top: 10px;
    }
    
    /* Hamburger Icon */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
        z-index: 1000;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--navy);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .logo img {
        height: 30px;
    }
    
    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .nav-overlay.active {
        display: block;
    }
}

/* Hamburger hidden on desktop */
.hamburger {
    display: none;
}

/* Founding Client Banner */
.founding-banner {
    background: linear-gradient(90deg, var(--teal), var(--navy));
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
}

.founding-banner.sticky {
    position: sticky;
    top: 70px;
    z-index: 99;
}

.founding-banner.bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
}

.founding-banner p {
    margin: 0;
}

.founding-banner .highlight {
    color: var(--gold);
    font-weight: 700;
}

.founding-banner .banner-cta {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 8px;
}

.founding-banner .banner-cta:hover {
    color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 60px 0 80px;
}

/* Target Audience Callout */
.hero-attention {
    text-align: center;
    margin-bottom: 32px;
}

.hero-attention p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin: 0;
    padding: 8px 16px;
    background-color: rgba(8, 145, 178, 0.1);
    border-radius: 6px;
    display: inline-block;
}

/* Hero Layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 968px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1; /* Move visual above content on mobile */
    }
    
    .hero-attention p {
        font-size: 12px;
    }
}

/* 3-Line Headline */
.hero-headline-group {
    margin-bottom: 32px;
}

.hero-headline-line1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 16px;
}

.hero-headline-line2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--teal);
    margin-bottom: 20px;
}

.hero-headline-line3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--gold);
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--gold);
    padding: 12px 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .hero-headline-line1 {
        font-size: 36px;
    }
    
    .hero-headline-line2 {
        font-size: 24px;
    }
    
    .hero-headline-line3 {
        font-size: 22px;
    }
}

.hero-subheadline {
    font-size: 20px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 32px;
}

.hero-supporting {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 32px;
}
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
    }
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 16px;
    color: var(--medium-gray);
}

.hero-trust span::before {
    content: '✅ ';
}

/* Multi-Channel Chaos Visual */
.multi-channel-chaos {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.channel-notification {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.channel-notification:nth-child(1) {
    animation-delay: 0.1s;
}

.channel-notification:nth-child(2) {
    animation-delay: 0.2s;
}

.channel-notification:nth-child(3) {
    animation-delay: 0.3s;
}

.channel-notification:nth-child(4) {
    animation-delay: 0.4s;
}

.channel-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.channel-content strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    margin-bottom: 4px;
}

.channel-content p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 16px;
}

.channel-content .timestamp {
    display: block;
    font-size: 12px;
    color: var(--medium-gray);
    margin-top: 4px;
}

.instagram {
    border-left: 4px solid #E4405F;
}

.email {
    border-left: 4px solid #EA4335;
}

.sms {
    border-left: 4px solid #0891B2;
}

.chat {
    border-left: 4px solid #7C3AED;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   GAP SECTION
   ============================================ */

.section-gap {
    background-color: var(--light-gray);
}

.gap-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

@media (max-width: 968px) {
    .gap-layout {
        grid-template-columns: 1fr;
    }
}

.gap-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 32px;
}

.gap-subtitle.highlight {
    color: var(--error);
}

/* Stat Boxes */
.stat-box {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.stat-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.stat-content p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 16px;
}

/* Cost Breakdown */
.cost-breakdown {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-gray);
}

.cost-item:last-of-type {
    border-bottom: none;
}

.cost-label {
    color: var(--dark-gray);
}

.cost-amount {
    font-weight: 700;
    color: var(--navy);
    font-size: 20px;
}

.cost-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0 0;
    margin-top: 16px;
    border-top: 2px solid var(--navy);
}

.cost-total .cost-amount {
    font-size: 28px;
    color: var(--error);
}

/* Funnel Graphic */
.funnel-graphic {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.funnel-stage {
    margin-bottom: 16px;
}

.funnel-bar {
    background: linear-gradient(90deg, var(--teal), var(--navy));
    color: var(--white);
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-base);
}

.funnel-bar.full {
    width: 100%;
    background: linear-gradient(90deg, var(--teal), var(--navy));
}

.funnel-bar.medium {
    width: 70%;
    background: linear-gradient(90deg, var(--medium-gray), var(--dark-gray));
}

.funnel-bar.small {
    width: 30%;
    background: linear-gradient(90deg, var(--error), #DC2626);
}

.funnel-result {
    margin-top: 24px;
    padding: 16px;
    background-color: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--error);
    font-weight: 600;
    color: var(--error);
}

.gap-insight {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--teal);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   SOLUTION SECTION (3 AI Agents)
   ============================================ */

.section-solution {
    background-color: var(--white);
}

.agent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .agent-grid {
        grid-template-columns: 1fr;
    }
}

.agent-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.agent-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.agent-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.agent-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.agent-section {
    margin-bottom: 24px;
}

.agent-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 12px;
}

.agent-section ul {
    list-style: none;
    padding-left: 0;
}

.agent-section li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.agent-section li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--teal);
    font-weight: 700;
}

.agent-impact {
    background: rgba(8, 145, 178, 0.1);
    border-left: 4px solid var(--teal);
    padding: 16px;
    border-radius: 8px;
    margin-top: 24px;
}

.agent-impact strong {
    display: block;
    color: var(--navy);
    margin-bottom: 8px;
}

.agent-impact ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.agent-impact li {
    padding: 4px 0;
}

/* Chat Example */
.agent-example {
    margin-top: 24px;
}

.chat-bubble {
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
}

.chat-bubble strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.chat-bubble.ai-response {
    background: rgba(8, 145, 178, 0.1);
    border-left: 3px solid var(--teal);
}

/* Timeline */
.agent-timeline {
    margin-top: 24px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
}

.timeline-day {
    font-weight: 700;
    color: var(--teal);
}

.timeline-action {
    color: var(--dark-gray);
}

/* Before/After */
.before-after {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ba-column {
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.ba-stat {
    font-size: 20px;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    margin-top: 8px;
}

.ba-stat.bad {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.ba-stat.good {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.ba-arrow {
    font-size: 32px;
    color: var(--teal);
}

.ba-result {
    flex-basis: 100%;
    margin-top: 16px;
    padding: 12px;
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--success);
    border-radius: 8px;
    font-weight: 600;
    color: var(--success);
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* ============================================
   CLONE YOURSELF SECTION
   ============================================ */

.section-clone {
    background-color: var(--light-gray);
}

.clone-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

@media (max-width: 968px) {
    .clone-layout {
        grid-template-columns: 1fr;
    }
}

.clone-column h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 32px;
}

.clone-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.clone-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.clone-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.clone-item strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 4px;
}

.clone-item p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 16px;
}

.clone-quote {
    font-size: 22px;
    font-style: italic;
    color: var(--teal);
    margin-bottom: 32px;
    padding-left: 20px;
    border-left: 4px solid var(--teal);
}

.testimonial-preview {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    margin-bottom: 8px;
}

.testimonial-note {
    font-size: 14px;
    color: var(--medium-gray);
    font-style: italic;
}

.chat-examples {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.chat-examples h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
}

.chat-example {
    margin-bottom: 24px;
}

.chat-example:last-child {
    margin-bottom: 0;
}

.chat-example strong {
    display: block;
    color: var(--teal);
    margin-bottom: 12px;
}

.chat-example .customer {
    background-color: var(--light-gray);
}

.chat-example .ai {
    background-color: rgba(8, 145, 178, 0.1);
}

.clone-process {
    margin-top: 60px;
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.clone-process h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.clone-process p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   PROCESS/HOW IT WORKS SECTION
   ============================================ */

.section-process {
    background-color: var(--white);
}

.process-timeline {
    margin-top: 60px;
}

.process-step {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    overflow: visible;
}

.process-number {
    display: inline-block;
    background: linear-gradient(90deg, var(--teal), var(--navy));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

@media (max-width: 968px) {
    .process-content {
        grid-template-columns: 1fr;
    }
}

.process-what,
.process-you,
.process-deliverable {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
}

.process-what strong,
.process-you strong,
.process-deliverable strong {
    display: block;
    color: var(--teal);
    font-size: 18px;
    margin-bottom: 12px;
}

.process-content ul {
    list-style: none;
    padding-left: 0;
}

.process-content li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.process-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.process-progress {
    margin-top: 24px;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.progress-bar {
    background: linear-gradient(90deg, var(--success), var(--teal));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: width 1s ease;
    min-width: 150px;
    display: inline-block;
    width: auto;
}

.progress-35 {
    min-width: 200px;
}

.progress-70 {
    min-width: 250px;
}

/* ============================================
   PROOF SECTION (Metrics)
   ============================================ */

.section-proof {
    background-color: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.stat-card-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(26, 35, 50, 0.1));
    border: 2px solid var(--teal);
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.stat-card-featured .stat-value {
    font-size: 56px;
    color: var(--teal);
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.stat-description {
    color: var(--medium-gray);
    font-size: 16px;
    margin-bottom: 16px;
}

.stat-impact {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-gray);
    font-size: 16px;
    color: var(--dark-gray);
}

.stat-breakdown {
    margin-top: 20px;
    text-align: left;
}

.breakdown-item {
    padding: 10px;
    margin-bottom: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.breakdown-item span {
    font-weight: 700;
    color: var(--teal);
}

.additional-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

@media (max-width: 968px) {
    .additional-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 568px) {
    .additional-metrics {
        grid-template-columns: 1fr;
    }
}

.metric-badge {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.metric-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.metric-badge strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 8px;
}

.metric-badge p {
    margin: 0;
    font-size: 14px;
    color: var(--medium-gray);
}

.dashboard-mockup {
    margin-top: 60px;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.dashboard-mockup h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 32px;
    text-align: center;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 968px) {
    .dashboard-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 568px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
}

.dashboard-stat {
    text-align: center;
    padding: 24px;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.dashboard-stat.highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(8, 145, 178, 0.1));
    border: 2px solid var(--success);
}

.dash-label {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 8px;
}

.dash-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.dashboard-stat.highlight .dash-value {
    color: var(--success);
}

.dash-detail {
    font-size: 12px;
    color: var(--medium-gray);
}

.disclaimer {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: var(--medium-gray);
    font-style: italic;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.section-testimonials {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.testimonial-video-placeholder {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
    margin-bottom: 24px;
}

.video-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.testimonial-video-placeholder p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-video-placeholder span {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-quote p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    margin-bottom: 4px;
}

.testimonial-author p {
    margin: 0;
    font-size: 14px;
    color: var(--medium-gray);
}

.testimonial-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
}

.testimonial-metrics span {
    background-color: rgba(8, 145, 178, 0.1);
    color: var(--teal);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-cta {
    margin-top: 60px;
    text-align: center;
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
}

.testimonial-cta p {
    font-size: 18px;
    margin-bottom: 24px;
}

/* ============================================
   FAQS SECTION
   ============================================ */

.section-faqs {
    background-color: var(--light-gray);
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.faq-toggle {
    font-size: 32px;
    color: var(--teal);
    font-weight: 300;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    padding: 0 32px 24px 32px;
    max-height: 2000px;
}

.faq-answer p {
    margin-bottom: 12px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    margin-bottom: 12px;
    padding-left: 24px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.comparison-table-inline {
    overflow-x: auto;
    margin: 20px 0;
}

.comparison-table-inline table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table-inline th,
.comparison-table-inline td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-gray);
}

.comparison-table-inline th {
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--navy);
}

.faq-cta {
    margin-top: 60px;
    text-align: center;
}

.faq-cta p {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
}

/* ============================================
   CHOICE/COMPARISON SECTION
   ============================================ */

.section-choice {
    background-color: var(--white);
}

.comparison-table-full {
    overflow-x: auto;
    margin-top: 60px;
}

.comparison-table-full table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table-full th,
.comparison-table-full td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

.comparison-table-full thead th {
    background-color: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.comparison-table-full th.option-bad {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.comparison-table-full th.option-okay {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.comparison-table-full th.option-good {
    background-color: rgba(8, 145, 178, 0.1);
    color: var(--teal);
}

.comparison-table-full tbody td:first-child {
    font-weight: 600;
    color: var(--navy);
}

.comparison-table-full tbody tr:hover {
    background-color: var(--light-gray);
}

.cost-comparison {
    margin-top: 60px;
}

.cost-comparison h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 40px;
}

.cost-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 968px) {
    .cost-comparison-grid {
        grid-template-columns: 1fr;
    }
}

.cost-option {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cost-option.highlight {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(16, 185, 129, 0.1));
    border: 3px solid var(--teal);
    transform: scale(1.05);
}

.cost-option h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.cost-amount {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cost-amount.bad {
    color: var(--error);
}

.cost-amount.okay {
    color: var(--warning);
}

.cost-amount.good {
    color: var(--success);
}

.cost-time {
    font-size: 18px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 8px;
}

.cost-detail {
    font-size: 14px;
    color: var(--medium-gray);
}

.verdict {
    margin-top: 60px;
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
}

.verdict h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 40px;
}

.verdict-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 968px) {
    .verdict-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 568px) {
    .verdict-grid {
        grid-template-columns: 1fr;
    }
}

.verdict-item {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.verdict-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.verdict-item strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 8px;
}

.verdict-item p {
    margin: 0;
    font-size: 14px;
    color: var(--medium-gray);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.section-final-cta {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-subheadline {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 40px;
}

@media (max-width: 768px) {
    .cta-headline {
        font-size: 32px;
    }
    
    .cta-subheadline {
        font-size: 18px;
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.section-final-cta .btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.section-final-cta .btn-primary:hover {
    background-color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px) scale(1.05);
}

.section-final-cta .btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.section-final-cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-trust span::before {
    content: '✅ ';
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.highlight {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 568px) {
    .hero-headline-line1 {
        font-size: 28px;
    }
    
    .hero-headline-line2 {
        font-size: 20px;
    }
    
    .hero-headline-line3 {
        font-size: 18px;
    }
    
    .ba-stat {
        font-size: 16px;
        padding: 10px 8px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .nav,
    .founding-banner,
    .footer {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}