        :root {
            --bg: #050608;
            --surface: #0e1116;
            --border: rgba(255, 255, 255, 0.05);
            --accent: #ff6b1a;
            --text: #ffffff;
            --muted2: #a4b1c5;
            --glass: rgba(14, 17, 22, 0.7);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Be Vietnam Pro', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: .4;
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 0 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            background: var(--glass);
            backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
        }

        .logo span {
            color: var(--accent);
        }

        .page-header {
            padding: 160px 80px 60px;
            text-align: center;
        }

        .page-header h1 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            letter-spacing: -1.5px;
        }

        .page-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 40px 100px;
            color: var(--muted2);
        }

        .page-content h2 {
            color: var(--text);
            margin: 40px 0 20px;
            font-size: 24px;
        }

        .page-content p {
            margin-bottom: 20px;
        }

        /* ─── FOOTER REDESIGN ─── */
        footer {
            background: var(--surface);
            border-top: 1px solid var(--border);
            padding: 100px 0 0;
            position: relative;
            z-index: 10;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 80px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 60px;
            margin-bottom: 80px;
            text-align: left;
        }

        .footer-col h4 {
            color: var(--text);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 30px;
            height: 2px;
            background: var(--accent);
        }

        .footer-logo {
            font-weight: 800;
            font-size: 26px;
            letter-spacing: -1px;
            margin-bottom: 24px;
            display: block;
            text-decoration: none;
            color: white;
        }

        .footer-logo span {
            color: var(--accent);
        }

        .brand-desc {
            color: var(--muted2);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--surface2);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted2);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 700;
            font-size: 12px;
        }

        .social-link:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--muted2);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            gap: 12px;
            color: var(--muted2);
            font-size: 15px;
        }

        .contact-icon {
            color: var(--accent);
        }

        .footer-legal {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-legal a {
            color: var(--muted);
            font-size: 13px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 30px 0;
            border-top: 1px solid var(--border);
        }

        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--muted);
            font-size: 14px;
        }

        .back-to-top {
            color: var(--muted2);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .back-to-top:hover {
            color: var(--accent);
        }

        .floating-call {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            z-index: 1001;
            box-shadow: 0 8px 32px rgba(255, 107, 26, 0.4);
            animation: pulse-orange 2s infinite;
        }

        @keyframes pulse-orange {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.7);
            }

            70% {
                box-shadow: 0 0 0 20px rgba(255, 107, 26, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 26, 0);
            }
        }

        .mobile-bottom-nav {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            height: 72px;
            background: rgba(14, 17, 22, 0.85);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            display: none;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--muted2);
            text-decoration: none;
            gap: 4px;
            flex: 1;
        }

        .nav-item svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

        .nav-item span {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
        }

        @media (max-width: 1024px) {

            nav,
            .page-header {
                padding-left: 40px;
                padding-right: 40px;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
                padding: 0 40px;
            }

            .footer-bottom-container {
                padding: 0 40px;
            }
        }

        @media (max-width: 640px) {

            nav,
            .page-header {
                padding-left: 24px;
                padding-right: 24px;
            }

            .mobile-bottom-nav {
                display: flex;
            }

            .floating-call {
                bottom: 110px;
                right: 20px;
                width: 52px;
                height: 52px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                padding: 0 24px;
                gap: 48px;
            }

            .footer-bottom-container {
                padding: 0 24px;
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            footer {
                padding-top: 60px;
            }
        }
