
        /* â”€â”€ RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        img {
            display: block;
            max-width: 100%;
        }

        /* â”€â”€ TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        :root {
            --c-sand: #c6af87;
            --c-accent: #23272c;
            --c-dark: #111315;
            --c-panel: #191c1f;
            --c-ivory: #eaded0;
            --c-white: #ffffff;
            --c-muted: rgba(255, 255, 255, .5);
            --c-line: rgba(255, 255, 255, .1);
            --radius: 10px;
            --font: 'Outfit', system-ui, sans-serif;
            --max: 1200px;
            --nav-h: 72px;
        }

        body {
            font-family: var(--font);
            background: var(--c-dark);
            color: var(--c-white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        html,
        body {
            overflow-x: hidden;
        }


        /* â”€â”€ WATERMARK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .bg-watermark {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            height: 210vh;
            min-height: 210vh;
            width: auto;
            min-width: 210vw;
            z-index: -1;
            opacity: 0.04;
            pointer-events: none;
        }

        .bg-watermark img {
            height: 100%;
            width: auto;
            max-width: none;
            display: block;
            object-fit: contain;
        }

        /* â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        #nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--nav-h);
            z-index: 100;
            display: flex;
            align-items: center;
            padding: 0 clamp(1.5rem, 5vw, 4rem);
            transition: background .35s, border-color .35s;
            border-bottom: 1px solid transparent;
        }

        #nav.bg {
            background: rgba(17, 19, 21, .94);
            backdrop-filter: blur(14px);
            border-color: var(--c-line);
        }

        .nav-inner {
            width: 100%;
            max-width: var(--max);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0;
            text-decoration: none;
        }

        .nav-brand img {
            height: 96px;
            width: auto;
        }

        .nav-brand-name {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--c-white);
            letter-spacing: -.02em;
            margin-left: -20px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-menu a {
            font-size: .875rem;
            font-weight: 400;
            color: var(--c-muted);
            text-decoration: none;
            transition: color .2s;
        }

        .nav-menu a:hover {
            color: var(--c-white);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            font-family: var(--font);
            font-weight: 600;
            font-size: .875rem;
            text-decoration: none;
            border-radius: 8px;
            padding: .6rem 1.5rem;
            transition: opacity .18s, transform .18s;
            line-height: 1;
        }

        .btn:hover {
            opacity: .85;
            transform: translateY(-1px);
        }

        .btn-primary {
            background: var(--c-sand);
            color: #111;
        }

        .btn-outline {
            border: 1px solid var(--c-line);
            color: var(--c-white);
        }

        .btn-outline:hover {
            border-color: var(--c-sand);
            color: var(--c-sand);
        }

        /* hamburger */
        .ham {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .ham span {
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            display: block;
            transition: transform .3s, opacity .3s;
        }

        /* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        #hero {
            display: flex;
            align-items: center;
            padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 5vw, 4rem) 5rem;
        }

        .hero-inner {
            width: 100%;
            max-width: var(--max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {}

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            font-size: .75rem;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--c-sand);
            border: 1px solid rgba(198, 175, 135, .3);
            padding: .35rem .9rem;
            border-radius: 100px;
            margin-bottom: 1.75rem;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--c-sand);
            flex-shrink: 0;
        }

        h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -.03em;
            margin-bottom: 1.4rem;
        }

        h1 .accent {
            color: var(--c-sand);
        }

        .hero-sub {
            font-size: 1.05rem;
            line-height: 1.75;
            color: var(--c-muted);
            font-weight: 300;
            max-width: 480px;
            margin-bottom: 2.5rem;
        }

        .hero-btns {
            display: flex;
            gap: .75rem;
            flex-wrap: wrap;
        }

        .hero-btns .btn {
            padding: .8rem 1.8rem;
            font-size: .95rem;
        }

        /* Hero visual */
        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: floatSlow 6s ease-in-out infinite;
        }
        @keyframes floatSlow {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .hero-card {
            background: var(--c-panel);
            border: 1px solid var(--c-line);
            border-radius: 20px;
            padding: 2.5rem;
            width: 100%;
            max-width: 420px;
            position: relative;
        }

        .hero-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

        .hc-logo {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .hc-logo img {
            height: 42px;
            width: auto;
        }

        .hc-logo span {
            font-weight: 700;
            font-size: 1.35rem;
            margin-left: -8px;
        }

        .hc-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
        }

        .hc-metric {
            display: flex;
            flex-direction: column;
            gap: .25rem;
            margin-bottom: 1.5rem;
        }

        .hc-metric-label {
            font-size: .7rem;
            font-weight: 500;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: var(--c-muted);
        }

        .hc-metric-val {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -.04em;
            color: var(--c-sand);
            line-height: 1;
        }

        .hc-metric-sub {
            font-size: .85rem;
            color: var(--c-muted);
            font-weight: 300;
        }

        .hc-bars {
            display: flex;
            flex-direction: column;
            gap: .6rem;
            margin-bottom: 1.5rem;
        }

        .hc-bar-row {
            display: flex;
            align-items: center;
            gap: .75rem;
        }

        .hc-bar-label {
            font-size: .78rem;
            color: var(--c-muted);
            min-width: 80px;
        }

        .hc-bar-track {
            flex: 1;
            height: 5px;
            background: rgba(255, 255, 255, .08);
            border-radius: 100px;
            overflow: hidden;
        }

        .hc-bar-fill {
            height: 100%;
            border-radius: 100px;
            background: var(--c-sand);
        }

        .hc-bar-val {
            font-size: .75rem;
            font-weight: 600;
            color: var(--c-white);
            min-width: 30px;
            text-align: right;
        }

        .hc-tags {
            display: flex;
            gap: .5rem;
            flex-wrap: wrap;
        }

        .hc-tag {
            font-size: .7rem;
            font-weight: 600;
            letter-spacing: .04em;
            border: 1px solid var(--c-line);
            color: var(--c-muted);
            padding: .25rem .65rem;
            border-radius: 100px;
        }

        /* floating badge */
        .hc-float {
            position: absolute;
            bottom: -16px;
            left: -20px;
            background: var(--c-panel);
            border: 1px solid rgba(198, 175, 135, .4);
            border-radius: 12px;
            padding: .8rem 1.1rem;
            display: flex;
            align-items: center;
            gap: .6rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
        }

        .hc-float-num {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--c-sand);
        }

        .hc-float-txt {
            font-size: .7rem;
            line-height: 1.3;
            max-width: 70px;
            font-weight: 400;
        }

        /* â”€â”€ STATS ROW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .stats-row {
            border-top: 1px solid var(--c-line);
            border-bottom: 1px solid var(--c-line);
            padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
        }

        .stats-inner {
            max-width: var(--max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .stat {
            padding: .5rem 1rem;
            border-right: 1px solid var(--c-line);
        }

        .stat:last-child {
            border-right: none;
        }

        .stat-n {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--c-sand);
            letter-spacing: -.03em;
            line-height: 1;
        }

        .stat-l {
            font-size: .825rem;
            color: var(--c-muted);
            margin-top: .3rem;
            font-weight: 300;
        }

        /* â”€â”€ SECTION SHARED â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .section {
            padding: 6rem clamp(1.5rem, 5vw, 4rem);
        }

        .section-inner {
            max-width: var(--max);
            margin: 0 auto;
        }

        .section-eyebrow {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--c-sand);
            display: flex;
            align-items: center;
            gap: .6rem;
            margin-bottom: 1rem;
        }

        .section-eyebrow::before {
            content: '';
            width: 20px;
            height: 1px;
            background: var(--c-sand);
        }

        h2 {
            font-size: clamp(2.2rem, 4.5vw, 3.8rem);
            font-weight: 800;
            letter-spacing: -.03em;
            line-height: 1.15;
        }

        h2 .accent {
            color: var(--c-sand);
        }

        .section-sub {
            font-size: 1rem;
            color: var(--c-muted);
            font-weight: 300;
            line-height: 1.75;
            max-width: 540px;
            margin-top: .9rem;
        }

        /* â”€â”€ SERVICES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        #services {
            background: var(--c-panel);
        }

        .svc-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: end;
            margin-bottom: 4rem;
        }

        .svc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            border-radius: var(--radius);
        }

        .svc-card {
            background: rgba(17, 19, 21, 0.6);
            backdrop-filter: blur(10px);
            padding: 2.5rem 2.25rem;
            transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), background .4s ease, box-shadow .4s ease, border-color .4s ease;
            border-radius: var(--radius);
            border: 1px solid var(--c-line);
        }

        .svc-card:hover {
            background: rgba(31, 35, 38, 0.8);
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
            border-color: rgba(198, 175, 135, 0.3);
        }

        .svc-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(198, 175, 135, .12);
            display: grid;
            place-items: center;
            margin-bottom: 1.25rem;
            font-size: 1.2rem;
        }

        .svc-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: .6rem;
            letter-spacing: -.01em;
            color: rgba(255, 255, 255, .7);
        }

        .svc-card p {
            font-size: .875rem;
            color: var(--c-muted);
            line-height: 1.65;
            font-weight: 300;
        }

        /* â”€â”€ APPROACH â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */


        .approach-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }



        .approach-left h2 {
            margin-bottom: 1rem;
        }

        .approach-left .section-sub {
            margin-bottom: 2rem;
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 3rem;
        }

        .step {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--c-line);
        }

        .step:first-child {
            border-top: 1px solid var(--c-line);
        }

        .step-num {
            font-size: .84rem;
            font-weight: 700;
            letter-spacing: .1em;
            color: var(--c-blue);
            min-width: 48px;
            padding-top: .15rem;
        }

        .step-body h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: .4rem;
        }

        .step-body p {
            font-size: .875rem;
            color: var(--c-muted);
            line-height: 1.65;
            font-weight: 300;
        }



        .promise-box {
            background: var(--c-panel);
            border: 1px solid var(--c-line);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 1.5rem;
            position: sticky;
            top: 6rem;
        }

        .promise-box h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
        }

        .promise-list {
            display: flex;
            flex-direction: column;
            gap: .75rem;
            list-style: none;
        }

        .promise-list li {
            display: flex;
            align-items: flex-start;
            gap: .75rem;
            font-size: .9rem;
            color: var(--c-muted);
            font-weight: 300;
            line-height: 1.5;
        }

        .promise-list li::before {
            content: '✓';
            color: var(--c-sand);
            font-weight: 700;
            font-size: .85rem;
            flex-shrink: 0;
            margin-top: .05rem;
        }

        /* ── CTA BANNER ─────────────── */
        #cta {
            background: var(--c-accent);
            padding: 5rem clamp(1.5rem, 5vw, 4rem);
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--c-line);
            border-bottom: 1px solid var(--c-line);
        }

        .cta-inner {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        #cta .section-eyebrow {
            justify-content: center;
            color: var(--c-sand);
        }

        #cta .section-eyebrow::before {
            background: var(--c-sand);
        }

        #cta h2 {
            font-size: clamp(1.65rem, 3.5vw, 2.75rem);
            margin: .75rem 0 1rem;
        }

        #cta p {
            font-size: 1rem;
            color: rgba(255, 255, 255, .7);
            font-weight: 300;
            margin-bottom: 2rem;
        }

        #cta .btn-primary {
            background: var(--c-sand);
            color: #111;
            font-size: 1rem;
            padding: .9rem 2.2rem;
        }

        #cta .btn-primary:hover {
            opacity: .9;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(198, 175, 135, .2);
        }

        /* ── ABOUT ────────────────────────── */
        #about {
            background: var(--c-panel);
        }

        .about-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-visual {
            border-radius: 16px;
            background: rgba(198, 175, 135, .05);
            border: 1px solid rgba(198, 175, 135, .15);
            padding: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 4/3;
        }

        .about-visual img {
            width: 40%;
            opacity: .6;
            mix-blend-mode: luminosity;
        }

        .about-text h2 {
            margin-bottom: 1rem;
        }

        .about-text .section-sub {
            margin-bottom: 2rem;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
        }

        .tag {
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .06em;
            text-transform: uppercase;
            border: 1px solid rgba(198, 175, 135, .3);
            color: var(--c-sand);
            padding: .3rem .85rem;
            border-radius: 6px;
        }

        /* ── CONTACT ───────────────────── */


        .contact-inner {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-left h2 {
            margin-bottom: 1rem;
        }

        .contact-left .section-sub {
            margin-bottom: 2rem;
        }

        .contact-detail {
            font-size: .9rem;
            color: var(--c-muted);
            display: flex;
            flex-direction: column;
            gap: .4rem;
        }

        .contact-detail a {
            color: var(--c-sand);
            text-decoration: none;
        }

        .contact-detail a:hover {
            text-decoration: underline;
        }

        .form {
            display: flex;
            flex-direction: column;
            gap: .85rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .85rem;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: .35rem;
        }

        .form-field label {
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .35);
        }

        .form-field input,
        .form-field textarea {
            background: var(--c-panel);
            border: 1px solid var(--c-line);
            border-radius: var(--radius);
            padding: .8rem 1rem;
            color: var(--c-white);
            font-family: var(--font);
            font-size: .95rem;
            outline: none;
            width: 100%;
            transition: border-color .2s;
            appearance: none;
            -webkit-appearance: none;
        }

        .form-field input:focus,
        .form-field textarea:focus {
            border-color: var(--c-sand);
        }

        .form-field input::placeholder,
        .form-field textarea::placeholder {
            color: rgba(255, 255, 255, .2);
        }

        .form-field textarea {
            resize: vertical;
            min-height: 110px;
        }

        .form .btn {
            align-self: flex-start;
            padding: .85rem 2rem;
            font-size: .95rem;
        }

        /* ── FOOTER ────────────────────────── */
        footer {
            border-top: 1px solid var(--c-line);
            padding: 2rem clamp(1.5rem, 5vw, 4rem);
        }

        .foot-inner {
            max-width: var(--max);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .foot-brand {
            display: flex;
            align-items: center;
            gap: 0;
            text-decoration: none;
        }

        .foot-brand img {
            height: 56px;
            width: auto;
            opacity: .8;
        }

        .foot-brand span {
            font-weight: 700;
            font-size: 1.3rem;
            color: #fff;
            margin-left: -12px;
        }

        footer p {
            font-size: .78rem;
            color: rgba(255, 255, 255, .3);
        }

        .foot-links {
            display: flex;
            gap: 1.5rem;
        }

        .foot-links a {
            font-size: .78rem;
            color: rgba(255, 255, 255, .3);
            text-decoration: none;
            transition: color .2s;
        }

        .foot-links a:hover {
            color: var(--c-sand);
        }

        /* ── MOBILE DRAWER ─────────── */
        #drawer {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--c-dark);
            z-index: 99;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        #drawer.open {
            display: flex;
        }

        #drawer a {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            transition: color .2s;
        }

        #drawer a:hover {
            color: var(--c-sand);
        }

        #drawer .btn {
            font-size: 1rem;
        }

        .drawer-close {
            position: absolute;
            top: 1.25rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            line-height: 1;
        }

        /* ── SCROLL ANIMATION ─────────── */
        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .fade-up.in {
            opacity: 1;
            transform: none;
        }

        /* ── TECH STACK MARQUEE ──────── */
        .tech-marquee {
            overflow: hidden;
            white-space: nowrap;
            padding: 2rem 0;
            border-top: 1px solid var(--c-line);
            border-bottom: 1px solid var(--c-line);
            background: rgba(17, 19, 21, .5);
        }
        .marquee-inner {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 30s linear infinite;
        }
        .marquee-inner span {
            font-size: 1.25rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .2);
            margin: 0 2rem;
            letter-spacing: .05em;
            text-transform: uppercase;
        }
        .marquee-inner span:nth-child(even) {
            color: var(--c-sand);
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ── STAGGERED FADE-UP ──────── */
        .stat:nth-child(1) { transition-delay: 0.05s; }
        .stat:nth-child(2) { transition-delay: 0.15s; }
        .stat:nth-child(3) { transition-delay: 0.25s; }
        .stat:nth-child(4) { transition-delay: 0.35s; }
        
        .svc-card:nth-child(1) { transition-delay: 0.05s; }
        .svc-card:nth-child(2) { transition-delay: 0.1s; }
        .svc-card:nth-child(3) { transition-delay: 0.15s; }
        .svc-card:nth-child(4) { transition-delay: 0.2s; }
        .svc-card:nth-child(5) { transition-delay: 0.25s; }
        .svc-card:nth-child(6) { transition-delay: 0.3s; }
        .svc-card:nth-child(7) { transition-delay: 0.35s; }
        .svc-card:nth-child(8) { transition-delay: 0.4s; }
        .svc-card:nth-child(9) { transition-delay: 0.45s; }
        
        .step:nth-child(1) { transition-delay: 0.05s; }
        .step:nth-child(2) { transition-delay: 0.15s; }
        .step:nth-child(3) { transition-delay: 0.25s; }
        .step:nth-child(4) { transition-delay: 0.35s; }


        /* ── RESPONSIVE ──────────────── */
        @media (max-width: 900px) {

            .nav-menu,
            .nav-actions .btn-outline {
                display: none;
            }

            .ham {
                display: flex;
            }
        }

        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-visual {
                justify-content: flex-start;
            }

            .hero-card {
                max-width: 100%;
            }

            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
            }

            .svc-header {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 2.5rem;
            }

            .svc-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .approach-inner {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .promise-box {
                position: static;
            }

            .about-inner {
                grid-template-columns: 1fr;
            }

            .about-visual {
                aspect-ratio: 3/2;
            }

            .contact-inner {
                grid-template-columns: 1fr;
            }

            .group-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1.5rem !important;
            }

            .foot-top {
                flex-direction: column;
                gap: 2rem;
            }

            .foot-addresses {
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {

            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            .hero-btns .btn {
                flex: 1;
                justify-content: center;
            }

            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat {
                border-right: none;
                border-bottom: 1px solid var(--c-line);
                padding: 1rem 0;
            }

            .stat:nth-child(even) {
                padding-left: 1rem;
            }

            .stat:last-child,
            .stat:nth-last-child(2):nth-child(odd) {
                border-bottom: none;
            }

            .svc-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .group-grid {
                grid-template-columns: 1fr !important;
                gap: 1rem !important;
            }

            .section {
                padding: 4rem clamp(1rem, 4vw, 2rem);
            }

            .foot-brand img {
                height: 80px;
            }

            .foot-brand span {
                font-size: 1.4rem;
                margin-left: -14px;
            }

            .foot-addresses {
                flex-direction: column;
                gap: 1.5rem;
            }

            .foot-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
    







/* Language Text Toggle */
.lang-text-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--f-sans);
    margin-left: 0.5rem;
    letter-spacing: 1px;
}
.lang-txt-btn {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color var(--trans);
    text-transform: uppercase;
}
.lang-txt-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}
.lang-txt-btn.active {
    color: var(--c-sand);
}
.lang-sep {
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
    user-select: none;
}
#drawer .lang-text-toggle {
    margin: 1.5rem 2rem 0;
    align-self: flex-start;
}
