/* CSS Brand Configuration & Custom Variables */
        :root {
            --primary-color: #1877c5;
            --secondary-color: #1A1A2E;
            --accent-color: #00C9A7;
            --background-color: #FFFFFF;
            --light-bg: #F8F9FA;
            --text-color: #2D3748;
            --text-muted: #718096;
            --white: #FFFFFF;
            --error-color: #E53E3E;
            --font-heading: 'Syne', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Global Resets */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-color);
            background-color: var(--background-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            color: var(--secondary-color);
            font-weight: 700;
        }

        section {
            padding: 100px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* Global Button Styles */
        .btn {
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 700;
            font-family: var(--font-body);
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 0.95rem;
        }

        .btn-filled-primary {
            background-color: var(--primary-color);
            border: 2px solid var(--primary-color);
            color: var(--white);
        }

        .btn-filled-primary:hover {
            background-color: #1948e4;
            border-color: #1948e4;
            transform: translateY(-2px);
        }

        .btn-outline-secondary {
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }

        .btn-outline-secondary:hover {
            background-color: var(--secondary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        .btn-ghost-white {
            background-color: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-ghost-white:hover {
            background-color: var(--white);
            color: var(--secondary-color);
            transform: translateY(-2px);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: var(--transition);
            padding: 25px 5%;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 15px 5%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        header .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        header.scrolled .logo {
            color: var(--secondary-color);
        }

        .logo i {
            color: var(--primary-color);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
        }

        .nav-link {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            transition: var(--transition);
            padding: 5px 0;
        }

        header.scrolled .nav-link {
            color: var(--secondary-color);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .header-ctas {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        header:not(.scrolled) .btn-outline-secondary {
            border-color: var(--white);
            color: var(--white);
        }

        header:not(.scrolled) .btn-outline-secondary:hover {
            background-color: var(--white);
            color: var(--secondary-color);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--white);
            cursor: pointer;
            transition: var(--transition);
        }

        header.scrolled .menu-toggle {
            color: var(--secondary-color);
        }

        /* Hero Section */
        #home {
            height: 100vh;
            min-height: 650px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0 5%;
        }

        .hero-bg-parallax {
            position: absolute;
            top: -10%;
            left: 0;
            width: 100%;
            height: 125%;
            background: linear-gradient(rgba(26, 26, 46, 0.75), rgba(26, 26, 46, 0.75)),
                url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            z-index: 1;
            will-change: transform;
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            color: var(--white);
            position: relative;
            z-index: 2;
            will-change: transform;
        }

        .hero-headline {
            font-size: 3.8rem;
            line-height: 1.15;
            color: var(--white);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .hero-subheadline {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 680px;
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
        }

        @keyframes heroFadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Us Section */
        #about .about-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            align-items: center;
        }

        .about-text {
            padding-right: 20px;
        }

        .about-headers h2 {
            font-size: 2.5rem;
            color: #103c7a;
            margin-bottom: 10px;
            display: inline-block;
            border-bottom: 3px solid #103c7a;
            padding-bottom: 5px;
        }

        .about-headers h3 {
            font-size: 1.6rem;
            color: #103c7a;
            margin-bottom: 25px;
            font-weight: 700;
            display: inline-block;
            border-bottom: 2px solid #103c7a;
            padding-bottom: 5px;
        }

        .about-body {
            color: #4a5568;
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .about-image img {
            width: 100%;
            height: auto;
            max-height: 450px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #eaeaea;
        }

        /* Services & Partners Section */
        #services {
            background-color: #f8f9fa;
        }

        .line-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            max-width: 100%;
        }

        .line-header::before,
        .line-header::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #dcdcdc;
            margin: 0 20px;
        }

        .line-header h2 {
            font-size: 2rem;
            color: #103c7a;
            margin: 0;
            white-space: nowrap;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 40px;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            border-right: 1px solid #eaeaea;
        }

        .feature-item:last-child {
            border-right: none;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #103c7a;
            margin-bottom: 15px;
        }

        .feature-item h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #103c7a;
            margin-bottom: 5px;
        }

        .feature-item p {
            color: #4a5568;
            font-size: 0.95rem;
        }

        .partners-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #ffffff;
            padding: 20px 30px;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #eaeaea;
        }

        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 15px;
            border-right: 1px solid #eaeaea;
            flex: 1;
            text-align: center;
        }

        .partner-logo:last-child {
            border-right: none;
        }

        /* Pricing Section */
        .pricing-table-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .pricing-table-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .pricing-table-header::before,
        .pricing-table-header::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #d0d7e2;
            margin: 0 15px;
        }

        .pricing-table-header h2 {
            font-size: 1.8rem;
            color: #103c7a;
            margin: 0;
            white-space: nowrap;
        }

        .pricing-table {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            background: #fff;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border: 1px solid #d0d7e2;
            margin-bottom: 25px;
        }

        .pricing-col {
            display: flex;
            flex-direction: column;
            border-right: 1px solid #d0d7e2;
        }

        .pricing-col:last-child {
            border-right: none;
        }

        .col-header {
            background-color: #0b3d7d;
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 600;
            padding: 12px;
            font-family: var(--font-body);
        }

        .col-price {
            padding: 18px 15px;
            font-size: 2rem;
            font-weight: 800;
            color: #0d1b2a;
            font-family: var(--font-heading);
        }

        .financing-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            position: relative;
        }

        .financing-section::before {
            content: "";
            display: block;
            width: 100%;
            border-bottom: 1px solid #d0d7e2;
            position: absolute;
            top: 13px;
            z-index: 1;
        }

        .financing-text {
            font-size: 1.15rem;
            color: #2d3748;
            background: #f4f6fa;
            padding: 0 15px;
            z-index: 2;
            font-family: var(--font-body);
            font-weight: 500;
        }

        .financing-text strong {
            font-size: 1.35rem;
            font-weight: 800;
        }

        .btn-financing {
            background: linear-gradient(to bottom, #2b6db7, #1b4b96);
            color: #ffffff;
            border: none;
            padding: 10px 24px;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
            text-transform: none;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .btn-financing:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
            background: linear-gradient(to bottom, #347acc, #2057ab);
            color: #ffffff;
        }



        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
        }

        .contact-form-wrapper {
            background: var(--white);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .form-group {
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .form-label {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #CBD5E0;
            border-radius: 6px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
            background-color: var(--white);
            color: var(--text-color);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(245, 166, 32, 0.15);
        }

        .form-control.input-error {
            border-color: var(--error-color);
            background-color: #FFF5F5;
        }

        .error-msg {
            color: var(--error-color);
            font-size: 0.82rem;
            margin-top: 5px;
            font-weight: 600;
            display: none;
        }

        textarea.form-control {
            resize: vertical;
        }

        .form-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .form-buttons .btn {
            flex: 1;
            min-width: 180px;
        }

        .contact-info-wrapper {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .info-icon {
            font-size: 1.2rem;
            color: var(--primary-color);
            background: var(--light-bg);
            padding: 12px;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        }

        .info-details h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .info-details p {
            color: var(--text-muted);
            font-size: 0.98rem;
            line-height: 1.5;
        }

        .info-details p a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        .info-details p a:hover {
            color: var(--primary-color);
        }

        .map-placeholder {
            width: 100%;
            height: 240px;
            background: #E2E8F0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-family: var(--font-heading);
            font-weight: 600;
            flex-direction: column;
            gap: 12px;
            border: 2px dashed #CBD5E0;
            margin-top: 15px;
        }

        .map-placeholder i {
            font-size: 2rem;
            color: var(--text-muted);
        }

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 80px 5% 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
            gap: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--primary-color);
        }

        .footer-logo-col .logo {
            font-size: 1.5rem;
            margin-bottom: 15px;
            display: inline-flex;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            max-width: 250px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 6px;
        }

        .newsletter-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            display: block;
            margin-bottom: 12px;
        }

        .newsletter-form {
            display: flex;
            width: 100%;
            margin-bottom: 25px;
        }

        .newsletter-form input {
            padding: 12px 16px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            flex-grow: 1;
            outline: none;
        }

        .newsletter-form button {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 12px 22px;
            border-radius: 0 4px 4px 0;
            font-family: var(--font-body);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background-color: #e09216;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .social-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .bottom-bar {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.88rem;
        }

        /* Scroll to Top Floating Button */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 46px;
            height: 46px;
            background-color: var(--accent-color);
            color: var(--secondary-color);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .scroll-top-btn.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top-btn:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-4px);
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            z-index: 2000;
            transition: width 0.1s ease-out;
        }

        /* UX Global Scroll Animations (IntersectionObserver) */
        .reveal-fade-up {
            opacity: 0;
            transform: translateY(45px);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-fade-up.appeared {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-left.appeared {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-right.appeared {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-zoom {
            opacity: 0;
            transform: scale(0.93);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-zoom.appeared {
            opacity: 1;
            transform: scale(1);
        }

        /* --- Premium Parallax Styles & Hardware Acceleration --- */
        .parallax-element {
            will-change: transform;
            /* Cubic bezier transition provides interpolation/scroll lag that makes the movement feel premium */
            transition: transform 0.18s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Responsive Parallax Blobs */
        .parallax-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.12;
            pointer-events: none;
            z-index: 0;
            will-change: transform;
            transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .blob-1 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
            top: 15%;
            left: -120px;
        }

        .blob-2 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
            bottom: -50px;
            right: -150px;
        }

        .blob-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #f39c12 0%, transparent 70%);
            top: 25%;
            left: -100px;
        }

        .blob-4 {
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
            bottom: 12%;
            right: -60px;
        }

        /* Accessibility: respect user preferences for reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .parallax-element,
            .parallax-blob,
            .hero-bg-parallax,
            .hero-content {
                transform: none !important;
                transition: none !important;
            }
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .pricing-table {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto 30px;
            }

            .pricing-col {
                border-right: none;
                border-bottom: 1px solid #d0d7e2;
            }

            .pricing-col:last-child {
                border-bottom: none;
            }

            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .feature-item {
                border-right: none;
                margin-bottom: 20px;
            }

            .partners-grid {
                flex-wrap: wrap;
                gap: 20px;
            }

            .partner-logo {
                border-right: none;
                flex: 0 0 30%;
            }



            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
        }

        @media (max-width: 768px) {
            header {
                background: var(--white);
                padding: 15px 5%;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            }

            .logo {
                color: var(--secondary-color);
            }

            .menu-toggle {
                display: block;
                color: var(--secondary-color);
            }

            .nav-wrapper {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                align-items: stretch;
                padding: 30px 5%;
                gap: 30px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
                display: none;
                z-index: 999;
            }

            .nav-wrapper.active {
                display: flex;
            }

            .nav-menu {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                width: 100%;
            }

            .nav-link {
                color: var(--secondary-color);
                width: 100%;
                display: block;
                font-size: 1.1rem;
            }

            .header-ctas {
                flex-direction: column;
                width: 100%;
                gap: 12px;
            }

            .header-ctas .btn {
                width: 100%;
            }

            .hero-headline {
                font-size: 2.6rem;
            }

            #about .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .partner-logo {
                flex: 0 0 45%;
            }

            section {
                padding: 70px 5% 50px;
            }
        }

        @media (max-width: 480px) {
            .hero-headline {
                font-size: 2.2rem;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }
