
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --coral: #F2A09A;
            --coral-light: #FDF5F4;
            --coral-dark: #E88B84;
            --teal: #4CB5AE;
            --teal-dark: #3A9A94;
            --teal-light: #E8F6F5;
            --navy: #1A2B3C;
            --text-dark: #2D3748;
            --text-gray: #5A6B7D;
            --text-light: #8899AA;
            --white: #FFFFFF;
            --bg-cream: #FFFAF9;
            --border: #E8ECF1;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'DM Serif Display', Georgia, serif;
            font-weight: 400;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============================================
           PRICING HERO
        ============================================ */
        .pricing-hero {
            padding: 140px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: var(--bg-cream);
        }

        .pricing-hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(76, 181, 174, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .pricing-hero::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(242, 160, 154, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .pricing-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 680px;
            margin: 0 auto;
        }

        .pricing-hero .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--teal-light);
            color: var(--teal-dark);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards 0.1s;
        }

        .pricing-hero h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            line-height: 1.15;
            color: var(--navy);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards 0.2s;
        }

        .pricing-hero p {
            font-size: clamp(1rem, 2.5vw, 1.15rem);
            color: var(--text-gray);
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards 0.35s;
        }

        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* ============================================
           PRICING CARDS
        ============================================ */
        .pricing-section {
            padding: 0 20px 100px;
            margin-top: -20px;
            position: relative;
            z-index: 2;
        }

        .pricing-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 32px;
            border: 1px solid var(--border);
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        /* Featured / Free tier card */
        .pricing-card.featured {
            border: 2px solid var(--teal);
            box-shadow: 0 8px 32px rgba(76, 181, 174, 0.12);
        }

        .pricing-card.featured:hover {
            box-shadow: 0 20px 60px rgba(76, 181, 174, 0.18);
        }

        .pricing-card.featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--teal), var(--teal-dark));
        }

        .card-badge {
            display: inline-block;
            background: var(--teal);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .card-badge.perf-badge {
            background: linear-gradient(135deg, var(--coral), var(--coral-dark));
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .pricing-card .card-desc {
            color: var(--text-gray);
            font-size: 0.92rem;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .price {
            margin-bottom: 28px;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--border);
        }

        .price .amount {
            font-family: 'DM Sans', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--navy);
            line-height: 1;
        }

        .price .amount .currency {
            font-size: 1.5rem;
            font-weight: 600;
            vertical-align: super;
            margin-right: 2px;
        }

        .price .period {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-left: 4px;
        }

        .price .price-note {
            display: block;
            color: var(--text-gray);
            font-size: 0.85rem;
            margin-top: 8px;
            line-height: 1.5;
        }

        .price .price-highlight {
            color: var(--teal-dark);
            font-weight: 600;
        }

        .feature-list-pricing {
            list-style: none;
            margin-bottom: 32px;
            flex: 1;
        }

        .feature-list-pricing li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 0.92rem;
            color: var(--text-dark);
            line-height: 1.5;
        }

        .feature-list-pricing li + li {
            border-top: 1px solid rgba(0,0,0,0.04);
        }

        .feature-list-pricing .check {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--teal-light);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .feature-list-pricing .check svg {
            width: 12px;
            height: 12px;
            stroke: var(--teal-dark);
            stroke-width: 2.5;
            fill: none;
        }

        /* "Not included" divider + excluded rows inside a pricing card */
        .feature-list-pricing li.list-divider {
            border-top: none;
            padding: 22px 0 6px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            color: var(--text-light);
            align-items: center;
            gap: 10px;
        }

        .feature-list-pricing li.list-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .feature-list-pricing li.list-divider + li {
            border-top: none;
        }

        .feature-list-pricing li.excluded {
            color: var(--text-gray);
        }

        .feature-list-pricing .cross {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--coral-light);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .feature-list-pricing .cross svg {
            width: 11px;
            height: 11px;
            stroke: var(--coral-dark);
            stroke-width: 2.5;
            fill: none;
        }

        .price-callout {
            display: block;
            margin-top: 14px;
            background: rgba(76, 181, 174, 0.09);
            border-left: 3px solid var(--teal);
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 0.82rem;
            line-height: 1.55;
            color: var(--text-dark);
        }

        .price-callout.coral {
            background: rgba(242, 160, 154, 0.12);
            border-left-color: var(--coral-dark);
        }

        .table-addon {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--coral-dark);
            background: var(--coral-light);
            padding: 3px 10px;
            border-radius: 50px;
        }

        .pricing-cta {
            display: block;
            text-align: center;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            font-family: inherit;
            cursor: pointer;
            border: none;
        }

        .pricing-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.5s;
        }

        .pricing-cta:hover::before {
            left: 100%;
        }

        .pricing-cta.primary {
            background: var(--teal);
            color: white;
            box-shadow: 0 4px 14px rgba(76, 181, 174, 0.3);
        }

        .pricing-cta.primary:hover {
            background: var(--teal-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(76, 181, 174, 0.4);
        }

        .pricing-cta.secondary {
            background: var(--white);
            color: var(--teal-dark);
            border: 2px solid var(--border);
        }

        .pricing-cta.secondary:hover {
            border-color: var(--teal);
            color: var(--teal-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        }

        /* ============================================
           ADD-ONS / À LA CARTE
        ============================================ */
        .addons-section {
            padding: 0 20px 80px;
            position: relative;
            z-index: 2;
        }

        .addons-wrap {
            max-width: 1100px;
            margin: 0 auto;
        }

        .addons-heading {
            text-align: center;
            margin-bottom: 32px;
        }

        .addons-heading .eyebrow-small {
            display: inline-block;
            background: var(--coral-light);
            color: var(--coral-dark);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .addons-heading h2 {
            font-size: clamp(1.4rem, 3.5vw, 2rem);
            color: var(--navy);
            margin-bottom: 8px;
        }

        .addons-heading p {
            color: var(--text-gray);
            font-size: 0.95rem;
            max-width: 560px;
            margin: 0 auto;
        }

        .addons-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .addon-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px 28px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .addon-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
            border-color: rgba(76, 181, 174, 0.3);
        }

        .addon-card.coming-soon {
            background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
            border-style: dashed;
        }

        .addon-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--teal-light);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .addon-card.coming-soon .addon-icon {
            background: var(--coral-light);
        }

        .addon-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--teal-dark);
            stroke-width: 1.8;
            fill: none;
        }

        .addon-card.coming-soon .addon-icon svg {
            stroke: var(--coral-dark);
        }

        .addon-body {
            flex: 1;
            min-width: 0;
        }

        .addon-header {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 6px;
        }

        .addon-body h3 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--navy);
        }

        .addon-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 50px;
        }

        .addon-tag.usage {
            background: var(--teal-light);
            color: var(--teal-dark);
        }

        .addon-tag.soon {
            background: var(--coral-light);
            color: var(--coral-dark);
        }

        .addon-body p {
            color: var(--text-gray);
            font-size: 0.92rem;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .addon-price {
            font-size: 0.88rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .addon-price .price-sub {
            color: var(--text-light);
            font-weight: 400;
            margin-left: 4px;
        }

        @media (min-width: 768px) {
            .addons-section {
                padding: 0 40px 100px;
            }
            .addons-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* ============================================
           FREE LANDING PAGE BANNER
        ============================================ */
        .free-site-banner {
            padding: 0 20px 80px;
            position: relative;
            z-index: 2;
        }

        .free-site-card {
            max-width: 1100px;
            margin: 0 auto;
            background: linear-gradient(135deg, #E8F6F5 0%, #FFFAF9 50%, #FDF5F4 100%);
            border-radius: 24px;
            padding: 48px 40px;
            display: flex;
            align-items: center;
            gap: 40px;
            border: 2px solid var(--teal);
            position: relative;
            overflow: hidden;
        }

        .free-site-card::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(76, 181, 174, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .free-site-card::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(242, 160, 154, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .free-site-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 24px rgba(76, 181, 174, 0.3);
        }

        .free-site-icon svg {
            width: 40px;
            height: 40px;
            stroke: white;
            stroke-width: 1.8;
            fill: none;
        }

        .free-site-body {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .free-site-badge {
            display: inline-block;
            background: var(--teal);
            color: white;
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .free-site-body h3 {
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            color: var(--navy);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .free-site-body p {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
            max-width: 520px;
        }

        .free-site-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--teal-dark);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .free-site-link:hover {
            gap: 12px;
            color: var(--teal);
        }

        .free-site-link svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            stroke-width: 2.5;
            fill: none;
            transition: transform 0.3s;
        }

        .free-site-link:hover svg {
            transform: translateX(2px);
        }

        @media (max-width: 767px) {
            .free-site-card {
                flex-direction: column;
                text-align: center;
                padding: 36px 28px;
                gap: 24px;
            }
            .free-site-body p {
                margin-left: auto;
                margin-right: auto;
            }
            .free-site-link {
                justify-content: center;
            }
        }

        /* ============================================
           ALIGNED INCENTIVES BANNER
        ============================================ */
        .incentives-section {
            padding: 80px 20px;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

        .incentives-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(76, 181, 174, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .incentives-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .incentives-inner h2 {
            color: var(--white);
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            margin-bottom: 16px;
        }

        .incentives-inner > p {
            color: rgba(255,255,255,0.7);
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            max-width: 600px;
            margin: 0 auto 48px;
            line-height: 1.7;
        }

        .incentives-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .incentive-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: left;
            transition: all 0.3s;
        }

        .incentive-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.18);
        }

        .incentive-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(76, 181, 174, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .incentive-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--teal);
            stroke-width: 1.8;
            fill: none;
        }

        .incentive-card h4 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            color: var(--white);
            font-size: 1.05rem;
            margin-bottom: 8px;
        }

        .incentive-card p {
            color: rgba(255,255,255,0.55);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ============================================
           FEATURE COMPARISON TABLE
        ============================================ */
        .comparison-section {
            padding: 100px 20px;
            background: var(--white);
        }

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

        .comparison-header h2 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            color: var(--navy);
            margin-bottom: 12px;
        }

        .comparison-header p {
            color: var(--text-gray);
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .comparison-table-wrap {
            max-width: 900px;
            margin: 0 auto;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            min-width: 600px;
        }

        .comparison-table thead th {
            padding: 20px 16px;
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--text-light);
            border-bottom: 2px solid var(--border);
            text-align: center;
        }

        .comparison-table thead th:first-child {
            text-align: left;
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        .comparison-table thead th.col-featured {
            color: var(--teal-dark);
            background: var(--teal-light);
            border-radius: 12px 12px 0 0;
        }

        .comparison-table tbody td {
            padding: 16px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .comparison-table tbody td:first-child {
            text-align: left;
            font-weight: 500;
            color: var(--text-dark);
        }

        .comparison-table tbody td.col-featured {
            background: rgba(232, 246, 245, 0.35);
        }

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

        .comparison-table tbody tr:last-child td.col-featured {
            border-radius: 0 0 12px 12px;
        }

        .table-check {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--teal-light);
        }

        .table-check svg {
            width: 14px;
            height: 14px;
            stroke: var(--teal-dark);
            stroke-width: 2.5;
            fill: none;
        }

        .table-dash {
            color: var(--text-light);
            font-size: 1.2rem;
        }

        /* ============================================
           FAQ SECTION
        ============================================ */
        .faq-section {
            padding: 100px 20px;
            background: var(--bg-cream);
        }

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

        .faq-header h2 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            color: var(--navy);
            margin-bottom: 12px;
        }

        .faq-header p {
            color: var(--text-gray);
            font-size: 1rem;
        }

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

        .faq-item {
            background: var(--white);
            border-radius: 14px;
            margin-bottom: 12px;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: box-shadow 0.3s;
        }

        .faq-item:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            background: none;
            border: none;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-dark);
            text-align: left;
            line-height: 1.4;
        }

        .faq-question:hover {
            color: var(--teal-dark);
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--teal-light);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .faq-icon svg {
            width: 14px;
            height: 14px;
            stroke: var(--teal-dark);
            stroke-width: 2.5;
            fill: none;
            transition: transform 0.3s;
        }

        .faq-item.open .faq-icon {
            background: var(--teal);
        }

        .faq-item.open .faq-icon svg {
            stroke: white;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .migration-link {
            color: var(--teal-dark);
            font-weight: 600;
            text-decoration: underline;
            text-decoration-color: rgba(76, 181, 174, 0.45);
            text-underline-offset: 3px;
            transition: color 0.2s, text-decoration-color 0.2s;
        }

        .migration-link:hover {
            color: var(--teal);
            text-decoration-color: currentColor;
        }

        .migration-hint {
            display: block;
            font-size: 0.8rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            color: var(--text-gray);
            font-size: 0.92rem;
            line-height: 1.7;
        }

        /* ============================================
           CTA SECTION (matched to index)
        ============================================ */
        .cta-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--teal-light) 0%, var(--coral-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(76, 181, 174, 0.1);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.1; }
            50% { transform: scale(1.1); opacity: 0.2; }
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.12);
        }

        .cta-left {
            background: var(--navy);
            padding: 40px 30px;
            color: white;
        }

        .cta-left h2 {
            font-size: clamp(1.6rem, 4vw, 2rem);
            margin-bottom: 16px;
            color: white;
        }

        .cta-left p {
            opacity: 0.85;
            margin-bottom: 24px;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .cta-form input {
            width: 100%;
            padding: 14px 18px;
            border: none;
            border-radius: 10px;
            margin-bottom: 14px;
            font-size: 1rem;
            font-family: inherit;
            transition: box-shadow 0.3s;
        }

        .cta-form input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(76, 181, 174, 0.3);
        }

        .cta-form button {
            width: 100%;
            padding: 14px 20px;
            background: var(--coral);
            color: var(--navy);
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: inherit;
        }

        .cta-form button:hover {
            background: var(--coral-dark);
            transform: translateY(-2px);
        }

        .cta-right {
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-right h3 {
            font-size: clamp(1.4rem, 4vw, 1.8rem);
            color: var(--navy);
            margin-bottom: 12px;
        }

        .cta-right p {
            color: var(--text-gray);
            margin-bottom: 24px;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .btn-teal {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--teal);
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 14px rgba(76, 181, 174, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-teal::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.5s;
        }

        .btn-teal:hover::before {
            left: 100%;
        }

        .btn-teal:hover {
            background: var(--teal-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(76, 181, 174, 0.4);
        }

        /* ============================================
           SCROLL REVEAL
        ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           TABLET BREAKPOINT (768px+)
        ============================================ */
        @media (min-width: 768px) {
            .pricing-hero {
                padding: 160px 40px 100px;
            }

            .pricing-section {
                padding: 0 40px 120px;
            }

            .pricing-grid {
                grid-template-columns: 1fr 1fr;
            }

            /* Free tier spans full width on tablet */
            .pricing-card.featured {
                grid-column: 1 / -1;
                max-width: 500px;
                margin: 0 auto;
            }

            .incentives-section {
                padding: 100px 40px;
            }

            .incentives-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .comparison-section {
                padding: 120px 40px;
            }

            .faq-section {
                padding: 120px 40px;
            }

            .cta-section {
                padding: 100px 40px;
            }

            .cta-content {
                flex-direction: row;
            }

            .cta-left,
            .cta-right {
                flex: 1;
                padding: 50px;
            }
        }

        /* ============================================
           DESKTOP BREAKPOINT (1024px+)
        ============================================ */
        @media (min-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 28px;
                align-items: stretch;
            }

            .pricing-card.featured {
                grid-column: auto;
                max-width: none;
                margin: 0;
                /* Slight lift to emphasize */
                transform: translateY(-8px);
            }

            .pricing-card.featured:hover {
                transform: translateY(-12px);
            }

            .cta-left,
            .cta-right {
                padding: 60px;
            }
        }

        /* ============================================
           REDUCED MOTION
        ============================================ */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
    