
        :root {
            --primary: #ff6a3d;
            --primary-hover: #e65128;
            --primary-light: #fff3ee;
            --accent: #3b6dff;
            --accent-soft: rgba(59,109,255,0.12);
            --secondary: #111827;
            --text-dark: #1f2937;
            --text-muted: #515c6f;
            --bg-light: #f3f7ff;
            --bg-card: #ffffff;
            --surface: #eef3fb;
            --border-color: #d7e1ef;
            --warning-bg: #fffbebf5;
            --warning-border: #f59e0b;
            --warning-text: #92400e;
            --shadow-sm: 0 10px 30px rgba(15,23,42,0.08);
            --shadow-md: 0 18px 50px rgba(15,23,42,0.12);
            --shadow-lg: 0 30px 80px rgba(15,23,42,0.15);
            --shadow-glow: 0 0 24px rgba(59,109,255,0.24);
            --radius: 20px;
            --transition: all 0.35s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            background-color: #eef3fb;
            line-height: 1.6;
        }

        body {
            padding-top: 90px;
            background: radial-gradient(circle at top left, rgba(255,106,61,0.12), transparent 25%),
                        radial-gradient(circle at bottom right, rgba(59,109,255,0.10), transparent 30%),
                        var(--bg-light);
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background: radial-gradient(circle at 70% 10%, rgba(255,106,61,0.08), transparent 18%),
                        radial-gradient(circle at 15% 80%, rgba(59,109,255,0.08), transparent 20%);
            pointer-events: none;
            z-index: -1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(24px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInFromRight {
            0% { opacity: 0; transform: translateX(80px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInFromLeft {
            0% { opacity: 0; transform: translateX(-80px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 0 rgba(255,106,61,0.16); }
            50% { box-shadow: 0 0 30px rgba(255,106,61,0.12); }
        }

        @keyframes glowSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 10px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .nav-wrapper {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100px;
            padding: 8px 6px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            width: auto;
            height: 54px;
            border-radius: 12px;
            object-fit: cover;
            display: block;
            max-width: 180px;
        }

        .logo-text span:first-child {
            color: var(--primary);
            font-weight: 800;
            font-size: 1.25rem;
        }

        .logo-text span:last-child {
            color: #1d4ed8;
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            list-style: none;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s ease, transform 0.3s ease;
            white-space: nowrap;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 999px;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 40%;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 30px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.98rem;
            text-decoration: none;
            transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
            cursor: pointer;
            border: none;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top left, rgba(255,255,255,0.45), transparent 40%);
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
        }

        .btn:hover::after {
            opacity: 1;
        }

        .btn:active {
            transform: translateY(1px) scale(0.99);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #ff8a5a);
            color: white;
            box-shadow: 0 20px 50px rgba(255,106,61,0.18);
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 26px 60px rgba(255,106,61,0.24);
        }

        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
            box-shadow: inset 0 0 0 0 rgba(255,255,255,0.12);
        }

        .btn-outline:hover {
            background: rgba(255,106,61,0.08);
            box-shadow: inset 0 0 0 1px rgba(255,106,61,0.22);
            color: var(--primary-hover);
            transform: translateY(-1px);
        }

        .button-disabled {
            background-color: #d1d5db;
            color: #6b7280;
            cursor: not-allowed;
            box-shadow: none;
        }

        .alert-error {
            background: #fee2e2;
            border: 1px solid #fca5a5;
            color: #b91c1c;
            padding: 14px 16px;
            border-radius: 8px;
            margin: 14px 0 0 0;
            font-size: 0.95rem;
        }

        .form-control.invalid,
        .consent-group.invalid {
            outline: 2px solid #f87171;
            outline-offset: 2px;
        }

        .nav-toggle {
            display: none;
            width: 56px;
            height: 56px;
            min-width: 56px;
            min-height: 56px;
            border: none !important;
            background: transparent !important;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 !important;
            line-height: 0;
            overflow: visible !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            z-index: 1001;
            outline: none !important;
        }

        .menu-icon {
            width: 32px;
            height: 32px;
            overflow: visible;
        }

        .menu-icon .line {
            fill: none;
            stroke: var(--secondary);
            stroke-width: 2.5;
            stroke-linecap: round;
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform-origin: 12px 12px;
        }

        .nav-toggle.open .line1 {
            transform: rotate(45deg);
        }

        .nav-toggle.open .line2 {
            opacity: 0;
        }

        .nav-toggle.open .line3 {
            transform: rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
            padding: 24px;
            z-index: 999;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-links {
            list-style: none;
            display: grid;
            gap: 16px;
            margin-bottom: 18px;
        }

        .mobile-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1rem;
            padding: 12px 0;
            display: block;
        }

        .mobile-links a:hover {
            color: var(--primary);
        }

        .mobile-cta {
            width: 100%;
        }

        .hero {
            position: relative;
            padding: 100px 0 110px;
            background: linear-gradient(135deg, rgba(255,255,255,0.94) 0%, rgba(243,247,255,0.98) 100%);
            overflow: hidden;
        }

        .hero::before,
        .hero::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            filter: blur(50px);
            opacity: 0.55;
            pointer-events: none;
        }

        .hero::before {
            width: 360px;
            height: 360px;
            background: rgba(255,106,61,0.22);
            top: -90px;
            left: -80px;
        }

        .hero::after {
            width: 420px;
            height: 420px;
            background: rgba(59,109,255,0.18);
            bottom: -120px;
            right: -100px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 54px;
            align-items: center;
        }

        .hero-content {
            animation: fadeInUp 0.9s ease both;
        }

        .hero-image,
        .about-image {
            opacity: 0;
            transform: translateX(0);
        }

        .hero-image.in-view {
            animation: slideInFromRight 0.75s ease forwards;
        }

        .about-image.in-view {
            animation: slideInFromLeft 0.75s ease forwards;
        }

        .hero-content h1 {
            font-size: clamp(2.4rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1.05;
            color: var(--secondary);
            margin-bottom: 22px;
        }

        .hero-description {
            font-size: 1.08rem;
            color: var(--text-muted);
            margin-bottom: 28px;
            max-width: 680px;
        }

        .hero-bullets {
            list-style: none;
            margin-bottom: 36px;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .hero-bullets li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            color: var(--secondary);
        }

        .hero-bullets li::before {
            content: "✓";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            background: linear-gradient(135deg, var(--primary), #ff8a5a);
            color: white;
            border-radius: 50%;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .hero-image img {
            width: 100%;
            border-radius: 28px;
            box-shadow: var(--shadow-lg);
            object-fit: cover;
            transform: translateY(-6px);
        }

        .warning-box {
            background: var(--warning-bg);
            border-left: 4px solid var(--warning-border);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 24px;
        }

        .warning-box p:first-child {
            font-weight: 700;
            color: var(--warning-text);
            margin-bottom: 4px;
        }

        .warning-box p:last-child {
            font-size: 0.9rem;
            color: #78350f;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .hero-bullets {
            list-style: none;
            margin-bottom: 32px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .hero-bullets li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--secondary);
        }

        .hero-bullets li::before {
            content: "✓";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 50%;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .hero-image img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            object-fit: cover;
        }

        section {
            padding: 90px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .section-header h2 {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 16px;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -14px;
            width: 78px;
            height: 4px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(255,106,61,0.85), rgba(59,109,255,0.85));
            transform: translateX(-50%);
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .services-bg {
            background-color: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 28px;
        }

        .service-card {
            background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(243,247,255,0.95) 100%);
            padding: 34px 30px;
            border-radius: calc(var(--radius) + 4px);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(215,225,239,0.9);
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            top: -40px;
            right: -40px;
            background: rgba(255,106,61,0.10);
            pointer-events: none;
            transition: transform 0.35s ease, opacity 0.35s ease;
            opacity: 0;
            transform: scale(0.95);
        }

        .service-card:hover::after {
            opacity: 1;
            transform: scale(1.05);
        }

        .service-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(59,109,255,0.10), transparent 34%);
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-light), rgba(255,138,90,0.18));
            color: var(--primary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            margin-bottom: 22px;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .service-card:hover .service-icon {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 20px 36px rgba(59,109,255,0.12);
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .customer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .customer-card {
            background: var(--bg-card);
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .customer-card h2 {
            font-size: 1.75rem;
            color: var(--secondary);
            margin-bottom: 16px;
        }

        .customer-card p {
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .customer-card ul {
            list-style: none;
            margin-bottom: 32px;
        }

        .customer-card ul li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .customer-card ul li::before {
            content: "•";
            color: var(--primary);
            font-size: 1.5rem;
            line-height: 0;
        }

        .process-bg {
            background-color: var(--bg-light);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }

        .process-step {
            background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(243,247,255,0.96));
            padding: 34px 28px;
            border-radius: calc(var(--radius) + 4px);
            border: 1px solid rgba(215,225,239,0.9);
            text-align: center;
            position: relative;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }

        .process-step:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px rgba(15,23,42,0.08);
            border-color: var(--accent);
        }

        .prices-bg {
            background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
        }

        .prices-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            padding: 32px;
        }

        .price-intro {
            font-size: 1.05rem;
            color: var(--secondary);
            margin-bottom: 20px;
            text-align: center;
        }

        .price-list {
            display: grid;
            gap: 12px;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
            padding: 14px 16px;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            background: #fff;
        }

        .price-label {
            font-weight: 600;
            color: var(--secondary);
            flex: 1;
        }

        .price-inline {
            color: var(--text-muted);
            font-weight: 500;
            display: inline-block;
            margin-left: 6px;
        }

        .price-value {
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
            text-align: right;
        }

        .price-footnotes {
            margin-top: 20px;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .price-footnotes p {
            margin-bottom: 6px;
        }

        .price-notes {
            margin-top: 24px;
            display: grid;
            gap: 10px;
        }

        .price-note {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-dark);
        }

        .price-note::before {
            content: "•";
            color: var(--primary);
            font-weight: 700;
            font-size: 1.2rem;
            line-height: 1;
        }

        .step-number {
            width: 44px;
            height: 44px;
            background: var(--primary);
            color: white;
            font-weight: 800;
            font-size: 1.2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
        }

        .process-step h3 {
            font-size: 1.15rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .location-note {
            text-align: center;
            background: linear-gradient(135deg, rgba(255,106,61,0.08), rgba(59,109,255,0.08));
            border: 1px solid rgba(215,225,239,0.9);
            padding: 22px 24px;
            border-radius: calc(var(--radius) + 6px);
            font-size: 1.05rem;
            color: var(--secondary);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .info-box {
            background: var(--bg-light);
            padding: 24px;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
        }

        .info-box h3 {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 16px;
        }

        .info-item {
            margin-bottom: 12px;
        }

        .info-item label {
            display: block;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            font-weight: 600;
        }

        .info-item a, .info-item p {
            font-size: 1.05rem;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
        }

        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 18px;
        }

        .info-table th,
        .info-table td {
            padding: 12px 14px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        .info-table th {
            font-weight: 700;
            color: var(--secondary);
            background: rgba(217, 83, 30, 0.06);
        }

        .info-table tr:last-child td {
            border-bottom: none;
        }

        .info-item a:hover {
            color: var(--primary);
        }

        .contact-page-bg {
            background: linear-gradient(135deg, rgba(217,83,30,0.10), rgba(255,138,90,0.02));
            padding: 90px 0;
        }

        .contact-form {
            background: rgba(217,83,30,0.06);
            padding: 36px;
            border-radius: var(--radius);
            border: 1px solid rgba(217,83,30,0.24);
            box-shadow: 0 24px 50px rgba(217,83,30,0.10);
        }

        .contact-form h3 {
            color: #d9531e;
        }

        .contact-page-bg .form-group label,
        .contact-page-bg .info-box h3 {
            color: #b34110;
        }

        .contact-page-bg .form-control {
            background: rgba(255,255,255,0.96);
            border-color: rgba(217,83,30,0.25);
        }

        .contact-page-bg .form-control:focus {
            border-color: #d9531e;
            box-shadow: 0 0 0 3px rgba(217,83,30,0.15);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-group label .required {
            color: var(--primary);
            margin-left: 4px;
        }

        .form-group label .optional {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 0.85rem;
            margin-left: 6px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(217, 83, 30, 0.15);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .alert-success {
            display: none;
            background: #dcfce7;
            border: 1px solid #86efac;
            color: #166534;
            padding: 16px;
            border-radius: 8px;
            margin-top: 16px;
            font-size: 0.95rem;
        }

        .about-bg {
            background: var(--bg-light);
        }

        .legal-page {
            padding-top: 24px;
            padding-bottom: 48px;
        }

        .legal-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            padding: 32px;
        }

        .legal-card h2 {
            margin-top: 24px;
            margin-bottom: 12px;
            color: var(--secondary);
            font-size: 1.2rem;
        }

        .legal-card h2:first-of-type {
            margin-top: 0;
        }

        .legal-card h3 {
            margin-top: 20px;
            margin-bottom: 8px;
            color: var(--secondary);
            font-size: 1.05rem;
        }

        .legal-card p {
            margin-bottom: 12px;
            color: var(--text-dark);
            line-height: 1.7;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: calc(var(--radius) + 10px);
            box-shadow: var(--shadow-lg);
        }

        .about-features {
            margin-top: 28px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .about-feature {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .about-feature-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        footer {
            background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
            color: #a0aec0;
            padding: 70px 0 30px 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand p {
            margin-top: 18px;
            font-size: 0.98rem;
            max-width: 360px;
            line-height: 1.8;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.25s ease, transform 0.25s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(2px);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand .logo-text span:first-child {
            color: white;
        }

        .footer-brand .logo-text span:last-child {
            color: var(--primary);
        }

        .footer-brand p {
            margin-top: 16px;
            font-size: 0.95rem;
            max-width: 320px;
        }

        .footer-col h3 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #2d3748;
            padding-top: 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        @media (max-width: 900px) {
            .hero-grid, .customer-grid, .contact-grid, .about-grid, .footer-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .nav-toggle {
                display: flex;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

            .hero-content h1 {
                font-size: 2rem;
            }
        }

        @media (min-width: 901px) {
            .nav-toggle,
            .mobile-menu {
                display: none !important;
            }
        }
