 

 /* Responsive Navigation: Hide CTA and center logo on mobile */
        @media (max-width: 768px) {
            .nav-cta {
                display: none;
            }
            nav {
                justify-content: center;
            }
            .logo {
                text-align: center;
                width: 100%;
            }
        }
        /*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2DD4BF;
            --dark: #0F172A;
            --light: #F8FAFC;
            --accent: #F59E0B;
            --text: #1E293B;
            --text-light: #64748B;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            overflow-x: hidden;
            background: var(--light);
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .logo {
            font-size: 1.5em;
            font-weight: 800;
            line-height: 1.1;
        }
        .logo-line1 {
            display: block;
            background: linear-gradient(135deg, var(--primary), #06B6D4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo-line2 {
            display: block;
            font-size: 0.65em; /* smaller than the first line */
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: 0.3px;
            margin-top: 2px;
        }
        
        .nav-cta {
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(45, 212, 191, 0.3);
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(45, 212, 191, 0.4);
        }

        /* Language flag switcher */
        .flag-link img {
          width: 28px;
          height: 18px;
          border-radius: 2px;
          box-shadow: 0 0 4px rgba(0,0,0,0.2);
          transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .flag-link img:hover {
          transform: scale(1.1);
          box-shadow: 0 0 6px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
          .flag-link img {
            width: 24px;
            height: 16px;
          }
        }
        
        /* Hero Section - Full Image */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 5%;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.0)),
                        url('/assets/img/hero-mtrg-alt-2.png') center/cover;
            animation: zoomIn 20s ease-in-out infinite alternate;
        }

        @media (max-width: 768px) {
            .hero-bg {
                background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.0)),
                                  url('/assets/img/nathan-riley-9q3I8XhesQI-unsplash.jpg');
            }
        }
        
        @keyframes zoomIn {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: left;
            color: white;
            max-width: 900px;
            padding: 0;
        }
        
        .hero-badge {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(45, 212, 191, 0.2);
            border: 1px solid var(--primary);
            border-radius: 30px;
            margin-bottom: 30px;
            font-size: 0.9em;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }
        
        .hero h1 {
            font-size: 4.5em;
            font-weight: 800;
            margin-bottom: 30px;
            line-height: 1.1;
            letter-spacing: -2px;
        }
        
        .hero p {
            font-size: 1.4em;
            margin-bottom: 50px;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: flex-start;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            padding: 18px 45px;
            background: var(--primary);
            color: var(--dark);
            text-decoration: none;
            border-radius: 35px;
            font-weight: 700;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(45, 212, 191, 0.4);
            display: inline-block;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(45, 212, 191, 0.5);
        }
        
        .btn-secondary {
            padding: 18px 45px;
            background: transparent;
            color: white;
            text-decoration: none;
            border-radius: 35px;
            font-weight: 600;
            font-size: 1.1em;
            border: 2px solid white;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: white;
            color: var(--dark);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* Stats Section */
        .stats {
            background: white;
            padding: 80px 5%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
            text-align: center;
        }

        .stat-item {
            min-width: 200px;
        }
        
        .stat-item h3 {
            font-size: 3.5em;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), #06B6D4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .stat-item p {
            color: var(--text-light);
            font-size: 1.1em;
        }
        
        /* Image Grid Section */
        .image-grid-section {
            padding: 100px 5%;
            background: var(--light);
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }
        
        .section-header h2 {
            font-size: 3em;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .section-header p {
            font-size: 1.2em;
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .grid-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            height: 500px;
            transition: all 0.5s ease;
        }
        
        .grid-item:first-child {
            grid-row: span 2;
            height: auto;
        }
        
        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .grid-item:hover img {
            transform: scale(1.1);
        }
        
        .grid-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: white;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease;
        }
        
        .grid-item:hover .grid-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        
        .grid-overlay h3 {
            font-size: 1.8em;
            margin-bottom: 10px;
        }
        
        .grid-overlay p {
            font-size: 1em;
            opacity: 0.9;
        }
        
        /* Split Section */
        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }
        
        .split-image {
            background: url('https://images.unsplash.com/photo-1544027993-37dbfe43562a?w=800&q=80') center/cover;
            position: relative;
        }

        .split-image--mc1-alt {
            background-image: url('/assets/img/mc1-alt.png');
        }
        
        .split-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.3), rgba(6, 182, 212, 0.3));
        }
        
        .split-content {
            padding: 100px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: white;
        }
        
        .split-content h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
            font-weight: 800;
        }
        
        .feature-list {
            list-style: none;
            margin: 30px 0;
        }
        
        .feature-list li {
            padding: 20px 0;
            border-bottom: 1px solid #E2E8F0;
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 1.1em;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), #06B6D4);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            flex-shrink: 0;
        }
        
        /* Testimonial Slider */
        .testimonials {
            padding: 120px 5%;
            background: var(--dark);
            color: white;
            text-align: center;
        }
        
        .testimonials h2 {
            font-size: 3em;
            margin-bottom: 80px;
            font-weight: 800;
        }

        .testimonial-slider-wrapper {
            max-width: 1080px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            align-items: center;
            gap: 24px;
        }

        .testimonial-slider {
            overflow: hidden;
            height: auto;
            transition: height 0.35s ease;
        }

        .testimonial-track {
            display: flex;
            align-items: flex-start;
            transition: transform 0.5s ease;
            touch-action: pan-y;
            cursor: grab;
        }

        .testimonial-track.dragging {
            cursor: grabbing;
        }
        
        .testimonial-card {
            flex: 0 0 100%;
            align-self: flex-start;
            padding: 60px;
            background: rgba(255,255,255,0.05);
            border-radius: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            user-select: none;
        }
        
        .testimonial-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, var(--primary), #06B6D4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            font-weight: bold;
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }
        
        .testimonial-text {
            font-size: 1.5em;
            line-height: 1.8;
            margin-bottom: 30px;
            font-weight: 300;
            font-style: italic;
        }
        
        .testimonial-author {
            font-weight: 600;
            font-size: 1.2em;
            margin-bottom: 5px;
        }
        
        .testimonial-role {
            color: var(--primary);
            font-size: 1em;
        }

        .stars {
            color: var(--accent);
            font-size: 1.5em;
            margin-bottom: 20px;
        }

        .testimonial-btn {
            flex-shrink: 0;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: rgba(255,255,255,0.96);
            border: 2px solid var(--primary);
            color: var(--primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        .testimonial-btn:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.08);
            box-shadow: 0 10px 28px rgba(45, 212, 191, 0.35);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 28px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 999px;
            border: 0;
            padding: 0;
            background: rgba(255,255,255,0.35);
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .testimonial-dot.is-active {
            width: 34px;
            background: var(--primary);
        }

        .testimonial-dot:focus-visible,
        .testimonial-btn:focus-visible {
            outline: 2px solid white;
            outline-offset: 3px;
        }
        
        /* Process Section */
        .process {
            padding: 120px 5%;
            background: white;
            overflow: hidden;
        }

        /* Desktop: Manual Slider with Navigation Buttons */
        @media (min-width: 769px) {
            .process-slider-wrapper {
                margin: 80px auto 0;
                position: relative;
                max-width: 1400px;
                padding: 0 5%;
                display: flex;
                align-items: center;
                gap: 30px;
            }

            .process-grid-container {
                overflow: hidden;
                flex: 1;
            }

            .process-grid {
                display: flex;
                gap: 12px;
                transition: transform 0.5s ease;
                width: 100%;
                touch-action: pan-y;
                cursor: grab;
            }

            .process-card {
                text-align: center;
                position: relative;
                flex: 0 0 calc((100% - 24px) / 3);
                max-width: 400px;
                padding: 40px 30px;
                border-radius: 20px;
                transition: all 0.3s ease;
                user-select: none;
            }

            .process-grid.dragging {
                cursor: grabbing;
            }

            /* Navigation Buttons */
            .slider-btn {
                flex-shrink: 0;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background: white;
                border: 2px solid var(--primary);
                color: var(--primary);
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 10;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }

            .slider-btn:hover {
                background: var(--primary);
                color: white;
                transform: scale(1.1);
                box-shadow: 0 6px 20px rgba(45, 212, 191, 0.4);
            }

            .slider-btn:disabled {
                opacity: 0.3;
                cursor: not-allowed;
            }

            .slider-btn:disabled:hover {
                background: white;
                color: var(--primary);
                transform: scale(1);
            }
        }

        @media (max-width: 1140px) and (min-width: 769px) {
            .process-card {
                flex: 0 0 calc((100% - 12px) / 2);
            }
        }

        @media (max-width: 820px) and (min-width: 769px) {
            .process-card {
                flex: 0 0 100%;
            }
        }

        /* Mobile: Grid Layout (original behavior) */
        @media (max-width: 768px) {
            .process-slider-wrapper {
                margin: 80px auto 0;
                display: block;
                padding: 0;
            }

            .process-grid-container {
                width: 100%;
            }

            .process-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 50px;
                max-width: 1400px;
                transform: none !important;
            }

            /* Hide duplicate cards on mobile */
            .process-card:nth-child(n+6) {
                display: none;
            }

            .process-card {
                text-align: center;
                position: relative;
                width: auto !important;
            }

            /* Hide navigation buttons on mobile */
            .slider-btn {
                display: none;
            }
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), #06B6D4);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            font-weight: 800;
            color: white;
            margin: 0 auto 30px;
            transform: rotate(-5deg);
            transition: all 0.3s ease;
        }

        .process-card:hover .process-number {
            transform: rotate(0deg) scale(1.1);
        }

        .process-card h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .process-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* FAQ Section */
        .faq {
            padding: 120px 5%;
            background: white;
        }
        .faq .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-container details {
            background: white;
            border-radius: 12px;
            margin-bottom: 20px;
            padding: 20px 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            cursor: pointer;
            border: 1px solid #E2E8F0;
        }
        .faq-container summary {
            font-weight: 700;
            font-size: 1.2em;
            color: var(--dark);
            list-style: none;
        }
        .faq-container summary::-webkit-details-marker { display: none; }
        .faq-container details[open] {
            border-color: var(--primary);
            box-shadow: 0 8px 24px rgba(45, 212, 191, 0.12);
        }
        .faq-container p {
            margin-top: 15px;
            color: var(--text-light);
            line-height: 1.7;
        }
        
        /* CTA Section with Image */
        .cta-section {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.9), rgba(6, 182, 212, 0.85)),
                        url('') center/cover;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            width: 100%;
            padding: 0 20px;
        }
        
        .cta-content h2 {
            font-size: 3.5em;
            margin-bottom: 30px;
            font-weight: 800;
        }
        
        .cta-content p {
            font-size: 1.4em;
            margin-bottom: 50px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Form Section */
        .form-section {
            padding: 120px 5%;
            background: var(--light);
        }
        
        .form-wrapper {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        
        .form-image {
            height: 300px;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.5), rgba(6, 182, 212, 0.5)),
                        url('https://images.unsplash.com/photo-1544027993-37dbfe43562a?w=1600&q=80') center/cover;
        }
        
        .form-container {
            padding: 60px;
        }
        
        .form-container h2 {
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: 800;
        }
        
        .form-container > p {
            color: var(--text-light);
            margin-bottom: 40px;
            font-size: 1.1em;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #E2E8F0;
            border-radius: 12px;
            font-size: 1em;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary), #06B6D4);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2em;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(45, 212, 191, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(45, 212, 191, 0.4);
        }
        
        .success-message {
            display: none;
            padding: 20px;
            background: #10B981;
            color: white;
            border-radius: 12px;
            margin-top: 20px;
            text-align: center;
            font-weight: 600;
            animation: slideUp 0.5s ease;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .trust-note {
            text-align: center;
            margin-top: 30px;
            color: var(--text-light);
            font-size: 0.95em;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 5% 40px;
        }
        
        .footer-content-center {
            max-width: 600px;
            margin: 0 auto 60px;
            text-align: center;
        }
        
        .footer-brand h3 {
            font-size: 1.8em;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), #06B6D4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }
        
        .footer-brand p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-light);
        }
        
        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-float:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
            background: #20BA5A;
        }
        
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
            }
            50% {
                box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8);
            }
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            color: var(--dark);
            padding: 10px 20px;
            border-radius: 8px;
            white-space: nowrap;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 600;
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            right: 75px;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-bg {
                background-position: right center;
            }

            .hero h1 {
                font-size: 3em;
            }
            
            .split-section {
                grid-template-columns: 1fr;
            }
            
            .split-image {
                min-height: 400px;
            }
            
            .split-content {
                padding: 60px 40px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            .image-grid {
                grid-template-columns: 1fr;
            }
            
            .grid-item:first-child {
                grid-row: span 1;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                padding: 15px 5%;
            }

            .hero-content {
                text-align: center;
                margin: 0 auto;
            }

            .hero-badge {
                margin-left: auto;
                margin-right: auto;
            }

            .hero h1 {
                font-size: 2.2em;
            }
            
            .hero p {
                font-size: 1.1em;
            }
            
            .hero-buttons {
                align-items: center;
                flex-direction: column;
            }
            
            .hero .btn-primary,
            .hero .btn-secondary {
                width: 100%;
                text-align: center;
            }
            
            .hero-bg {
                background-position: center;
            }
            
            .section-header h2 {
                font-size: 2em;
            }
            
            .split-content {
                padding: 40px 20px;
            }

            .split-image--mc1-alt {
                background-image: url('/assets/img/mc3.jpg');
            }

            .form-container {
                padding: 40px 30px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .stats {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-content-center {
                text-align: center;
            }
            
            .whatsapp-float {
                width: 55px;
                height: 55px;
                font-size: 26px;
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-tooltip {
                display: none;
            }
            
            .cta-content h2 {
                font-size: 2em;
            }

            .testimonial-slider-wrapper {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 18px;
            }

            .testimonial-slider {
                grid-column: 1 / -1;
                order: 1;
            }

            .testimonial-btn {
                display: flex;
                width: 48px;
                height: 48px;
            }

            .testimonial-btn-prev {
                order: 2;
                justify-self: start;
            }

            .testimonial-btn-next {
                order: 2;
                justify-self: end;
            }

            .testimonial-card {
                padding: 40px 28px;
            }

            .testimonial-text {
                font-size: 1.2em;
            }
        }
        
        /* Loading Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.8s ease;
        }

        /* Fixed language flag bottom-left */
        .flag-fixed {
          position: fixed;
          bottom: 30px;
          left: 30px;
          z-index: 1000;
        }
        .flag-fixed .flag-link img {
          width: 40px;
          height: 26px;
          border-radius: 4px;
          box-shadow: 0 0 6px rgba(0,0,0,0.25);
          transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .flag-fixed .flag-link img:hover {
          transform: scale(1.1);
          box-shadow: 0 0 8px rgba(0,0,0,0.4);
        }
        @media (max-width: 768px) {
          .flag-fixed {
            bottom: 20px;
            left: 20px;
          }
          .flag-fixed .flag-link img {
            width: 32px;
            height: 22px;
          }
        }
