        /* ===== HERO ===== */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 120px 2rem 60px;
            text-align: center;
            background: linear-gradient(135deg, #0a1628 0%, #122a3a 25%, #1D5A64 50%, #2E7D8A 75%, #1a3a4a 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            25% { background-position: 50% 0%; }
            50% { background-position: 100% 50%; }
            75% { background-position: 50% 100%; }
            100% { background-position: 0% 50%; }
        }
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
            z-index: 0;
        }
        .hero-orb-1 {
            width: 500px;
            height: 500px;
            background: rgba(74, 171, 184, 0.25);
            top: -100px;
            right: -100px;
            animation: orbFloat1 10s ease-in-out infinite;
        }
        .hero-orb-2 {
            width: 400px;
            height: 400px;
            background: rgba(46, 125, 138, 0.2);
            bottom: -80px;
            left: -80px;
            animation: orbFloat2 12s ease-in-out infinite;
        }
        .hero-orb-3 {
            width: 300px;
            height: 300px;
            background: rgba(16, 185, 129, 0.15);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: orbFloat3 8s ease-in-out infinite;
        }
        @keyframes orbFloat1 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-40px, 40px); }
        }
        @keyframes orbFloat2 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
        }
        @keyframes orbFloat3 {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
        }
        .hero-content-text {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-content-text h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4.25rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.08;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }
        .hero-typed-wrapper {
            height: 2.5rem;
            margin-bottom: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #hero-typed {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        .typed-cursor {
            color: var(--primary-light, #4AABB8);
            font-weight: 300;
            font-size: 1.4rem;
            opacity: 1;
            animation: typedBlink 0.7s infinite;
        }
        @keyframes typedBlink {
            50% { opacity: 0; }
        }
        .hero-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: linear-gradient(135deg, #F97316, #FB923C);
            color: #ffffff;
            border: none;
            padding: 1.1rem 2.5rem;
            font-weight: 700;
            font-size: 1.15rem;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            border-radius: 9999px;
            margin-bottom: 1.5rem;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            text-decoration: none;
            animation: ctaGlow 2.5s ease-in-out infinite;
            letter-spacing: 0.01em;
        }
        .hero-cta-btn:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 8px 35px rgba(249, 115, 22, 0.5);
        }
        @keyframes ctaGlow {
            0%, 100% { box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3); }
            50% { box-shadow: 0 4px 35px rgba(249, 115, 22, 0.5); }
        }
        .hero-trust-line {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.25rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }
        .hero-trust-line span {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }
        .hero-trust-line span::before {
            content: '\2713';
            color: #4AABB8;
            font-weight: 700;
        }
        .hero-systems-link {
            display: inline-block;
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .hero-systems-link strong {
            color: rgba(255, 255, 255, 0.8);
        }
        .hero-systems-link:hover {
            color: rgba(255, 255, 255, 0.85);
        }
        .hero-systems-link:hover strong {
            color: #ffffff;
        }
        /* ===== TESTIMONIALS ===== */
        .testimonials-section {
            padding: 2rem 0;
            background: #ffffff;
            overflow: hidden;
        }
        .testimonials-section .section-header {
            margin-bottom: 1rem;
        }
        .testimonials-carousel {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            min-height: 140px;
        }
        .testimonial-card {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            text-align: center;
            padding: 0 2rem;
            pointer-events: none;
        }
        .testimonial-card.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .testimonial-stars {
            color: #f59e0b;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
        }
        .testimonial-quote {
            font-size: 0.95rem;
            color: #334155;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 0.75rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .testimonial-author {
            font-weight: 700;
            color: #0f172a;
            font-size: 0.85rem;
        }
        .testimonial-role {
            color: #64748b;
            font-size: 0.75rem;
            margin-top: 0.1rem;
        }
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .testimonial-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #cbd5e1;
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .testimonial-dot.active {
            background: #2E7D8A;
            transform: scale(1.25);
        }

        .pricing-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #2E7D8A 0%, #4AABB8 100%);
            color: #ffffff;
            padding: 1rem 2.25rem;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 125, 138, 0.3);
        }
        .pricing-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(46, 125, 138, 0.4);
        }
        /* ===== PARTNERS MARQUEE ===== */
        .partners-section {
            padding: 2.5rem 0;
            background: #f8fafc;
            overflow: hidden;
        }
        .partners-section .partners-label {
            text-align: center;
            display: block;
            color: #94a3b8;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.25rem;
        }
        .marquee-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        .marquee-container::before,
        .marquee-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 80px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        .marquee-container::before {
            left: 0;
            background: linear-gradient(90deg, #f8fafc 0%, transparent 100%);
        }
        .marquee-container::after {
            right: 0;
            background: linear-gradient(90deg, transparent 0%, #f8fafc 100%);
        }
        .marquee-track {
            display: flex;
            animation: marquee 35s linear infinite;
            width: max-content;
        }
        .marquee-track:hover {
            animation-play-state: paused;
        }
        .marquee-track-reverse {
            display: flex;
            animation: marqueeReverse 40s linear infinite;
            width: max-content;
        }
        .marquee-track-reverse:hover {
            animation-play-state: paused;
        }
        .marquee-container + .marquee-container {
            margin-top: 0.75rem;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @keyframes marqueeReverse {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        .marquee-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 1.5rem;
            margin: 0 0.75rem;
            background: white;
            border-radius: 100px;
            border: 1px solid #e2e8f0;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        .marquee-item:hover {
            border-color: #2E7D8A;
            box-shadow: 0 4px 12px rgba(46, 125, 138, 0.12);
        }
        .marquee-item i {
            font-size: 1.35rem;
        }
        .marquee-item span {
            font-weight: 600;
            color: #334155;
            font-size: 0.875rem;
        }
        .marquee-item.google i { color: #4285F4; }
        .marquee-item.stripe i { color: #635BFF; }
        .marquee-item.meta i { color: #0668E1; }
        .marquee-item.cloudflare i { color: #F48120; }
        .marquee-item.wordpress i { color: #21759B; }
        .marquee-item.instagram i { color: #E4405F; }
        .marquee-item.linkedin i { color: #0077B5; }
        .marquee-item.github i { color: #181717; }
        .marquee-item.figma i { color: #F24E1E; }
        .marquee-item.slack i { color: #4A154B; }
        @media (max-width: 768px) {
            .partners-section {
                padding: 1.5rem 0;
            }
            .marquee-item {
                padding: 0.4rem 1rem;
                margin: 0 0.5rem;
            }
            .marquee-item i {
                font-size: 1.1rem;
            }
            .marquee-item span {
                font-size: 0.75rem;
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            color: rgba(255,255,255,0.5);
            font-size: 0.75rem;
            cursor: pointer;
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-8px); }
        }

        /* ===== CONTAINER ===== */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .section {
            padding: 50px 0;
        }
        .section-alt {
            background: #f8fafc;
        }
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .section-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.25rem;
            font-weight: 800;
            color: #0f172a;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }
        .section-header p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== STEPS ===== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .step-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-color: #2E7D8A;
        }
        .step-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #2E7D8A, #4AABB8);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.25rem;
            margin: 0 auto 1.25rem;
        }
        .step-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.125rem;
            color: #0f172a;
            margin-bottom: 0.75rem;
        }
        .step-card p {
            color: #64748b;
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        /* ===== FEATURES ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .feature-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-color: #2E7D8A;
        }
        .feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(46, 125, 138, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.375rem;
            color: #2E7D8A;
            margin-bottom: 1.25rem;
        }
        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, #2E7D8A, #4AABB8);
            color: white;
        }
        .feature-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: #0f172a;
            margin-bottom: 0.5rem;
        }
        .feature-card p {
            color: #64748b;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* ===== FEATURES 3-COL ===== */
        .features-grid-3 {
            grid-template-columns: repeat(3, 1fr);
            max-width: 1000px;
            margin: 0 auto;
        }
        .features-grid-3 .feature-card {
            text-align: center;
        }
        .features-grid-3 .feature-icon {
            margin: 0 auto 1rem;
        }
        .features-cta-wrapper {
            text-align: center;
            margin-top: 2.5rem;
        }
        .features-cta-wrapper .btn {
            font-size: 1.05rem;
            padding: 1rem 2.5rem;
        }
        .features-cta-note {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #94a3b8;
        }

        /* ===== STATS ===== */
        .stats-section {
            padding: 40px 0;
            background: #0f172a;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }
        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.75rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0.25rem;
        }
        .stat-label {
            font-size: 0.9375rem;
            color: #94a3b8;
            line-height: 1.4;
        }

        /* ===== INDUSTRIES ===== */
        .industries-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .industry-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 9999px;
            font-size: 0.9375rem;
            font-weight: 500;
            color: #334155;
            transition: all 0.2s ease;
        }
        .industry-pill:hover {
            border-color: #2E7D8A;
            color: #2E7D8A;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(46, 125, 138, 0.15);
        }
        .industry-pill i {
            font-size: 1.125rem;
            color: #2E7D8A;
        }

        /* ===== PRICING ===== */
        .pricing-card-main {
            background: #ffffff;
            border-radius: 24px;
            padding: 3rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid #e2e8f0;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .pricing-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .pricing-item {
            text-align: center;
        }
        .price {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: #2E7D8A;
            line-height: 1;
        }
        .price-alt {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #10B981;
            line-height: 1;
        }
        .price-label {
            font-size: 0.9375rem;
            color: #64748b;
            margin-top: 0.375rem;
        }
        .pricing-divider {
            width: 2px;
            height: 60px;
            background: #e2e8f0;
        }

        /* Campaign: strikethrough old price */
        .was-price {
            font-size: 0.9rem;
            color: #94a3b8;
            text-decoration: line-through;
            margin-bottom: 0.25rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        /* Campaign: glowing FREE badge */
        .free-badge {
            display: inline-block;
            background: linear-gradient(135deg, #10B981, #34D399);
            color: white;
            font-size: 0.75rem;
            font-weight: 800;
            padding: 0.2rem 0.65rem;
            border-radius: 100px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
            animation: freePulse 2s ease-in-out infinite;
        }
        @keyframes freePulse {
            0%, 100% { box-shadow: 0 0 16px rgba(16, 185, 129, 0.4); }
            50% { box-shadow: 0 0 28px rgba(16, 185, 129, 0.6); }
        }

        /* Checkout: FREE pill in order summary */
        .free-badge-checkout {
            display: inline-block;
            background: linear-gradient(135deg, #10B981, #34D399);
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.15rem 0.6rem;
            border-radius: 100px;
            letter-spacing: 0.06em;
        }
        .pricing-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: #10B981;
            font-weight: 600;
            font-size: 0.9375rem;
            margin-bottom: 1.5rem;
        }
        .pricing-upsells {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e2e8f0;
            text-align: left;
        }
        .pricing-upsells h4 {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #94a3b8;
            margin-bottom: 1rem;
        }
        .pricing-upsells ul {
            list-style: none;
            padding: 0;
        }
        .pricing-upsells li {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            font-size: 0.875rem;
            color: #64748b;
            border-bottom: 1px solid #e2e8f0;
        }
        .pricing-upsells li:last-child {
            border-bottom: none;
        }
        .pricing-upsells li span {
            font-weight: 600;
            color: #2E7D8A;
        }

        /* ===== FAQ ACCORDION ===== */
        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .faq-item {
            background: #ffffff;
            border-radius: 16px;
            padding: 0;
            margin-bottom: 0.75rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        .faq-item:hover {
            border-color: #2E7D8A;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .faq-item.active {
            border-color: rgba(46, 125, 138, 0.3);
            box-shadow: 0 4px 20px rgba(46, 125, 138, 0.1);
        }
        .faq-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 1.5rem 1.75rem;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            gap: 1rem;
        }
        .faq-toggle h4 {
            font-weight: 700;
            color: #0f172a;
            font-size: 1rem;
            margin: 0;
            line-height: 1.4;
        }
        .faq-icon {
            font-size: 1.25rem;
            color: #94a3b8;
            transition: transform 0.3s ease, color 0.3s ease;
            flex-shrink: 0;
        }
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            color: #2E7D8A;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
            padding: 0 1.75rem;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 1.75rem 1.5rem;
        }
        .faq-answer p {
            color: #64748b;
            line-height: 1.7;
            font-size: 0.9375rem;
        }

        /* ===== SOCIAL PROOF TOAST ===== */
        .social-proof-toast {
            position: fixed;
            bottom: 1.5rem;
            left: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
            border: 1px solid rgba(46, 125, 138, 0.2);
            border-radius: 14px;
            padding: 0.8rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(46, 125, 138, 0.05);
            z-index: 9000;
            max-width: 340px;
        }
        .social-proof-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #2E7D8A, #4AABB8);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .social-proof-icon i {
            color: #ffffff;
            font-size: 0.95rem;
        }
        .social-proof-content {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
            min-width: 0;
        }
        .social-proof-text {
            font-size: 0.8125rem;
            color: #334155;
            font-weight: 600;
            line-height: 1.35;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .social-proof-text.fade-out {
            opacity: 0;
            transform: translateY(-6px);
        }
        .social-proof-text strong {
            color: #2E7D8A;
            font-weight: 800;
        }
        .social-proof-live {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.65rem;
            color: #10B981;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .social-proof-live-dot {
            width: 6px;
            height: 6px;
            background: #10B981;
            border-radius: 50%;
            animation: liveDotPulse 2s ease-in-out infinite;
        }
        @keyframes liveDotPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
            50% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
        }

        /* ===== VIDEO SHOWCASE ===== */
        .video-showcase-section {
            padding: 4rem 0;
            background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        .video-showcase-wrap {
            max-width: 900px;
            margin: 0 auto;
        }
        .video-player {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(46, 125, 138, 0.08);
        }
        .showcase-video {
            width: 100%;
            display: block;
            cursor: pointer;
        }
        .video-play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(46, 125, 138, 0.9);
            border: none;
            color: #fff;
            font-size: 1.75rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
        }
        .video-play-overlay:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: rgba(46, 125, 138, 1);
            box-shadow: 0 8px 32px rgba(46, 125, 138, 0.4);
        }
        .video-play-overlay.hidden {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        @media (max-width: 768px) {
            .video-play-overlay {
                width: 56px;
                height: 56px;
                font-size: 1.4rem;
            }
        }
        .portfolio-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(46, 125, 138, 0.08);
            color: #2E7D8A;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            margin-bottom: 1rem;
            letter-spacing: 0.02em;
        }
        .portfolio-eyebrow i {
            font-size: 0.9rem;
        }

        /* ===== LIMITED SPOTS BANNER ===== */
        .spots-left-banner {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
            border: 1px solid rgba(245, 158, 11, 0.25);
            border-radius: 100px;
            padding: 0.4rem 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.8125rem;
            color: #92400e;
            font-weight: 600;
            animation: urgencyPulse 3s ease-in-out infinite;
        }
        .spots-left-banner i {
            color: #f59e0b;
            font-size: 0.95rem;
        }
        .spots-left-banner strong {
            color: #b45309;
            font-weight: 800;
        }
        @keyframes urgencyPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
            50% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.15); }
        }

        /* ===== FOOTER CTA ===== */
        .footer-cta-section {
            padding: 40px 0;
            background: #0f172a;
            text-align: center;
        }
        .footer-cta-section .container {
            max-width: 700px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .footer-cta-section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        .footer-cta-section p {
            font-size: 1rem;
            color: #94a3b8;
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        .footer-cta-section .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #2E7D8A 0%, #4AABB8 100%);
            color: #ffffff;
            padding: 1.125rem 2.5rem;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 125, 138, 0.3);
        }
        .footer-cta-section .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(46, 125, 138, 0.4);
        }

        /* ===== TABLET ===== */
        @media (max-width: 1024px) {
            .video-player {
                border-radius: 12px;
            }
        }

        /* ===== MOBILE ===== */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 100vh;
                min-height: 100dvh;
                padding: 100px 1.5rem 60px;
            }
            .hero-content-text h1 {
                font-size: 2.5rem;
                line-height: 1.12;
            }
            .hero-rotating-text span {
                font-size: 1rem;
            }
            /* Typed.js text sizing for mobile */
            .hero-typed-wrapper {
                height: 3rem;
                margin-bottom: 1.5rem;
            }
            #hero-typed {
                font-size: 0.9rem;
            }
            .typed-cursor {
                font-size: 1.15rem;
            }
            .hero-cta-btn {
                padding: 0.9rem 2rem;
                font-size: 1rem;
            }
            .hero-trust-line {
                gap: 0.75rem;
                font-size: 0.8rem;
                flex-wrap: wrap;
            }
            .hero-systems-link {
                font-size: 0.85rem;
            }
            /* Hero orbs: smaller on tablet */
            .hero-orb-1 {
                width: 350px;
                height: 350px;
            }
            .hero-orb-2 {
                width: 280px;
                height: 280px;
            }
            .hero-orb-3 {
                width: 200px;
                height: 200px;
            }
            .testimonials-section {
                padding: 1.25rem 0;
            }
            .testimonials-carousel {
                min-height: 220px;
            }
            .testimonial-card {
                padding: 0 1rem;
            }
            .testimonial-quote {
                font-size: 0.875rem;
            }
            .video-showcase-section {
                padding: 2.5rem 0;
            }
            .video-player {
                border-radius: 10px;
            }
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .step-card {
                padding: 1.5rem;
            }
            .features-grid,
            .features-grid-3 {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .feature-card {
                padding: 1.25rem;
            }
            .feature-icon {
                width: 40px;
                height: 40px;
                font-size: 1.125rem;
                margin-bottom: 1rem;
            }
            .feature-card h3 {
                font-size: 1rem;
                margin-bottom: 0.375rem;
            }
            .feature-card p {
                font-size: 0.875rem;
                line-height: 1.5;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .industries-row {
                gap: 0.5rem;
            }
            .industry-pill {
                padding: 0.5rem 0.875rem;
                font-size: 0.8rem;
            }
            .industry-pill i {
                font-size: 0.85rem;
            }
            .section {
                padding: 30px 0;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .section-header {
                margin-bottom: 1.25rem;
            }
            .pricing-row {
                flex-direction: column;
                gap: 1.5rem;
            }
            .pricing-divider {
                width: 100%;
                height: 2px;
            }
            .pricing-card-main {
                padding: 2rem 1.5rem;
            }
            .price {
                font-size: 2.25rem;
            }
            .price-alt {
                font-size: 1.5rem;
            }
            /* FAQ accordion: proper touch targets (min 44px) */
            .faq-toggle {
                padding: 1.25rem 1.25rem;
                min-height: 52px;
            }
            .faq-toggle h4 {
                font-size: 0.9375rem;
            }
            .faq-answer p {
                font-size: 0.875rem;
            }
            .faq-item.active .faq-answer {
                padding: 0 1.25rem 1.25rem;
            }
            .social-proof-toast {
                bottom: 0.75rem;
                left: 0.75rem;
                right: auto;
                max-width: 210px;
                padding: 0.5rem 0.7rem;
                border-radius: 10px;
                gap: 0.5rem;
            }
            .social-proof-icon {
                width: 24px;
                height: 24px;
                border-radius: 6px;
            }
            .social-proof-icon i {
                font-size: 0.7rem;
            }
            .social-proof-text {
                font-size: 0.65rem;
            }
            .social-proof-live {
                font-size: 0.5rem;
            }
            .spots-left-banner {
                font-size: 0.75rem;
                padding: 0.35rem 0.85rem;
            }
            .scroll-indicator {
                display: none;
            }
            .footer-cta-section {
                padding: 30px 0;
            }
            .footer-cta-section h2 {
                font-size: 1.5rem;
            }
            .footer-cta-section p {
                font-size: 0.9rem;
            }
            .footer-cta-section .btn-cta {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
            /* Pricing CTA button on mobile */
            .pricing-cta {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 90px 1rem 40px;
            }
            .hero-content-text h1 {
                font-size: 1.85rem;
                line-height: 1.15;
            }
            .hero-typed-wrapper {
                height: 3.5rem;
                margin-bottom: 1.25rem;
            }
            #hero-typed {
                font-size: 0.8rem;
            }
            .typed-cursor {
                font-size: 1rem;
            }
            .hero-cta-btn {
                padding: 0.85rem 1.75rem;
                font-size: 0.9rem;
            }
            .hero-orb-1 {
                width: 250px;
                height: 250px;
            }
            .hero-orb-2 {
                width: 200px;
                height: 200px;
            }
            .hero-orb-3 {
                width: 150px;
                height: 150px;
            }
            .hero-trust-line {
                gap: 0.5rem;
                font-size: 0.75rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stat-number {
                font-size: 1.75rem;
            }
            .testimonials-carousel {
                min-height: 260px;
            }
            .testimonial-quote {
                font-size: 0.8125rem;
            }
            .video-player {
                border-radius: 8px;
            }
            .faq-toggle {
                padding: 1rem 1rem;
            }
            .faq-toggle h4 {
                font-size: 0.875rem;
            }
            .section-header h2 {
                font-size: 1.35rem;
            }
        }
