  /* ==========================================================================
           CSS VARIABLES & RESET
           ========================================================================== */
        :root {
            --primary: #FF6B00;
            --primary-dark: #e56000;
            --secondary: #0A1628;
            --secondary-light: #152A4A;
            --white: #FFFFFF;
            --light-bg: #F9FAFB;
            --text-main: #334155;
            --text-muted: #64748B;
            --border-color: #E2E8F0;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--secondary);
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ==========================================================================
           UTILITY CLASSES
           ========================================================================== */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .bg-light {
            background-color: var(--light-bg);
        }

        .text-center {
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 48px auto;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            font-size: 1rem;
        }

        .btn:hover {
            transform: scale(1.03);
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
        }

        /* Exception: Gradient allowed ONLY on Hero CTA */
        .btn-hero-gradient {
            background: linear-gradient(135deg, #FF8C00, #FF6B00);
            color: var(--white);
            border: none;
        }

        .btn-hero-gradient:hover {
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            border-color: var(--white);
            color: var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--secondary);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ==========================================================================
           1. STICKY NAVIGATION BAR
           ========================================================================== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
            background-color: transparent;
        }

        header.scrolled {
            background-color: var(--white);
            padding: 15px 0;
            box-shadow: var(--shadow-md);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            transition: var(--transition);
            display: flex;
            align-items: baseline;
        }

        .logo .dot {
            color: var(--primary);
            font-size: 2rem;
            line-height: 0;
            margin-left: 2px;
        }

        header.scrolled .logo {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            gap: 32px;
        }

        .nav-links a {
            color: var(--white);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
        }

        header.scrolled .nav-links a {
            color: var(--text-main);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        header.scrolled .nav-links a:hover,
        header.scrolled .nav-links a.active {
            color: var(--primary);
        }

        .nav-cta-btn {
            padding: 10px 24px;
            font-size: 0.9rem;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            border: none;
            background: none;
            font-size: 1.5rem;
            color: var(--white);
        }

        header.scrolled .hamburger {
            color: var(--secondary);
        }

        /* ==========================================================================
           2. HERO SECTION
           ========================================================================== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            background-color: var(--secondary);
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px; /* Offset for header */
        }

        /* Subtle SVG Background */
        .hero-bg-svg {
            position: absolute;
            top: 50%;
            right: -10%;
            transform: translateY(-50%);
            width: 800px;
            opacity: 0.05;
            pointer-events: none;
            z-index: 0;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-content {
            max-width: 700px;
        }

        .hero h1 {
            color: var(--white);
            font-size: 4rem;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero p {
            color: #CBD5E1;
            font-size: 1.25rem;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            margin-bottom: 60px;
        }

        /* Floating Stats Bar */
        .hero-stats-bar {
            background-color: var(--white);
            padding: 24px 40px;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            display: flex;
            gap: 48px;
            width: fit-content;
            margin-top: auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ==========================================================================
           3. TRUST LOGOS STRIP
           ========================================================================== */
        .trust-section {
            padding: 40px 0;
            background-color: var(--white);
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
        }

        .trust-title {
            text-align: center;
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 24px;
        }

        .marquee-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            display: flex;
        }

        /* Mask for fade effect on edges */
        .marquee-container::before,
        .marquee-container::after {
            content: "";
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
        }
        .marquee-container::before {
            left: 0;
            background: linear-gradient(to right, white, transparent);
        }
        .marquee-container::after {
            right: 0;
            background: linear-gradient(to left, white, transparent);
        }

        .marquee-track {
            display: flex;
            align-items: center;
            gap: 80px;
            animation: scroll-marquee 30s linear infinite;
            white-space: nowrap;
        }

        .marquee-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #94A3B8;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .marquee-logo i {
            font-size: 1.8rem;
        }

        @keyframes scroll-marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 40px)); /* Half width minus half gap */ }
        }

        /* ==========================================================================
           4. SERVICES SECTION
           ========================================================================== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 48px;
        }

        .service-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            padding: 40px 32px;
            border-radius: 8px;
            transition: var(--transition);
            border-top: 4px solid transparent;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-top-color: var(--primary);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 24px;
            display: inline-block;
        }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 16px;
        }

        .service-card p {
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .service-link {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .service-link:hover {
            gap: 12px;
        }

        /* ==========================================================================
           5. WHY CHOOSE US SECTION
           ========================================================================== */
        .why-us-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .why-us-content h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
        }

        .why-us-content > p {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .usp-list {
            display: grid;
            gap: 20px;
        }

        .usp-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .usp-icon {
            color: var(--primary);
            font-size: 1.25rem;
            background-color: rgba(255, 107, 0, 0.1);
            padding: 10px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
        }

        .usp-text h4 {
            font-size: 1.125rem;
            margin-bottom: 4px;
        }

        .usp-text p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .metric-card {
            background-color: var(--secondary);
            padding: 40px 24px;
            border-radius: 8px;
            text-align: center;
            color: var(--white);
            transition: var(--transition);
        }

        .metric-card:hover {
            transform: scale(1.05);
            background-color: var(--secondary-light);
        }

        .metric-card .stat-number {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 8px;
        }

        .metric-card .stat-label {
            color: var(--primary);
        }

        /* ==========================================================================
           6. HOW IT WORKS SECTION
           ========================================================================== */
        .steps-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 64px 0;
            padding: 0 40px;
        }

        .steps-container::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 80px;
            right: 80px;
            height: 2px;
            border-top: 2px dashed var(--border-color);
            z-index: 1;
        }

        .step {
            position: relative;
            z-index: 2;
            text-align: center;
            flex: 1;
            max-width: 300px;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--white);
            border: 4px solid var(--primary);
            color: var(--secondary);
            font-size: 1.5rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px auto;
            box-shadow: var(--shadow-sm);
        }

        .step h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
        }

        .step p {
            color: var(--text-muted);
        }

        .how-it-works .cta-wrapper {
            text-align: center;
            margin-top: 48px;
        }

        /* ==========================================================================
           7. TESTIMONIALS SECTION
           ========================================================================== */
        .testimonials-wrapper {
            position: relative;
        }

        .testimonial-track {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow-md);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .stars {
            color: var(--primary);
            margin-bottom: 24px;
            font-size: 1.1rem;
        }

        .quote-text {
            font-size: 1.125rem;
            font-style: italic;
            color: var(--text-main);
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .avatar {
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .client-details h4 {
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .client-details p {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .slider-controls {
            display: none;
            justify-content: center;
            gap: 16px;
            margin-top: 32px;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--white);
            border: 1px solid var(--border-color);
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-btn:hover {
            background-color: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        /* ==========================================================================
           8. PRICING SECTION
           ========================================================================== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: center;
        }

        .pricing-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 48px 32px;
            text-align: center;
            position: relative;
            transition: var(--transition);
        }

        .pricing-card:hover {
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
            z-index: 2;
        }

        .popular-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .plan-name {
            font-size: 1.25rem;
            margin-bottom: 16px;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 8px;
            line-height: 1;
        }

        .plan-price span {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .plan-price.custom {
            font-size: 2.2rem;
            margin-bottom: 20px;
            padding-top: 12px;
        }

        .plan-features {
            text-align: left;
            margin: 32px 0;
        }

        .plan-features li {
            margin-bottom: 16px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--text-main);
        }

        .plan-features i {
            color: var(--primary);
            margin-top: 4px;
        }

        .pricing-card .btn {
            width: 100%;
        }

        /* ==========================================================================
           9. CONTACT SECTION
           ========================================================================== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 64px;
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
        }

        .contact-info {
            background-color: var(--secondary);
            color: var(--white);
            padding: 48px;
        }

        .contact-info h3 {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .contact-info p {
            color: #CBD5E1;
            margin-bottom: 40px;
        }

        .contact-details {
            display: grid;
            gap: 32px;
        }

        .contact-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .contact-detail-item i {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .contact-detail-text h5 {
            color: var(--white);
            font-size: 1.125rem;
            margin-bottom: 4px;
        }

        .contact-detail-text p {
            color: #CBD5E1;
            margin: 0;
            font-size: 0.9rem;
        }

        .contact-form-wrapper {
            padding: 48px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--secondary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .success-message {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            height: 100%;
            min-height: 300px;
            animation: fadeIn 0.5s ease;
        }

        .success-message i {
            font-size: 4rem;
            color: #10B981;
            margin-bottom: 24px;
        }

        .success-message h3 {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        /* ==========================================================================
           10. FOOTER
           ========================================================================== */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding-top: 80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }

        .footer-brand .logo {
            margin-bottom: 24px;
            display: inline-flex;
        }

        .footer-brand p {
            color: #CBD5E1;
            font-size: 0.9rem;
            max-width: 300px;
            margin-bottom: 24px;
        }

        .social-icons {
            display: flex;
            gap: 16px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: var(--secondary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 24px;
            font-size: 1.125rem;
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: #CBD5E1;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid var(--secondary-light);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            color: #CBD5E1;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a:hover {
            color: var(--white);
        }

        /* ==========================================================================
           11. CRO / FLOATING CTA
           ========================================================================== */
        .mobile-fab {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background-color: var(--primary);
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: none; /* hidden on desktop */
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: var(--shadow-lg);
            z-index: 999;
            transition: var(--transition);
            border: 2px solid var(--white);
        }

        .mobile-fab:hover {
            transform: scale(1.1);
            background-color: var(--primary-dark);
        }

        /* ==========================================================================
           12. RESPONSIVE DESIGN (Media Queries)
           ========================================================================== */
        
        /* Tablet & Small Desktop (max-width: 1024px) */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 3rem; }
            .hero-stats-bar { gap: 24px; padding: 20px; flex-wrap: wrap; justify-content: center; }
            
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            
            .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
            
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-card.popular { transform: none; }
            
            .contact-grid { grid-template-columns: 1fr; }
            
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* Mobile (max-width: 768px) */
        @media (max-width: 768px) {
            .section-padding { padding: 60px 0; }
            .section-title { font-size: 2rem; }
            
            /* Navbar */
            .hamburger { display: block; }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                gap: 0;
                box-shadow: var(--shadow-md);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-out;
            }
            .nav-links.active { max-height: 400px; }
            .nav-links a {
                color: var(--secondary);
                padding: 16px 24px;
                display: block;
                border-bottom: 1px solid var(--border-color);
            }
            .nav-cta-btn { display: none; /* Hide standard nav btn on mobile to use FAB */ }
            header { background-color: var(--white); padding: 15px 0; box-shadow: var(--shadow-sm); }
            .logo { color: var(--secondary); }
            .hamburger { color: var(--secondary); }
            
            /* Hero */
            .hero { padding-top: 100px; text-align: center; }
            .hero .container { align-items: center; }
            .hero h1 { font-size: 2.5rem; }
            .hero-btns { flex-direction: column; width: 100%; }
            .hero-btns .btn { width: 100%; }
            .hero-stats-bar { position: relative; bottom: 0; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
            
            /* Services */
            .services-grid { grid-template-columns: 1fr; }
            
            /* How It Works */
            .steps-container { flex-direction: column; gap: 48px; padding: 0; }
            .steps-container::before {
                top: 0; left: 40px; right: auto; width: 2px; height: 100%;
                border-top: none; border-left: 2px dashed var(--border-color);
            }
            .step { display: flex; align-items: flex-start; text-align: left; max-width: 100%; gap: 24px; }
            .step-number { margin: 0; min-width: 60px; width: 60px; height: 60px; font-size: 1.2rem; }
            .step h3 { margin-top: 10px; }
            
            /* Testimonials (Mobile Carousel) */
            .testimonial-track {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 20px;
                padding-bottom: 20px;
                scrollbar-width: none; /* Firefox */
            }
            .testimonial-track::-webkit-scrollbar { display: none; }
            .testimonial-card { min-width: 100%; scroll-snap-align: center; }
            .slider-controls { display: flex; }
            
            /* Pricing */
            .pricing-grid { grid-template-columns: 1fr; }
            
            /* Contact Form */
            .contact-info { padding: 32px 24px; }
            .contact-form-wrapper { padding: 32px 24px; }
            .form-grid { grid-template-columns: 1fr; }
            
            /* Footer */
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            
            /* Floating CTA */
            .mobile-fab { display: flex; }
        }