/* CSS for index_pricing_newww.html */

/* ============================================
        COLOR PALETTE
        Primary Blue: #046bfc
        White: #ffffff
        Navy Dark: #04143d
        Accent Orange: #ff9900 (accents only)
    ============================================ */
    
    :root {
        --primary-blue: #046bfc;
        --primary-blue-hover: #0356c9;
        --white: #ffffff;
        --navy-dark: #04143d;
        --accent-orange: #ff9900;
        --accent-orange-hover: #e68a00;
        
        /* Desaturated variants */
        --light-blue-bg: #f0f6ff;
        --soft-navy: #1a2a4a;
        --muted-blue: #5a8ed4;
        --gray-text: #64748b;
        --light-gray: #f8fafc;
        --border-light: #e2e8f0;
        --success-green: #10b981;
        
        /* Gradients */
        --gradient-hero: linear-gradient(135deg, #04143d 0%, #0a2a5e 50%, #046bfc 100%);
        --gradient-blue: linear-gradient(135deg, #046bfc 0%, #0284c7 100%);
        --gradient-navy: linear-gradient(180deg, #04143d 0%, #0a1f3d 100%);
        --gradient-light: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        color: var(--navy-dark);
        line-height: 1.6;
        background-color: var(--white);
    }

    /* ============================================
        NAVIGATION
    ============================================ */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-light);
        padding: 0 24px;
    }
    
    .nav-container {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 72px;
    }
    
    .logo {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--navy-dark);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
        background: var(--gradient-blue);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1rem;
        font-weight: 700;
    }
    
    .nav-links {
        display: flex;
        gap: 36px;
        list-style: none;
    }
    
    .nav-links a {
        text-decoration: none;
        color: var(--soft-navy);
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary-blue);
    }
    
    .nav-cta {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .btn {
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.25s ease;
        cursor: pointer;
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .btn-outline {
        background: transparent;
        color: var(--navy-dark);
        border: 1.5px solid var(--border-light);
    }
    
    .btn-outline:hover {
        border-color: var(--primary-blue);
        color: var(--primary-blue);
    }
    
    .btn-primary {
        background: var(--primary-blue);
        color: white;
    }
    
    .btn-primary:hover {
        background: var(--primary-blue-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(4, 107, 252, 0.35);
    }
    
    .btn-accent {
        background: var(--accent-orange);
        color: white;
    }
    
    .btn-accent:hover {
        background: var(--accent-orange-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 153, 0, 0.35);
    }

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

    .btn-white:hover {
        background: var(--light-gray);
        transform: translateY(-2px);
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .btn-block {
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        flex-direction: column;
        gap: 5px;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--navy-dark);
        border-radius: 2px;
        transition: 0.3s;
    }

    /* ============================================
        HERO SECTION WITH BLOBS
    ============================================ */
    .hero {
        background: #ffffff;
        padding: 140px 24px 80px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    /* Hero Blobs */
    .hero-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 1;
        pointer-events: none;
        z-index: 0;
    }
    .hero-blob-1 {
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(4, 107, 252, 0.55) 0%, rgba(4, 107, 252, 0.15) 60%, transparent 80%);
        top: -200px;
        left: -150px;
    }
    .hero-blob-2 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 153, 0, 0.45) 0%, rgba(255, 153, 0, 0.1) 60%, transparent 80%);
        top: 50px;
        right: -100px;
    }
    .hero-blob-3 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(4, 107, 252, 0.4) 0%, rgba(4, 107, 252, 0.1) 60%, transparent 80%);
        bottom: -100px;
        left: 30%;
    }
    /* Hero Grid Pattern */
    .hero-grid {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(rgba(4, 107, 252, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(4, 107, 252, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        z-index: 1;
    }
    
    .hero-content {
        max-width: 850px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }
    
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(4, 107, 252, 0.1);
        border: 1px solid rgba(4, 107, 252, 0.2);
        padding: 10px 20px;
        border-radius: 50px;
        margin-bottom: 28px;
        color: var(--primary-blue);
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .hero-badge-icon {
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: 3.25rem;
        font-weight: 800;
        color: var(--navy-dark);
        margin-bottom: 20px;
        line-height: 1.15;
    }
    
    .hero h1 .highlight {
        color: var(--primary-blue);
    }
    
    .hero p.subtitle {
        font-size: 1.2rem;
        color: var(--gray-text);
        max-width: 680px;
        margin: 0 auto 16px;
        line-height: 1.7;
    }

    .hero-features {
        display: flex;
        justify-content: center;
        gap: 32px;
        margin: 28px 0 36px;
        flex-wrap: wrap;
    }

    .hero-feature {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--soft-navy);
        font-size: 0.95rem;
        font-weight: 500;
    }

    .hero-feature-icon {
        width: 22px;
        height: 22px;
        background: var(--success-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.75rem;
        font-weight: 700;
    }

    /* Toggle Controls */
    .hero-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
        margin-bottom: 12px;
    }

    .toggle-group {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .toggle-label {
        color: var(--soft-navy);
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .billing-toggle {
        display: inline-flex;
        background: var(--light-blue-bg);
        border-radius: 50px;
        padding: 4px;
        border: 1px solid var(--border-light);
    }
    
    .toggle-btn {
        padding: 10px 22px;
        border-radius: 50px;
        border: none;
        background: transparent;
        color: var(--gray-text);
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .toggle-btn.active {
        background: var(--primary-blue);
        color: white;
    }
    
    .save-badge {
        display: inline-block;
        background: var(--success-green);
        color: white;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 4px;
        margin-left: 6px;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

    /* When Annual is active (blue bg), badge flips to white+green */
    .toggle-btn.active .save-badge {
        background: white;
        color: var(--success-green);
    }

    .currency-select {
        background: white;
        border: 2px solid var(--border-light);
        color: var(--navy-dark);
        padding: 12px 40px 12px 16px;
        border-radius: 10px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2304143d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 12px;
        min-width: 130px;
        transition: all 0.2s ease;
    }

    .currency-select:hover {
        border-color: var(--primary-blue);
        background-color: #f8fafc;
    }

    .currency-select:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(4, 107, 252, 0.1);
    }

    .currency-select option {
        background: white;
        color: var(--navy-dark);
        padding: 12px;
        font-weight: 500;
    }

    /* Trust Badges */
    .trust-badges {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 32px;
        margin-bottom: 32px;
        padding-top: 24px;
        padding-bottom: 24px;
        border-top: 1px solid rgba(4, 20, 61, 0.08);
    }

    .trust-label {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--gray-text);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
        text-align: center;
    }

    .trust-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    a.trust-logo {
        display: flex;
        align-items: center;
        height: 40px;
        opacity: 0.7;
        transition: all 0.2s ease;
        text-decoration: none;
    }

    a.trust-logo:hover {
        opacity: 1;
        transform: translateY(-2px);
    }

    .trust-logo img {
        height: 100%;
        width: auto;
        max-width: 120px;
        object-fit: contain;
    }

    .trust-logo[data-name="SaaSHub"] img {
        max-width: 140px;
    }

    @media (max-width: 768px) {
        .trust-badges {
            gap: 12px;
        }

        .trust-logos {
            gap: 16px;
        }

        a.trust-logo {
            height: 32px;
        }

        .trust-logo img {
            max-width: 90px;
        }
    }

    /* ============================================
        PRICING SECTION - Clean Modern Design
    ============================================ */
    .pricing {
        padding: 60px 24px 80px;
        background: var(--navy-dark);
        position: relative;
        overflow: hidden;
    }

    /* Pricing Blobs */
    .pricing-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 1;
        pointer-events: none;
        z-index: 0;
    }

    .pricing-blob-1 {
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(4, 107, 252, 0.5) 0%, rgba(4, 107, 252, 0.12) 60%, transparent 80%);
        top: -200px;
        left: -150px;
    }

    .pricing-blob-2 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 153, 0, 0.35) 0%, rgba(255, 153, 0, 0.08) 60%, transparent 80%);
        top: 200px;
        right: -150px;
    }

    .pricing-blob-3 {
        width: 550px;
        height: 550px;
        background: radial-gradient(circle, rgba(4, 107, 252, 0.4) 0%, rgba(4, 107, 252, 0.1) 60%, transparent 80%);
        bottom: -150px;
        left: 35%;
    }

    /* Pricing Grid Pattern */
    .pricing-grid-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        z-index: 0;
    }
    
    .pricing-container {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        align-items: stretch;
    }
    
    /* Base Card Style — Clean White */
    .pricing-card {
        background: white;
        border-radius: 16px;
        padding: 0;
        border: 1px solid var(--border-light);
        position: relative;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        box-shadow: 0 2px 12px rgba(4, 20, 61, 0.05);
        margin-top: 14px;
    }
    
    .pricing-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(4, 20, 61, 0.10);
    }

    /* Tinted Header Zone — fades into white */
    .card-header-zone {
        padding: 32px 32px 0;
        position: relative;
        border-radius: 16px 16px 0 0;
        overflow: hidden;
    }
    .card-header-zone::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 32px;
        background: linear-gradient(to bottom, transparent, white);
        pointer-events: none;
        z-index: 0;
    }
    .card-header-zone .card-divider {
        position: relative;
        z-index: 1;
        margin: 20px 0 0;
    }

    .card-analytics .card-header-zone {
        background: linear-gradient(180deg, rgba(4, 107, 252, 0.07) 0%, rgba(4, 107, 252, 0.02) 100%);
    }
    .card-repricer .card-header-zone {
        background: linear-gradient(180deg, rgba(255, 153, 0, 0.08) 0%, rgba(255, 153, 0, 0.02) 100%);
    }
    .card-enterprise .card-header-zone {
        background: linear-gradient(180deg, rgba(4, 20, 61, 0.06) 0%, rgba(4, 20, 61, 0.01) 100%);
    }

    /* Card Body — pure white */
    .card-body-zone {
        padding: 20px 32px 36px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    /* Card-specific accent colors — only for key elements */
    .card-analytics .plan-name { color: var(--navy-dark); }
    .card-analytics .price-currency,
    .card-analytics .price-amount { color: var(--primary-blue); }
    .card-analytics .features-list li svg { color: var(--primary-blue); }
    .card-analytics .btn-cta-primary {
        background: var(--primary-blue);
    }
    .card-analytics .btn-cta-primary:hover {
        background: #0356d4;
        box-shadow: 0 6px 16px rgba(4, 107, 252, 0.25);
    }
    .card-analytics .tier-select:hover,
    .card-analytics .tier-select:focus {
        border-color: var(--primary-blue);
    }

    .card-repricer .plan-name { color: var(--navy-dark); }
    .card-repricer .price-currency,
    .card-repricer .price-amount { color: var(--accent-orange); }
    .card-repricer .features-list li svg { color: var(--accent-orange); }
    .card-repricer .btn-cta-primary {
        background: var(--accent-orange);
    }
    .card-repricer .btn-cta-primary:hover {
        background: #e68a00;
        box-shadow: 0 6px 16px rgba(255, 153, 0, 0.25);
    }
    .card-repricer .tier-select:hover,
    .card-repricer .tier-select:focus {
        border-color: var(--accent-orange);
    }

    .card-enterprise .plan-name { color: var(--navy-dark); }
    .card-enterprise .price-amount { color: var(--navy-dark); }
    .card-enterprise .features-list li svg { color: var(--navy-dark); }
    .card-enterprise .btn-cta-outline {
        border-color: var(--navy-dark);
        color: var(--navy-dark);
    }
    .card-enterprise .btn-cta-outline:hover {
        background: var(--navy-dark);
        color: white;
    }

    /* Includes Banner — compact */
    .includes-banner {
        background: white;
        border: 1.5px solid var(--accent-orange);
        position: relative;
        margin-top: 4px;
        margin-bottom: 16px;
    }
    .includes-banner .includes-badge {
        position: absolute;
        top: -9px;
        left: 14px;
        background: var(--accent-orange);
        color: white;
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 2px 10px;
        border-radius: 3px;
        line-height: 1.3;
    }
    .includes-banner .includes-icon {
        width: 22px;
        height: 22px;
        background: var(--success-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .includes-banner .includes-icon svg {
        width: 12px;
        height: 12px;
        color: white;
    }
    .includes-banner .includes-text {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .includes-banner .includes-title {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--navy-dark);
    }
    .includes-banner .includes-subtitle {
        font-size: 0.72rem;
        color: var(--gray-text);
        font-weight: 400;
    }

    /* Card Badge — sits on card border, top center */
    .card-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px 18px;
        border-radius: 20px;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        line-height: 1.3;
        white-space: nowrap;
        z-index: 2;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .card-badge-blue {
        background: var(--primary-blue);
        color: white;
    }
    .card-badge-orange {
        background: var(--accent-orange);
        color: white;
    }

    /* Plan Name */
    .plan-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--navy-dark);
        margin: 0 0 8px 0;
    }

    .plan-name-row {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* Price Display - Prominent */
    .price-display {
        margin: 16px 0;
    }

    .price-row {
        display: flex;
        align-items: baseline;
        gap: 4px;
    }

    .price-currency {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--navy-dark);
    }

    .price-amount {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--navy-dark);
        line-height: 1;
    }

    .price-amount.free-price {
        color: var(--primary-blue);
        font-size: 3rem;
    }

    .price-period {
        font-size: 1rem;
        font-weight: 500;
        color: var(--gray-text);
        margin-left: 4px;
    }

    /* Annual Price Reveal */
    .price-old {
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--gray-text);
        text-decoration: line-through;
        align-self: center;
        margin-right: 8px;
        display: none;
    }

    .price-suffix {
        font-size: 1rem;
        font-weight: 500;
        color: var(--gray-text);
        align-self: baseline;
        margin-left: 2px;
    }

    .annual-note {
        font-size: 0.82rem;
        color: var(--gray-text);
        margin-top: 4px;
        display: none;
    }

    .price-display.annual-active .price-old {
        display: inline-block;
        animation: priceReveal 0.35s ease forwards;
    }

    .price-display.annual-active .annual-note {
        display: block;
        animation: priceReveal 0.35s ease forwards;
        animation-delay: 0.1s;
        opacity: 0;
    }

    .price-display.annual-active .price-amount {
        animation: pricePop 0.35s ease forwards;
    }

    @keyframes priceReveal {
        from { opacity: 0; transform: translateY(-4px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pricePop {
        0% { opacity: 0.6; transform: scale(0.95); }
        100% { opacity: 1; transform: scale(1); }
    }

    /* Plan Description */
    .plan-description {
        font-size: 0.95rem;
        color: var(--gray-text);
        line-height: 1.5;
        margin-bottom: 20px;
        min-height: 44px;
    }

    /* Tier Selector Dropdown */
    .tier-selector {
        margin-bottom: 24px;
    }

    .tier-select {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid var(--border-light);
        border-radius: 10px;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--navy-dark);
        background: white;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2304143d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        transition: all 0.2s ease;
    }

    .tier-select:hover,
    .tier-select:focus {
        border-color: var(--primary-blue);
        outline: none;
    }

    /* Includes Box — layout */
    .includes-banner {
        border-radius: 10px;
        padding: 14px 14px 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Divider */
    .card-divider {
        height: 1px;
        background: var(--border-light);
        margin: 20px 0;
    }

    /* Features List */
    .features-section {
        margin-bottom: 24px;
        flex: 1;
    }

    .features-label {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--gray-text);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 16px;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .features-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 0;
        font-size: 0.95rem;
        color: var(--soft-navy);
    }

    .features-list li svg {
        width: 20px;
        height: 20px;
        color: var(--primary-blue);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .features-list li .feature-main {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .features-list li .feature-main .feature-title {
        font-weight: 600;
        color: var(--navy-dark);
        font-size: 0.92rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        user-select: none;
    }

    .feature-title .feature-chevron {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        color: var(--gray-text);
        transition: transform 0.3s ease, color 0.2s;
    }

    .feature-title.expanded .feature-chevron {
        transform: rotate(180deg);
    }

    .card-analytics .feature-title:hover { color: var(--primary-blue); }
    .card-repricer .feature-title:hover { color: var(--accent-orange); }
    .card-enterprise .feature-title:hover { color: var(--navy-dark); }

    .feature-title:hover .feature-chevron { color: inherit; }

    .feature-sub-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 3px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, margin 0.3s ease;
    }

    .feature-sub-list.expanded {
        max-height: 120px;
        margin-top: 4px;
    }

    .feature-sub-list li {
        font-size: 0.78rem;
        color: var(--gray-text);
        padding: 0;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .feature-sub-list li::before {
        content: '·';
        font-weight: 700;
        font-size: 1rem;
        line-height: 1;
        opacity: 0.5;
    }

    /* CTA Button */
    .plan-cta {
        margin-top: auto;
    }

    .btn-cta {
        display: block;
        width: 100%;
        padding: 16px 24px;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        transition: all 0.2s ease;
        cursor: pointer;
        border: none;
    }

    .btn-cta-outline {
        background: white;
        color: var(--navy-dark);
        border: 2px solid var(--border-light);
    }

    .btn-cta-outline:hover {
        border-color: var(--navy-dark);
        background: var(--light-gray);
    }

    .btn-cta-primary {
        background: var(--primary-blue);
        color: white;
    }

    .btn-cta-primary:hover {
        background: #0356d4;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(4, 107, 252, 0.3);
    }

    .cta-note {
        text-align: center;
        font-size: 0.8rem;
        color: var(--gray-text);
        margin-top: 12px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 450px;
            margin: 0 auto;
            gap: 32px;
        }
    }

    @media (max-width: 768px) {
        .pricing {
            padding: 40px 16px 60px;
        }

        .card-header-zone {
            padding: 24px 24px 20px;
        }

        .card-body-zone {
            padding: 4px 24px 28px;
        }

        .price-amount {
            font-size: 3rem;
        }
    }
    
    /* ============================================
        BUNDLE EXPLANATION SECTION
    ============================================ */
    .bundle-section {
        padding: 100px 24px;
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }

    /* Hero-style Blobs */
    .bundle-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 1;
        pointer-events: none;
        z-index: 0;
    }

    .bundle-blob-1 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(4, 107, 252, 0.5) 0%, rgba(4, 107, 252, 0.12) 60%, transparent 80%);
        top: -150px;
        right: -100px;
    }

    .bundle-blob-2 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 153, 0, 0.4) 0%, rgba(255, 153, 0, 0.1) 60%, transparent 80%);
        bottom: -100px;
        left: -100px;
    }

    /* Grid Pattern */
    .bundle-grid {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(rgba(4, 107, 252, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(4, 107, 252, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        z-index: 1;
    }

    .bundle-container {
        max-width: 950px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .bundle-header {
        text-align: center;
        margin-bottom: 48px;
    }

    .bundle-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--navy-dark);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .bundle-header h2 .highlight {
        color: var(--primary-blue);
    }

    .bundle-header p {
        font-size: 1.15rem;
        color: var(--gray-text);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .bundle-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .bundle-card {
        background: white;
        border-radius: 20px;
        padding: 28px;
        position: relative;
        border: 2px solid var(--border-light);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .bundle-card-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--accent-orange);
        color: white;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 5px 10px;
        border-radius: 6px;
    }

    .bundle-card-top {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 6px;
    }

    .bundle-card-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .bundle-card-icon svg {
        width: 26px;
        height: 26px;
    }

    .bundle-icon-blue {
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary-blue);
    }

    .bundle-icon-orange {
        background: rgba(255, 140, 0, 0.1);
        color: var(--accent-orange);
    }

    .bundle-card-titles h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--navy-dark);
        margin-bottom: 4px;
    }

    .bundle-title-link {
        color: var(--navy-dark);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .bundle-title-link:hover {
        color: var(--primary-blue);
    }

    .bundle-card-titles p {
        font-size: 0.85rem;
        color: var(--gray-text);
        margin: 0;
        line-height: 1.4;
    }

    .bundle-card-target {
        font-size: 0.85rem;
        color: var(--gray-text);
        font-style: italic;
        margin: 12px 0 16px;
    }

    .bundle-tools-label {
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--gray-text);
        letter-spacing: 0.5px;
        margin: 20px 0 14px;
    }

    .bundle-tools-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .bundle-tools-list li {
        padding: 0;
    }

    .tool-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        margin: 0 -12px;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .tool-link:hover {
        background: rgba(37, 99, 235, 0.05);
    }

    .tool-link:hover .tool-info strong {
        color: var(--primary-blue);
    }

    .tool-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .tool-icon svg {
        width: 18px;
        height: 18px;
    }

    .tool-icon-blue {
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary-blue);
    }

    .tool-icon-yellow {
        background: rgba(245, 158, 11, 0.1);
        color: #f59e0b;
    }

    .tool-icon-green {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
    }

    .tool-icon-purple {
        background: rgba(139, 92, 246, 0.1);
        color: #8b5cf6;
    }

    .tool-info strong {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--navy-dark);
    }

    .tool-info span {
        font-size: 0.8rem;
        color: var(--gray-text);
    }

    /* Repricer card specific */
    .bundle-includes-badge {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        background: rgba(34, 197, 94, 0.08);
        border: 1px solid rgba(34, 197, 94, 0.2);
        border-radius: 12px;
        padding: 14px 16px;
        margin-bottom: 16px;
    }

    .bundle-includes-badge svg {
        width: 22px;
        height: 22px;
        color: #22c55e;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .bundle-includes-badge strong {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--navy-dark);
    }

    .bundle-includes-badge span {
        font-size: 0.8rem;
        color: var(--gray-text);
    }

    .bundle-features-list {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }

    .bundle-features-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-size: 0.9rem;
        color: var(--soft-navy);
    }

    .bundle-features-list li svg {
        width: 18px;
        height: 18px;
        color: #22c55e;
        flex-shrink: 0;
    }

    .bundle-cta-btn {
        display: block;
        width: 100%;
        background: var(--accent-orange);
        color: white;
        text-align: center;
        padding: 14px 24px;
        border-radius: 10px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .bundle-cta-btn:hover {
        background: #e67e00;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
    }

    .section-header {
        text-align: center;
        margin-bottom: 48px;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
        font-weight: 800;
        color: var(--navy-dark);
        margin-bottom: 16px;
    }
    
    .section-header p {
        color: var(--gray-text);
        font-size: 1.1rem;
        max-width: 650px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .mini-comparison tr:last-child td {
        border-bottom: none;
    }

    .mini-comparison .check {
        color: var(--success-green);
        font-weight: bold;
        font-size: 1.1rem;
    }

    .mini-comparison .cross {
        color: var(--border-light);
        font-size: 1.1rem;
    }

    /* ============================================
        FULL COMPARISON TABLE
    ============================================ */
    .comparison {
        padding: 80px 24px;
        background: var(--light-blue-bg);
    }
    
    .comparison-container {
        max-width: 1100px;
        margin: 0 auto;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(4, 20, 61, 0.08);
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        min-width: 680px;
    }
    
    .comparison-table thead th {
        padding: 20px 20px;
        text-align: center;
        font-weight: 700;
        font-size: 0.9rem;
        color: white;
        letter-spacing: 0.02em;
    }

    .comparison-table thead th:first-child {
        text-align: left;
        min-width: 200px;
        background: var(--navy-dark);
        color: rgba(255, 255, 255, 0.7);
        font-weight: 600;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Color-coded column headers */
    .comparison-table thead th.th-analytics {
        background: var(--primary-blue);
    }
    .comparison-table thead th.th-repricer {
        background: var(--accent-orange);
    }
    .comparison-table thead th.th-enterprise {
        background: var(--navy-dark);
    }

    .comparison-table thead .th-sublabel {
        display: block;
        font-weight: 400;
        font-size: 0.75rem;
        opacity: 0.85;
        margin-top: 2px;
    }
    
    .comparison-table tbody tr {
        border-bottom: 1px solid var(--border-light);
        transition: background 0.2s ease;
    }
    
    .comparison-table tbody tr:hover {
        background: rgba(4, 107, 252, 0.02);
    }
    
    .comparison-table tbody tr:last-child {
        border-bottom: none;
    }

    .comparison-table tbody tr.category-row {
        background: var(--light-gray);
    }

    .comparison-table tbody tr.category-row td {
        font-weight: 700;
        color: var(--navy-dark);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    /* Collapsible Category Rows */
    .comparison-table tbody tr.category-row {
        cursor: pointer;
        user-select: none;
        transition: background 0.2s ease;
    }
    .comparison-table tbody tr.category-row:hover {
        background: #e8edf4;
    }
    .category-toggle-icon {
        display: inline-block;
        width: 18px;
        height: 18px;
        margin-right: 8px;
        vertical-align: middle;
        transition: transform 0.3s ease;
        color: var(--primary-blue);
    }
    .category-row.collapsed .category-toggle-icon {
        transform: rotate(-90deg);
    }
    .comparison-table tbody tr.category-child {
        transition: opacity 0.25s ease, max-height 0.3s ease;
    }
    .comparison-table tbody tr.category-child.hidden-row {
        display: none;
    }
    
    /* Expand/Collapse All Button */
    .toggle-all-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--primary-blue);
        background: rgba(4, 107, 252, 0.06);
        border: 1px solid rgba(4, 107, 252, 0.15);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
        margin-bottom: 16px;
    }
    .toggle-all-btn:hover {
        background: rgba(4, 107, 252, 0.12);
        border-color: rgba(4, 107, 252, 0.3);
    }
    .toggle-all-btn svg {
        width: 16px;
        height: 16px;
    }

    /* ── Mobile Scroll Indicator ── */
    .comparison-table-wrapper {
        position: relative;
    }
    .scroll-fade {
        display: none;
    }
    .swipe-hint {
        display: none;
    }
    
    .comparison-table td {
        padding: 14px 20px;
        text-align: center;
        color: var(--soft-navy);
        font-size: 0.88rem;
    }
    
    .comparison-table td:first-child {
        text-align: left;
        font-weight: 500;
        color: var(--navy-dark);
    }

    .comparison-table .feature-note {
        display: block;
        font-size: 0.75rem;
        color: var(--gray-text);
        font-weight: 400;
        margin-top: 2px;
    }
    
    .comparison-table .check-icon {
        color: var(--success-green);
        font-weight: bold;
        font-size: 1.15rem;
    }
    
    .comparison-table .cross-icon {
        color: #d1d5db;
        font-size: 1.1rem;
    }

    .comparison-table .text-value {
        font-weight: 600;
        font-size: 0.82rem;
        color: var(--soft-navy);
    }

    /* Highlight columns */
    .comparison-table .col-analytics {
        background: rgba(4, 107, 252, 0.03);
    }
    .comparison-table .col-repricer {
        background: rgba(255, 153, 0, 0.04);
    }
    .comparison-table .col-enterprise {
        background: rgba(4, 20, 61, 0.02);
    }

    /* ============================================
        HELP ME CHOOSE
    ============================================ */
    .choose-section {
        padding: 100px 24px;
        background: var(--navy-dark);
        position: relative;
        overflow: hidden;
    }

    /* Hero-style blobs */
    .choose-blob-1 {
        position: absolute;
        top: -100px;
        left: -50px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(56, 189, 248, 0.75) 0%, rgba(56, 189, 248, 0.2) 50%, transparent 70%);
        border-radius: 50%;
        filter: blur(60px);
        pointer-events: none;
    }

    .choose-blob-2 {
        position: absolute;
        bottom: -80px;
        right: -100px;
        width: 550px;
        height: 550px;
        background: radial-gradient(circle, rgba(255, 153, 0, 0.65) 0%, rgba(255, 153, 0, 0.15) 50%, transparent 70%);
        border-radius: 50%;
        filter: blur(60px);
        pointer-events: none;
    }

    .choose-blob-3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
        border-radius: 50%;
        filter: blur(50px);
        pointer-events: none;
    }

    /* Grid pattern */
    .choose-grid-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
    }

    .choose-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .choose-section .section-header h2 {
        color: white;
    }

    .choose-section .section-header .highlight-orange {
        color: var(--accent-orange);
    }

    .choose-section .section-header p {
        color: rgba(255, 255, 255, 0.7);
    }

    .choose-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .choose-card {
        background: white;
        border-radius: 20px;
        padding: 32px;
        border: 2px solid var(--border-light);
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
    }

    .choose-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }

    .choose-card-featured {
        background: linear-gradient(135deg, #fff5eb 0%, #fff 100%);
        border-color: var(--accent-orange);
        box-shadow: 0 8px 30px rgba(255, 140, 0, 0.2);
    }

    .choose-card-featured:hover {
        box-shadow: 0 16px 50px rgba(255, 140, 0, 0.3);
    }

    .choose-card-badge {
        position: absolute;
        top: -12px;
        left: 24px;
        background: var(--primary-blue);
        color: white;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 6px 12px;
        border-radius: 20px;
    }

    .choose-card-featured .choose-card-badge {
        background: var(--accent-orange);
    }

    .choose-card-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 20px;
        margin-top: 8px;
    }

    .choose-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .choose-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .choose-card-icon-blue {
        background: rgba(4, 107, 252, 0.1);
        color: var(--primary-blue);
    }

    .choose-card-icon-orange {
        background: rgba(255, 153, 0, 0.1);
        color: var(--accent-orange);
    }

    .choose-card-icon-teal {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
    }

    .choose-card-header h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--navy-dark);
        margin: 0;
    }

    .choose-card-quote {
        background: var(--light-gray);
        border-left: 4px solid var(--primary-blue);
        border-radius: 0 12px 12px 0;
        padding: 16px 20px;
        margin-bottom: 20px;
    }

    .choose-card-quote p {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--navy-dark);
        font-style: italic;
        margin: 0;
        line-height: 1.5;
    }

    .choose-card-featured .choose-card-quote {
        border-left-color: var(--accent-orange);
        background: rgba(255, 153, 0, 0.08);
    }

    /* Teal card styling for Agencies */
    .choose-card-teal .choose-card-badge {
        background: #10b981;
    }

    .choose-card-teal .choose-card-quote {
        border-left-color: #10b981;
        background: rgba(16, 185, 129, 0.08);
    }

    .choose-card-benefits {
        list-style: none;
        padding: 0;
        margin: 0 0 24px 0;
        flex-grow: 1;
    }

    .choose-card-benefits li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 8px 0;
        font-size: 0.9rem;
        color: var(--gray-text);
        line-height: 1.5;
    }

    .choose-card-benefits li svg {
        width: 18px;
        height: 18px;
        color: #22c55e;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .choose-card .btn {
        width: 100%;
        margin-top: auto;
    }

    /* First card button - Blue outline with fill hover */
    .choose-card .btn-outline-blue {
        background: transparent;
        color: var(--primary-blue);
        border: 2px solid var(--primary-blue);
    }

    .choose-card .btn-outline-blue:hover {
        background: var(--primary-blue);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(4, 107, 252, 0.35);
    }

    /* Third card button - Teal outline with fill hover */
    .choose-card .btn-outline-teal {
        background: transparent;
        color: #10b981;
        border: 2px solid #10b981;
    }

    .choose-card .btn-outline-teal:hover {
        background: #10b981;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    }

    /* Integrated Use Cases in Choose Section */
    .choose-divider {
        text-align: center;
        margin: 60px 0 40px 0;
        position: relative;
    }

    .choose-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.15);
    }

    .choose-divider span {
        background: var(--navy-dark);
        padding: 0 24px;
        position: relative;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
    }

    .choose-usecases {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .choose-usecase-link {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 24px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .choose-usecase-link:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

    .choose-usecase-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .choose-usecase-icon svg {
        width: 22px;
        height: 22px;
    }

    .choose-usecase-icon-blue {
        background: rgba(4, 107, 252, 0.2);
        color: #60a5fa;
    }

    .choose-usecase-icon-indigo {
        background: rgba(99, 102, 241, 0.2);
        color: #818cf8;
    }

    .choose-usecase-icon-teal {
        background: rgba(16, 185, 129, 0.2);
        color: #34d399;
    }

    .choose-usecase-content h4 {
        font-size: 1rem;
        font-weight: 600;
        color: white;
        margin: 0 0 4px 0;
    }

    .choose-usecase-content span {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .choose-usecase-arrow {
        margin-left: auto;
        color: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
    }

    .choose-usecase-link:hover .choose-usecase-arrow {
        color: white;
        transform: translateX(4px);
    }

    .choose-consulting {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 32px 40px;
        background: linear-gradient(135deg, rgba(255, 153, 0, 0.15) 0%, rgba(255, 153, 0, 0.05) 100%);
        border: 1px solid rgba(255, 153, 0, 0.3);
        border-radius: 20px;
    }

    .choose-consulting-content {
        flex: 1;
    }

    .choose-consulting-content h4 {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        margin: 0 0 8px 0;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .choose-consulting-content h4 svg {
        width: 24px;
        height: 24px;
        color: var(--accent-orange);
    }

    .choose-consulting-content p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.6;
    }

    .choose-consulting .btn {
        flex-shrink: 0;
    }

    /* ============================================
        USE CASES SECTION
    ============================================ */
    .use-cases-section {
        padding: 80px 24px;
        background: var(--light-blue-bg);
    }

    .use-cases-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .use-cases-grid {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 40px;
        align-items: start;
    }

    .use-cases-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .use-case-card {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 28px;
        background: white;
        border-radius: 16px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid var(--border-light);
    }

    .use-case-card:hover {
        border-color: var(--primary-blue);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .use-case-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        align-self: flex-start;
        margin-top: 4px;
    }

    .use-case-icon svg {
        width: 24px;
        height: 24px;
    }

    .use-case-icon-blue {
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary-blue);
    }

    .use-case-icon-green {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
    }

    .use-case-icon-purple {
        background: rgba(139, 92, 246, 0.1);
        color: #8b5cf6;
    }

    .use-case-content {
        flex: 1;
    }

    .use-case-content h4 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--navy-dark);
        margin-bottom: 4px;
    }

    .use-case-tags {
        font-size: 0.8rem;
        color: var(--gray-text);
        display: block;
        margin-bottom: 10px;
    }

    .use-case-description {
        font-size: 0.9rem;
        color: var(--gray-text);
        line-height: 1.5;
        font-style: italic;
        margin-bottom: 12px;
        display: block;
    }

    .use-case-cta {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary-blue);
        transition: all 0.3s ease;
    }

    .use-case-card:hover .use-case-cta {
        color: var(--primary-dark);
    }

    /* Consulting Box */
    .consulting-box {
        background: var(--light-gray);
        border-radius: 16px;
        padding: 32px;
        text-align: left;
    }

    .consulting-icon {
        width: 56px;
        height: 56px;
        background: rgba(255, 140, 0, 0.1);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .consulting-icon svg {
        width: 28px;
        height: 28px;
        color: var(--accent-orange);
    }

    .consulting-box h4 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--navy-dark);
        margin-bottom: 4px;
    }

    .consulting-subtitle {
        font-size: 0.9rem;
        color: var(--accent-orange);
        font-weight: 500;
        display: block;
        margin-bottom: 16px;
    }

    .consulting-box p {
        font-size: 0.95rem;
        color: var(--gray-text);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .consulting-features {
        list-style: none;
        padding: 0;
        margin: 0 0 24px 0;
    }

    .consulting-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: var(--navy-dark);
        margin-bottom: 10px;
    }

    .consulting-features li svg {
        width: 18px;
        height: 18px;
        color: #22c55e;
        flex-shrink: 0;
    }

    .consulting-box .btn {
        width: 100%;
        text-align: center;
    }

    /* ============================================
        FAQ SECTION
    ============================================ */
    .faq {
        padding: 80px 24px;
        background: var(--light-blue-bg);
    }
    
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    /* FAQ Tabs */
    .faq-tabs {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .faq-tab {
        padding: 12px 24px;
        border: 2px solid var(--border-light);
        border-radius: 30px;
        background: white;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--gray-text);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .faq-tab:hover {
        border-color: var(--primary-blue);
        color: var(--primary-blue);
    }

    .faq-tab.active {
        background: var(--primary-blue);
        border-color: var(--primary-blue);
        color: white;
    }

    .faq-tab svg {
        width: 18px;
        height: 18px;
    }

    .faq-category {
        display: none;
    }

    .faq-category.active {
        display: block;
    }
    
    .faq-item {
        background: white;
        border-radius: 12px;
        margin-bottom: 12px;
        border: 1px solid var(--border-light);
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-item:hover {
        border-color: var(--muted-blue);
    }

    .faq-item.active {
        border-color: var(--primary-blue);
    }
    
    .faq-question {
        width: 100%;
        padding: 22px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 600;
        color: var(--navy-dark);
        text-align: left;
        font-family: inherit;
        gap: 16px;
    }
    
    .faq-question span {
        flex: 1;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        background: var(--light-blue-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-blue);
        font-weight: bold;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .faq-item.active .faq-icon {
        background: var(--primary-blue);
        color: white;
        transform: rotate(45deg);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .faq-answer-content {
        padding: 0 24px 24px;
        color: var(--gray-text);
        line-height: 1.75;
        font-size: 0.95rem;
    }

    .faq-answer-content ul {
        margin: 16px 0;
        padding-left: 24px;
    }

    .faq-answer-content li {
        margin-bottom: 8px;
    }
    .faq-answer-content a:not([class]) { color: #046bfc; text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 2px; }
    .faq-answer-content a:not([class]):hover { text-decoration-style: solid; }
    
    .faq-item.active .faq-answer {
        max-height: 1000px;
    }

    /* ============================================
        FINAL CTA SECTION
    ============================================ */
    .cta-section {
        padding: 100px 24px;
        background: #ffffff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* CTA Blobs */
    .cta-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 1;
        pointer-events: none;
        z-index: 0;
    }
    .cta-blob-1 {
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(4, 107, 252, 0.55) 0%, rgba(4, 107, 252, 0.15) 60%, transparent 80%);
        top: -200px;
        right: -150px;
    }
    .cta-blob-2 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 153, 0, 0.45) 0%, rgba(255, 153, 0, 0.1) 60%, transparent 80%);
        bottom: -150px;
        left: -100px;
    }
    .cta-blob-3 {
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(4, 107, 252, 0.35) 0%, rgba(4, 107, 252, 0.08) 60%, transparent 80%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* CTA Grid */
    .cta-grid {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(rgba(4, 107, 252, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(4, 107, 252, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        z-index: 1;
    }
    
    .cta-content {
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--navy-dark);
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .cta-section .cta-subtitle {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary-blue);
        margin-bottom: 16px;
    }
    
    .cta-section p {
        font-size: 1.1rem;
        color: var(--gray-text);
        margin-bottom: 36px;
        line-height: 1.7;
    }
    
    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-section .btn-white {
        background: white;
        color: var(--navy-dark);
        border: 2px solid var(--border-light);
    }
    .cta-section .btn-white:hover {
        background: var(--navy-dark);
        color: white;
        border-color: var(--navy-dark);
    }

    .cta-trust {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 48px;
        flex-wrap: wrap;
    }

    .cta-trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--gray-text);
        font-size: 0.9rem;
    }

    .cta-trust-item .trust-icon {
        width: 22px;
        height: 22px;
        background: rgba(4, 107, 252, 0.1);
        color: var(--primary-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        font-weight: 700;
    }

    /* ============================================
        FOOTER
    ============================================ */
    .footer {
        background: var(--navy-dark);
        color: rgba(255, 255, 255, 0.7);
        padding: 64px 24px 32px;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 48px;
    }
    
    .footer-brand .logo {
        color: white;
        margin-bottom: 16px;
    }
    
    .footer-brand p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .social-links {
        display: flex;
        gap: 12px;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.2s ease;
        font-size: 1.1rem;
    }
    
    .social-links a:hover {
        background: var(--primary-blue);
    }
    
    .footer-column h4 {
        color: white;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .footer-column ul {
        list-style: none;
    }
    
    .footer-column li {
        margin-bottom: 12px;
    }
    
    .footer-column a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }
    
    .footer-column a:hover {
        color: white;
    }
    
    .footer-bottom {
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    .footer-legal {
        display: flex;
        gap: 24px;
    }
    
    .footer-legal a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s ease;
    }
    
    .footer-legal a:hover {
        color: white;
    }

    /* ============================================
        STICKY MOBILE CTA
    ============================================ */
    .sticky-cta {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--navy-dark) 0%, #046bfc 100%);
        padding: 14px 20px;
        box-shadow: 0 -4px 24px rgba(4, 20, 61, 0.25);
        z-index: 999;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .sticky-cta.visible {
        transform: translateY(0);
    }

    .sticky-cta.hiding {
        transform: translateY(100%);
    }

    .sticky-cta-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        max-width: 700px;
        margin: 0 auto;
        position: relative;
    }

    .sticky-cta-icon {
        font-size: 1.4rem;
        line-height: 1;
        flex-shrink: 0;
    }

    .sticky-cta-text {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .sticky-cta-text strong {
        color: #ffffff;
        display: inline;
        font-size: 0.9rem;
        margin-right: 6px;
    }

    .sticky-cta .btn {
        white-space: nowrap;
        padding: 10px 24px;
        font-size: 0.85rem;
        font-weight: 700;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .sticky-cta-buttons {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
    }

    .sticky-cta-outline {
        background: transparent;
        color: #ffffff;
        border: 1.5px solid rgba(255, 255, 255, 0.5);
        transition: background 0.2s, border-color 0.2s;
    }

    .sticky-cta-outline:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: #ffffff;
        color: #ffffff;
    }

    .sticky-cta-close {
        position: absolute;
        right: -40px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.5);
        font-size: 1.2rem;
        cursor: pointer;
        padding: 4px 8px;
        line-height: 1;
        transition: color 0.2s;
        border-radius: 4px;
    }

    .sticky-cta-close:hover {
        color: #ffffff;
    }

    /* ============================================
        SECTION SUB-HEADER NAV
    ============================================ */
    .section-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 998;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
        pointer-events: none;
    }

    .section-nav.visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .section-nav-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2.5px;
        width: 0%;
        background: linear-gradient(90deg, var(--primary-blue), #38bdf8);
        border-radius: 0 2px 2px 0;
        transition: width 0.2s ease-out;
    }

    .section-nav-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 0 24px;
        height: 44px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .section-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .section-nav-link {
        position: relative;
        padding: 10px 20px;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--gray-text);
        text-decoration: none;
        white-space: nowrap;
        transition: color 0.2s;
        letter-spacing: 0.01em;
    }

    .section-nav-link:hover {
        color: var(--navy-dark);
    }

    .section-nav-link.active {
        color: var(--primary-blue);
    }

    .section-nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 2.5px;
        background: var(--primary-blue);
        border-radius: 2px;
    }

    /* ============================================
        RESPONSIVE STYLES
    ============================================ */
    @media (max-width: 1024px) {
        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto;
        }

        .bundle-cards {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .bundle-header h2 {
            font-size: 1.75rem;
        }

        .choose-cards {
            grid-template-columns: 1fr;
        }

        .use-cases-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .consulting-box {
            order: -1;
        }
        
        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .navbar {
            padding: 0 16px;
        }
        
        .nav-links {
            display: none;
            position: absolute;
            top: 72px;
            left: 0;
            right: 0;
            background: white;
            flex-direction: column;
            padding: 24px;
            gap: 16px;
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
        }
        
        .nav-links.active {
            display: flex;
        }
        
        .nav-cta {
            display: none;
        }
        
        .mobile-menu-btn {
            display: flex;
        }
        
        /* Hero Blobs Mobile */
        .hero-blob {
            opacity: 0.7;
            filter: blur(80px);
        }
        .hero-blob-1 {
            width: 350px;
            height: 350px;
            top: -150px;
            left: -100px;
        }
        .hero-blob-2 {
            width: 300px;
            height: 300px;
            top: 0;
            right: -80px;
        }
        .hero-blob-3 {
            width: 250px;
            height: 250px;
            bottom: -80px;
        }
        
        .hero {
            padding: 120px 20px 70px;
        }
        
        .hero h1 {
            font-size: 2rem;
        }
        
        .hero p.subtitle {
            font-size: 1.05rem;
        }

        .hero-features {
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        .hero-controls {
            flex-direction: column;
            gap: 20px;
            align-items: stretch;
        }

        .toggle-group {
            flex-direction: column;
            gap: 8px;
            width: 100%;
        }

        .toggle-label {
            text-align: center;
            font-size: 0.85rem;
        }

        .billing-toggle {
            width: 100%;
            display: flex;
        }
        
        .toggle-btn {
            flex: 1;
            padding: 14px 12px;
            font-size: 0.9rem;
            min-height: 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            line-height: 1.2;
        }

        .save-badge {
            margin-left: 0;
            font-size: 0.6rem;
            padding: 2px 8px;
            display: block;
        }

        .currency-select {
            width: 100%;
        }
        
        .pricing {
            padding: 60px 16px;
        }
        
        .pricing-card {
            padding: 32px 24px;
        }
        
        .price-amount {
            font-size: 2.25rem;
        }

        .section-header h2 {
            font-size: 1.75rem;
        }

        .section-header p {
            font-size: 1rem;
        }
        
        .comparison {
            padding: 60px 12px;
        }

        .comparison-table-wrapper {
            border-radius: 12px;
            margin: 0 -4px;
        }

        .comparison-table {
            min-width: 580px;
        }

        .comparison-table thead th {
            padding: 14px 10px;
            font-size: 0.78rem;
        }

        .comparison-table thead th:first-child {
            min-width: 150px;
            position: sticky;
            left: 0;
            z-index: 2;
            background: var(--navy-dark);
        }

        .comparison-table td {
            padding: 12px 10px;
            font-size: 0.82rem;
        }

        .comparison-table td:first-child {
            position: sticky;
            left: 0;
            z-index: 1;
            background: white;
            box-shadow: 3px 0 8px rgba(0,0,0,0.08);
        }

        /* Bigger touch targets for category rows */
        .comparison-table tbody tr.category-row td {
            font-size: 0.78rem;
            padding: 16px 12px;
        }

        .comparison-table tbody tr.category-row td:first-child {
            background: var(--light-gray);
        }

        .comparison-table .feature-note {
            font-size: 0.7rem;
        }

        /* Larger check/cross icons on mobile */
        .comparison-table .check-icon {
            font-size: 1.3rem;
        }
        .comparison-table .cross-icon {
            font-size: 1.25rem;
        }

        /* Scroll fade gradient on right edge */
        .scroll-fade {
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 32px;
            pointer-events: none;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.85));
            border-radius: 0 12px 12px 0;
            z-index: 3;
            transition: opacity 0.3s ease;
        }
        .scroll-fade.hidden {
            opacity: 0;
        }

        /* Swipe hint below table */
        .swipe-hint {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 12px;
            font-size: 0.78rem;
            color: var(--gray-text);
            animation: swipeHintPulse 2.5s ease-in-out 3;
        }
        .swipe-hint svg {
            width: 16px;
            height: 16px;
            animation: swipeHintSlide 2.5s ease-in-out 3;
        }
        @keyframes swipeHintPulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }
        @keyframes swipeHintSlide {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(6px); }
        }

        /* Toggle button full-width on mobile */
        .toggle-all-btn {
            width: 100%;
            justify-content: center;
            padding: 12px 16px;
            font-size: 0.85rem;
        }

        .bundle-section {
            padding: 60px 16px;
        }

        .choose-section {
            padding: 70px 16px;
        }

        .choose-blob-1 {
            width: 250px;
            height: 250px;
        }

        .choose-blob-2 {
            width: 200px;
            height: 200px;
        }

        .choose-usecases {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .choose-consulting {
            flex-direction: column;
            text-align: center;
            gap: 24px;
            padding: 28px 24px;
        }

        .choose-consulting-content h4 {
            justify-content: center;
        }

        .bundle-section {
            padding: 60px 16px;
        }

        .bundle-blob-1 {
            width: 250px;
            height: 250px;
        }

        .bundle-blob-2 {
            width: 200px;
            height: 200px;
        }

        .bundle-card {
            padding: 24px 20px;
        }

        .bundle-card-top {
            flex-direction: column;
            gap: 12px;
        }

        .bundle-tools-list li {
            padding: 8px 0;
        }

        .tool-icon {
            width: 32px;
            height: 32px;
        }

        .tool-icon svg {
            width: 16px;
            height: 16px;
        }

        .use-cases-section {
            padding: 60px 16px;
        }

        .use-case-card {
            padding: 16px 20px;
        }

        .use-case-icon {
            width: 42px;
            height: 42px;
        }

        .use-case-icon svg {
            width: 20px;
            height: 20px;
        }

        .consulting-box {
            padding: 24px;
        }

        .choose-cards {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .choose-card-badge {
            top: -10px;
            left: 20px;
            font-size: 0.65rem;
        }
        
        .faq {
            padding: 60px 16px;
        }

        .faq-question {
            padding: 18px 20px;
            font-size: 0.95rem;
        }
        
        .cta-section {
            padding: 70px 20px;
        }
        
        .cta-section h2 {
            font-size: 1.75rem;
        }
        
        .cta-buttons .btn {
            width: 100%;
        }

        .cta-trust {
            gap: 20px;
        }

        .cta-blob {
            opacity: 0.7;
            filter: blur(80px);
        }
        .cta-blob-1 {
            width: 350px;
            height: 350px;
        }
        .cta-blob-2 {
            width: 300px;
            height: 300px;
        }
        .cta-blob-3 {
            width: 200px;
            height: 200px;
        }

        .section-nav-inner {
            padding: 0 16px;
            gap: 0;
            justify-content: flex-start;
        }

        .section-nav-link {
            padding: 10px 14px;
            font-size: 0.78rem;
        }

        .section-nav {
            top: 60px;
        }

        .sticky-cta {
            display: block;
        }

        .sticky-cta-content {
            gap: 12px;
        }

        .sticky-cta-close {
            right: -32px;
        }

        body {
            padding-bottom: 80px;
        }
        
        .footer {
            padding: 48px 16px 100px;
        }
        
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        
        .footer-legal {
            flex-wrap: wrap;
            justify-content: center;
        }
    }
    
    @media (max-width: 480px) {
        .hero h1 {
            font-size: 1.75rem;
        }
        
        .hero-badge {
            font-size: 0.8rem;
            padding: 8px 14px;
        }

        .billing-toggle {
            width: 100%;
            display: flex;
        }

        .toggle-btn {
            flex: 1;
            min-height: 48px;
            padding: 12px 8px;
            font-size: 0.85rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
        }

        .save-badge {
            margin-left: 0;
            font-size: 0.58rem;
        }

        .marketplace-selector {
            flex-wrap: wrap;
        }

        .marketplace-btn {
            flex: 1 1 calc(50% - 4px);
            min-width: auto;
            min-height: 48px; /* Touch target accessibility */
        }
        
        .plan-features li {
            font-size: 0.9rem;
        }

        .mini-comparison th,
        .mini-comparison td {
            padding: 12px 14px;
            font-size: 0.8rem;
        }

        .choose-card {
            padding: 24px;
        }

        .cta-trust {
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        /* Improve minimum font sizes for readability */
        .includes-badge,
        .features-label,
        .card-badge {
            font-size: 0.75rem; /* Minimum 12px */
        }

        /* Ensure all CTAs are touch-friendly */
        .btn,
        .btn-cta {
            min-height: 48px;
            padding: 14px 24px;
        }
    }

    /* ===== LEAD GENERATION POPUP ===== */
    .lead-overlay {
        position: fixed;
        inset: 0;
        background: rgba(4, 20, 61, 0.55);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .lead-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .lead-popup {
        background: #fff;
        border-radius: 1.25rem;
        box-shadow: 0 25px 60px rgba(4, 20, 61, 0.25);
        max-width: 460px;
        width: 92%;
        padding: 2.5rem 2rem 2rem;
        position: relative;
        transform: translateY(20px) scale(0.97);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .lead-overlay.active .lead-popup {
        transform: translateY(0) scale(1);
    }
    .lead-popup-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        border: none;
        background: #f1f5f9;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: #64748b;
        transition: background 0.2s, color 0.2s;
    }
    .lead-popup-close:hover {
        background: #e2e8f0;
        color: #04143d;
    }
    .lead-popup-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--primary-blue);
        background: rgba(4, 107, 252, 0.08);
        padding: 4px 12px;
        border-radius: 50px;
        margin-bottom: 1rem;
    }
    .lead-popup h3 {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--navy-dark);
        margin: 0 0 0.4rem;
        line-height: 1.3;
    }
    .lead-popup .lead-subtitle {
        font-size: 0.9rem;
        color: #64748b;
        margin: 0 0 1.5rem;
        line-height: 1.5;
    }
    .lead-form {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }
    .lead-form-row {
        display: flex;
        gap: 0.75rem;
    }
    .lead-form input,
    .lead-form select,
    .lead-form textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1.5px solid #e2e8f0;
        border-radius: 0.6rem;
        font-family: 'Inter', sans-serif;
        font-size: 0.88rem;
        color: #1e293b;
        background: #f8fafc;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
    }
    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(4, 107, 252, 0.1);
        background: #fff;
    }
    .lead-form input::placeholder,
    .lead-form textarea::placeholder {
        color: #94a3b8;
    }
    .lead-form textarea {
        resize: vertical;
        min-height: 120px;
    }
    /* Phone + WhatsApp row */
    .lead-phone-row {
        display: flex;
        align-items: center;
        gap: 0;
    }
    /* Custom country code dropdown */
    .lead-prefix-wrap {
        position: relative;
        flex-shrink: 0;
    }
    .lead-prefix-btn {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 0.75rem 0.6rem;
        border: 1.5px solid #e2e8f0;
        border-right: none;
        border-radius: 0.6rem 0 0 0.6rem;
        background: #f8fafc;
        font-family: 'Inter', sans-serif;
        font-size: 0.92rem;
        color: #1e293b;
        cursor: pointer;
        height: 100%;
        white-space: nowrap;
        transition: border-color 0.2s, background 0.2s;
        min-width: 82px;
    }
    .lead-prefix-btn:hover {
        background: #f1f5f9;
    }
    .lead-prefix-btn .prefix-flag {
        font-size: 1.2rem;
        line-height: 1;
    }
    .lead-prefix-btn .prefix-code {
        font-size: 0.82rem;
        font-weight: 500;
        color: #475569;
    }
    .lead-prefix-btn .prefix-arrow {
        margin-left: 2px;
        font-size: 0.6rem;
        color: #94a3b8;
    }
    .lead-prefix-list {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        width: 220px;
        max-height: 220px;
        overflow-y: auto;
        background: #fff;
        border: 1.5px solid #e2e8f0;
        border-radius: 0.6rem;
        box-shadow: 0 8px 24px rgba(4,20,61,0.12);
        z-index: 100;
        display: none;
        padding: 4px 0;
    }
    .lead-prefix-list.open {
        display: block;
    }
    .lead-prefix-option {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        cursor: pointer;
        font-size: 0.85rem;
        color: #1e293b;
        transition: background 0.15s;
    }
    .lead-prefix-option:hover {
        background: #f1f5f9;
    }
    .lead-prefix-option .pf-flag {
        font-size: 1.2rem;
    }
    .lead-prefix-option .pf-name {
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .lead-prefix-option .pf-code {
        color: #64748b;
        font-weight: 500;
        flex-shrink: 0;
    }
    /* Phone input (joined to prefix) */
    .lead-phone-field {
        flex: 1;
        min-width: 0;
    }
    .lead-phone-field input {
        width: 100%;
        border-radius: 0 0.6rem 0.6rem 0 !important;
    }
    /* WhatsApp toggle switch */
    .lead-wa-row {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 2px;
    }
    .lead-wa-switch {
        flex-shrink: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
    }
    .lead-wa-switch input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }
    .lead-wa-track {
        display: flex;
        align-items: center;
        width: 42px;
        height: 24px;
        background: #e2e8f0;
        border-radius: 999px;
        padding: 2px;
        transition: background 0.25s ease;
    }
    .lead-wa-switch input:checked ~ .lead-wa-track {
        background: #25D366;
    }
    .lead-wa-thumb {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 1px 3px rgba(0,0,0,0.15);
        transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        color: #c0c8d4;
    }
    .lead-wa-switch input:checked ~ .lead-wa-track .lead-wa-thumb {
        transform: translateX(18px);
        color: #25D366;
    }
    .lead-wa-text {
        font-size: 0.78rem;
        color: #94a3b8;
        transition: color 0.2s;
    }
    .lead-wa-switch input:checked ~ .lead-wa-track ~ .lead-wa-text {
        color: #25D366;
    }
    /* Captcha field */
    .lead-captcha {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .lead-captcha-inner {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0.6rem 0.85rem;
        background: #f8fafc;
        border: 1.5px solid #e2e8f0;
        border-radius: 0.6rem;
    }
    .captcha-icon {
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .captcha-question {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--navy-dark);
        white-space: nowrap;
    }
    .captcha-input {
        width: 56px !important;
        flex-shrink: 0;
        text-align: center;
        padding: 0.4rem 0.5rem !important;
        font-size: 0.95rem !important;
        font-weight: 700;
        border: 1.5px solid #e2e8f0 !important;
        border-radius: 0.5rem !important;
        background: #fff !important;
    }
    .captcha-input:focus {
        border-color: var(--primary-blue) !important;
        box-shadow: 0 0 0 3px rgba(4,107,252,0.1);
    }
    .captcha-error {
        font-size: 0.75rem;
        color: #ef4444;
        min-height: 0;
        transition: min-height 0.2s;
    }
    .lead-form-submit {
        padding: 0.85rem 1.5rem;
        border: none;
        border-radius: 0.6rem;
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        color: #fff;
        background: var(--primary-blue);
        cursor: pointer;
        transition: background 0.2s, transform 0.15s;
    }
    .lead-form-submit:hover {
        background: #0356d4;
        transform: translateY(-1px);
    }
    .lead-form-submit:active {
        transform: translateY(0);
    }
    .lead-form-note {
        font-size: 0.72rem;
        color: #94a3b8;
        text-align: center;
        margin: 0;
    }
    .lead-success {
        display: none;
        text-align: center;
        padding: 1.5rem 0;
    }
    .lead-success.show {
        display: block;
    }
    .lead-success-icon {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: rgba(16, 185, 129, 0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .lead-success h4 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--navy-dark);
        margin: 0 0 0.4rem;
    }
    .lead-success p {
        font-size: 0.88rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 480px) {
        .lead-popup {
            padding: 2rem 1.25rem 1.5rem;
        }
        .lead-form-row {
            flex-direction: column;
            gap: 0.85rem;
        }
        .lead-phone-row {
            flex-wrap: nowrap;
        }
        .lead-prefix-btn {
            min-width: 72px;
            padding: 0.65rem 0.4rem;
        }
        .lead-prefix-btn .prefix-code {
            font-size: 0.75rem;
        }
        .lead-popup h3 {
            font-size: 1.25rem;
        }
    }

    /* ===== SCROLL ANIMATIONS ===== */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .fade-in-up.delay-1 { transition-delay: 0.1s; }
    .fade-in-up.delay-2 { transition-delay: 0.2s; }
    .fade-in-up.delay-3 { transition-delay: 0.3s; }

    /* ===== ROTATING HERO TEXT ===== */
    .hero-rotating-wrapper {
        display: inline-block;
        position: relative;
        overflow: hidden;
        vertical-align: bottom;
        height: 1.15em;
    }
    .hero-rotating-word {
        display: block;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    }
    .hero-rotating-word.slide-out {
        transform: translateY(-110%);
        opacity: 0;
    }
    .hero-rotating-word.slide-in {
        transform: translateY(110%);
        opacity: 0;
    }
