        /* ========== HERO + PRICING BACKGROUND WRAPPER ========== */
        .hero-pricing-wrapper {
            position: relative;
            background: linear-gradient(180deg, #fdfcfb 0%, #f8f7fc 100%);
        }

        /* Gradient container - spans both sections */
        .background-gradient-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1600px;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        /* Centered gradient blob - centered on title */
        .background-gradient {
            position: absolute;
            top: 120px;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 600px;
            background: 
                radial-gradient(ellipse 100% 100% at 50% 50%,
                    rgba(255, 200, 220, 0.5) 0%,
                    rgba(255, 215, 190, 0.4) 20%,
                    rgba(255, 235, 175, 0.3) 40%,
                    transparent 70%);
            filter: blur(50px);
            pointer-events: none;
            animation: gradientFloat 8s ease-in-out infinite;
        }

        /* Pink/purple accent - left side */
        .background-gradient-secondary {
            position: absolute;
            top: 150px;
            left: 50%;
            transform: translateX(-80%);
            width: 400px;
            height: 400px;
            background: radial-gradient(ellipse 100% 100% at 50% 50%,
                rgba(195, 145, 255, 0.45) 0%,
                rgba(220, 170, 240, 0.25) 40%,
                transparent 65%);
            filter: blur(55px);
            pointer-events: none;
            animation: gradientFloatAlt 10s ease-in-out infinite;
        }

        /* Yellow/orange accent - right side */
        .background-gradient-tertiary {
            position: absolute;
            top: 180px;
            left: 50%;
            transform: translateX(30%);
            width: 450px;
            height: 450px;
            background: radial-gradient(ellipse 100% 100% at 50% 50%,
                rgba(255, 210, 100, 0.45) 0%,
                rgba(255, 190, 130, 0.25) 40%,
                transparent 65%);
            filter: blur(55px);
            pointer-events: none;
            animation: gradientFloatAlt 12s ease-in-out infinite reverse;
        }

        @keyframes gradientFloat {
            0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
            50% { transform: translateX(-50%) translateY(-20px) scale(1.02); }
        }

        @keyframes gradientFloatAlt {
            0%, 100% { transform: translateX(-80%) translateY(0); }
            50% { transform: translateX(-80%) translateY(-15px); }
        }

        /* Vertical lines overlay - centered on title area */
        .background-lines {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: repeating-linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.35) 0px,
                rgba(255, 255, 255, 0.35) 1px,
                transparent 1px,
                transparent 48px
            );
            pointer-events: none;
            mask-image: radial-gradient(ellipse 55% 35% at 50% 25%, 
                black 0%, 
                black 40%,
                transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 55% 35% at 50% 25%, 
                black 0%, 
                black 40%,
                transparent 100%);
        }

        /* ========== HERO SECTION ========== */
        .hero {
            padding: 180px 48px 100px;
            text-align: center;
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            background: rgba(129, 103, 234, 0.08);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(129, 103, 234, 0.2);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
            color: var(--violet);
        }

        .badge-icon {
            width: 16px;
            height: 16px;
            stroke: var(--violet);
            stroke-width: 1.5;
            fill: none;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--navy);
        }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, #7c5cfc 0%, #a855f7 33%, #ec4899 66%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero h1 .serif-italic {
            font-family: 'Instrument Serif', Georgia, serif;
            font-style: italic;
            font-weight: 400;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--navy);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .billing-toggle {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 8px;
            border-radius: 100px;
            border: 1px solid var(--border-light);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .billing-option {
            padding: 12px 24px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--muted);
            border: none;
            background: transparent;
            font-family: inherit;
        }

        .billing-option.active {
            background: var(--navy);
            color: white;
            box-shadow: 0 4px 12px rgba(14, 14, 68, 0.2);
        }

        .billing-option:hover:not(.active) {
            color: var(--navy);
        }

        .save-badge {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 4px 10px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            margin-left: 6px;
        }

        /* Annual savings callout */
        .annual-savings {
            display: none;
            color: #059669;
            font-size: 13px;
            font-weight: 600;
            margin-top: 4px;
        }

        .annual-savings.visible {
            display: block;
        }

        /* ========== CUSTOMER LOGOS CAROUSEL ========== */
        .logos-carousel-wrapper {
            margin-top: 32px;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .logos-carousel-wrapper::before,
        .logos-carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none;
        }

        .logos-carousel-wrapper::before {
            left: 0;
            background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, transparent 100%);
        }

        .logos-carousel-wrapper::after {
            right: 0;
            background: linear-gradient(270deg, rgba(255,255,255,0.9) 0%, transparent 100%);
        }

        .logos-carousel {
            display: flex;
            gap: 60px;
            animation: scrollLogos 20s linear infinite;
        }

        .logos-carousel:hover {
            animation-play-state: paused;
        }

        @keyframes scrollLogos {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .logo-item {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.3px;
            white-space: nowrap;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .logo-item:hover {
            opacity: 0.8;
        }

        /* ========== PRICING CARDS ========== */
        .pricing-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px 100px;
            position: relative;
            z-index: 1;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 80px;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: 24px;
            padding: 40px 32px;
            position: relative;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 
                0 4px 24px rgba(0, 0, 0, 0.03),
                0 1px 2px rgba(0, 0, 0, 0.02),
                inset 0 1px 1px rgba(255, 255, 255, 0.8);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.65);
            box-shadow: 
                0 20px 60px rgba(129, 103, 234, 0.1),
                0 8px 24px rgba(0, 0, 0, 0.04),
                inset 0 1px 1px rgba(255, 255, 255, 1);
            border-color: rgba(255, 255, 255, 0.85);
        }

        .pricing-card.featured {
            background: rgba(255, 255, 255, 0.6);
            border: 2px solid var(--violet);
            transform: scale(1.02);
            box-shadow: 
                0 20px 60px rgba(129, 103, 234, 0.12),
                0 8px 24px rgba(0, 0, 0, 0.04),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
        }

        .pricing-card.featured:hover {
            transform: scale(1.02) translateY(-8px);
            background: rgba(255, 255, 255, 0.75);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
            color: white;
            padding: 6px 20px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
        }

        .plan-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .plan-icon.essentials {
            background: linear-gradient(135deg, rgba(73, 204, 249, 0.15) 0%, rgba(73, 204, 249, 0.05) 100%);
        }

        .plan-icon.essentials svg {
            stroke: var(--accent-cyan);
        }

        .plan-icon.growth {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
        }

        .plan-icon.growth svg {
            stroke: var(--violet);
        }

        .plan-icon.enterprise {
            background: linear-gradient(135deg, rgba(249, 168, 82, 0.15) 0%, rgba(249, 168, 82, 0.05) 100%);
        }

        .plan-icon.enterprise svg {
            stroke: var(--accent-orange);
        }

        .plan-icon svg {
            width: 28px;
            height: 28px;
            stroke-width: 1.5;
            fill: none;
        }

        .plan-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .plan-tagline {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 24px;
            min-height: 42px;
        }

        .plan-price {
            margin-bottom: 8px;
        }

        .price-value {
            font-size: 48px;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -2px;
        }

        .price-period {
            font-size: 16px;
            color: var(--muted);
            font-weight: 500;
        }

        .price-note {
            font-size: 13px;
            color: var(--light-muted);
            margin-bottom: 24px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .plan-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 14px;
            color: var(--dark-text);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .feature-check {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .feature-check.cyan {
            background: rgba(73, 204, 249, 0.15);
        }

        .feature-check.cyan svg {
            stroke: var(--accent-cyan);
        }

        .feature-check.violet {
            background: rgba(139, 92, 246, 0.15);
        }

        .feature-check.violet svg {
            stroke: var(--violet);
        }

        .feature-check.orange {
            background: rgba(249, 168, 82, 0.15);
        }

        .feature-check.orange svg {
            stroke: var(--accent-orange);
        }

        .feature-check svg {
            width: 12px;
            height: 12px;
            stroke-width: 2.5;
        }

        .btn-plan {
            width: 100%;
            padding: 16px 28px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            text-align: center;
            display: inline-block;
            font-family: inherit;
        }

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

        .btn-plan.secondary:hover {
            background: var(--navy-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(14, 14, 68, 0.25);
        }

        .btn-plan.primary {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
        }

        .btn-plan.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
        }

        .btn-plan.outline {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }

        .btn-plan.outline:hover {
            background: var(--navy);
            color: white;
            transform: translateY(-2px);
        }

        /* ========== SOCIAL PROOF BAR ========== */
        .social-proof {
            text-align: center;
            padding: 60px 48px;
            background: rgba(255, 255, 255, 0.6);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .social-proof-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .social-proof p {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .metrics-row {
            display: flex;
            justify-content: center;
            gap: 64px;
            flex-wrap: wrap;
        }

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

        .metric-value {
            font-size: 40px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--violet) 0%, var(--accent-purple) 50%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 4px;
        }

        .metric-label {
            font-size: 14px;
            color: var(--muted);
        }

        /* ========== REVIEWS WALL ========== */
        .reviews-section {
            padding: 100px 48px;
            background: linear-gradient(180deg, #f8f7fc 0%, #ffffff 100%);
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .reviews-header h2 {
            font-size: 40px;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -1.5px;
            margin-bottom: 16px;
        }

        .reviews-header h2 .serif-italic {
            font-family: 'Instrument Serif', Georgia, serif;
            font-style: italic;
            font-weight: 400;
        }

        .reviews-header p {
            font-size: 18px;
            color: var(--muted);
        }

        .reviews-wall {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .review-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s ease;
            box-shadow: 
                0 4px 24px rgba(0, 0, 0, 0.03),
                inset 0 1px 1px rgba(255, 255, 255, 0.8);
        }

        .review-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 
                0 12px 40px rgba(129, 103, 234, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        /* Card size variations */
        .review-card.tall {
            grid-row: span 2;
        }

        .review-card.wide {
            grid-column: span 2;
        }

        .review-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 16px;
        }

        .review-stars svg {
            width: 16px;
            height: 16px;
            fill: #fbbf24;
        }

        .review-text {
            font-size: 15px;
            line-height: 1.65;
            color: var(--dark-text);
            margin-bottom: 20px;
        }

        .review-text.large {
            font-size: 17px;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: white;
        }

        .review-avatar.purple { background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%); }
        .review-avatar.pink { background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%); }
        .review-avatar.cyan { background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%); }
        .review-avatar.orange { background: linear-gradient(135deg, #f97316 0%, #fb923c 100%); }
        .review-avatar.green { background: linear-gradient(135deg, #10b981 0%, #34d399 100%); }
        .review-avatar.indigo { background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%); }

        .review-info {
            flex: 1;
        }

        .review-name {
            font-weight: 600;
            color: var(--navy);
            font-size: 14px;
        }

        .review-role {
            color: var(--muted);
            font-size: 13px;
        }

        @media (max-width: 1200px) {
            .reviews-wall {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .reviews-wall {
                grid-template-columns: repeat(2, 1fr);
            }
            .review-card.wide {
                grid-column: span 1;
            }
        }

        @media (max-width: 600px) {
            .reviews-wall {
                grid-template-columns: 1fr;
            }
            .review-card.tall {
                grid-row: span 1;
            }
        }

        /* ========== FEATURE COMPARISON TABLE ========== */
        .comparison-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .comparison-header h2 {
            font-size: 40px;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -1.5px;
            margin-bottom: 16px;
        }

        .comparison-header p {
            font-size: 18px;
            color: var(--muted);
            max-width: 500px;
            margin: 0 auto;
        }

        .comparison-table-wrapper {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
        }

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

        .comparison-table thead {
            background: linear-gradient(180deg, #f8f7fc 0%, #ffffff 100%);
        }

        .comparison-table th {
            padding: 24px 20px;
            text-align: center;
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            border-bottom: 1px solid var(--border-light);
        }

        .comparison-table th:first-child {
            text-align: left;
            padding-left: 32px;
            width: 35%;
        }

        .comparison-table th.plan-header {
            position: relative;
        }

        .comparison-table th.plan-header.featured::after {
            content: 'MOST POPULAR';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            color: white;
            padding: 3px 10px;
            border-radius: 100px;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .th-price {
            font-size: 24px;
            font-weight: 800;
            display: block;
            margin-top: 4px;
        }

        .comparison-table tbody tr {
            transition: background 0.2s ease;
        }

        .comparison-table tbody tr:hover {
            background: rgba(129, 103, 234, 0.03);
        }

        .comparison-table td {
            padding: 18px 20px;
            text-align: center;
            font-size: 14px;
            color: var(--dark-text);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .comparison-table td:first-child {
            text-align: left;
            padding-left: 32px;
            font-weight: 500;
        }

        /* Growth column highlight */
        .comparison-table th:nth-child(3),
        .comparison-table td:nth-child(3) {
            background: rgba(129, 103, 234, 0.04);
        }

        .comparison-table th:nth-child(3) {
            background: linear-gradient(180deg, rgba(129, 103, 234, 0.08) 0%, rgba(129, 103, 234, 0.04) 100%);
        }

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

        .category-row td {
            background: linear-gradient(90deg, rgba(129, 103, 234, 0.06) 0%, rgba(129, 103, 234, 0.02) 100%);
            font-weight: 700 !important;
            color: var(--violet) !important;
            font-size: 12px !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 14px 20px !important;
        }

        .check-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.12);
        }

        .check-icon svg {
            width: 14px;
            height: 14px;
            stroke: #10b981;
            stroke-width: 2.5;
        }

        .dash-icon {
            color: var(--light-muted);
            font-size: 20px;
        }

        .feature-value {
            font-weight: 600;
            color: var(--navy);
        }

        /* ========== FAQ SECTION ========== */
        .faq-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 80px 48px 120px;
        }

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

        .faq-header h2 {
            font-size: 40px;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -1.5px;
            margin-bottom: 16px;
        }

        .faq-header h2 .serif-italic {
            font-family: 'Instrument Serif', Georgia, serif;
            font-style: italic;
            font-weight: 400;
        }

        .faq-header p {
            font-size: 18px;
            color: var(--muted);
        }

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

        .faq-item {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(129, 103, 234, 0.3);
            box-shadow: 0 8px 24px rgba(129, 103, 234, 0.08);
        }

        .faq-question {
            width: 100%;
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: var(--navy);
            font-family: inherit;
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            stroke: var(--violet);
            stroke-width: 2;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-content {
            padding: 0 28px 24px;
            font-size: 15px;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(180deg, #ffffff 0%, #f8f7fc 100%);
            padding: 100px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--border-light);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 400px;
            background: 
                radial-gradient(ellipse 100% 100% at 50% 50%,
                    rgba(129, 103, 234, 0.08) 0%,
                    rgba(236, 72, 153, 0.05) 40%,
                    transparent 70%);
            filter: blur(60px);
            pointer-events: none;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 44px;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -2px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-section p {
            font-size: 18px;
            color: var(--muted);
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-primary {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
            color: white;
            padding: 18px 36px;
            border-radius: 100px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
            animation: glowPulse 2.5s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.2); }
            50% { box-shadow: 0 4px 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.3); }
        }

        .btn-cta-primary:hover {
            transform: translateY(-2px);
            animation: none;
            box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.35);
        }

        .btn-cta-secondary {
            background: transparent;
            color: var(--navy);
            padding: 18px 36px;
            border-radius: 100px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: 2px solid var(--navy);
        }

        .btn-cta-secondary:hover {
            background: var(--navy);
            color: white;
            transform: translateY(-2px);
        }

/* ==================== ADDITIONAL RESPONSIVE DESIGN ==================== */
/* Extracted from original HTML - Session 13 - Adding missing breakpoints */

/* Desktop Small (1200px) - Footer */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 3;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Tablet (992px) */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    .hero h1 {
        font-size: 42px;
    }
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    .comparison-table {
        min-width: 700px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile Large (768px) */
@media (max-width: 768px) {
    .logo-text {
        font-size: 22px;
    }
    .btn-nav-cta {
        padding: 10px 16px;
        font-size: 13px;
    }
    .btn-ghost {
        padding: 10px 12px;
        font-size: 13px;
    }
    .hero {
        padding: 160px 20px 100px;
        min-height: 500px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .pricing-section {
        padding: 0 20px 80px;
    }
    .comparison-section {
        padding: 60px 20px;
    }
    .comparison-header h2 {
        font-size: 32px;
    }
    .faq-section {
        padding: 60px 20px 80px;
    }
    .faq-header h2 {
        font-size: 32px;
    }
    .cta-section {
        padding: 80px 20px;
    }
    .cta-section h2 {
        font-size: 32px;
    }
    .metrics-row {
        gap: 32px;
    }
    .metric-value {
        font-size: 32px;
    }
    footer {
        padding: 60px 20px 30px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .billing-toggle {
        flex-direction: column;
        gap: 8px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========== BUTTON SUBTEXT ========== */
.btn-subtext {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(14, 14, 68, 0.6);
    text-align: center;
}

.cta-subtext {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== SALES MODAL ========== */
.sales-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    cursor: pointer;
}

.sales-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sales-modal {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: linear-gradient(135deg, #0e0e44 0%, #12124d 50%, #0a0a35 100%);
    border-radius: 24px;
    border: 1px solid rgba(129, 103, 234, 0.2);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(129, 103, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    cursor: default;
    overflow: hidden;
}

.sales-modal-overlay.active .sales-modal {
    transform: scale(1) translateY(0);
}

.sales-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.sales-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.sales-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.8);
}

.sales-modal-content {
    padding: 32px;
}

.sales-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(129, 103, 234, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lavender);
    margin-bottom: 16px;
}

.modal-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--violet);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Modal Form Styles */
.sales-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sales-form .form-group {
    margin-bottom: 16px;
}

.sales-form .form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.sales-form .form-input,
.sales-form .form-select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 15px;
    color: #fff;
    transition: all 0.2s ease;
}

.sales-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sales-form .form-input:focus,
.sales-form .form-select:focus {
    outline: none;
    border-color: var(--violet);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(129, 103, 234, 0.15);
}

.sales-form .form-select {
    cursor: pointer;
    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='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.sales-form .form-select option {
    background: #1a1a4a;
    color: #fff;
}

.sales-form .btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--violet) 0%, #a855f7 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.sales-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(129, 103, 234, 0.4);
}

.sales-form .btn-submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.sales-form .btn-submit:hover svg {
    transform: translateX(4px);
}

.modal-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-footer .footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.modal-footer .footer-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-cyan);
}

/* Prevent body scroll when modal is open */
body.sales-modal-open {
    overflow: hidden;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .sales-modal {
        max-width: 100%;
        border-radius: 20px;
    }

    .sales-modal-content {
        padding: 24px;
    }

    .sales-form .form-row {
        grid-template-columns: 1fr;
    }

    .modal-footer {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .sales-modal-overlay {
        padding: 12px;
    }

    .sales-modal-content {
        padding: 20px;
    }

    .modal-title {
        font-size: 20px;
    }
}

