/* ═══════════════════════════════════════════════════
   NEXUS HR — AWWWARDS-Level Design System
   ═══════════════════════════════════════════════════ */

/* ─── Reset & Base ───────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --c-bg: #0a0a0a;
    --c-bg-elevated: #111111;
    --c-bg-card: #161616;
    --c-text: #f5f5f0;
    --c-text-muted: #888888;
    --c-text-subtle: #555555;
    --c-accent: #c8ff00;
    --c-accent-dim: rgba(200, 255, 0, 0.15);
    --c-border: #222222;
    --c-border-light: #333333;

    --f-heading: 'Manrope', sans-serif;
    --f-body: 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --container: 1400px;
    --gutter: clamp(20px, 4vw, 80px);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
    scrollbar-color: var(--c-accent) var(--c-bg);
}

body {
    font-family: var(--f-body);
    background: var(--c-bg);
    color: var(--c-text);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

button {
    cursor: pointer;
}

input, textarea {
    cursor: text;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--c-accent);
    color: var(--c-bg);
}

::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--c-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--c-accent);
    border-radius: 2px;
}

/* ─── Custom Cursor ──────────────────────────────── */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--c-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-expo), 
                height 0.3s var(--ease-out-expo),
                background 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(200, 255, 0, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo),
                height 0.4s var(--ease-out-expo),
                border-color 0.3s,
                opacity 0.3s;
}

body:hover .cursor { opacity: 1; }
body:hover .cursor-follower { opacity: 1; }

.cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(200, 255, 0, 0.15);
    mix-blend-mode: normal;
}

.cursor-follower.hover {
    width: 80px;
    height: 80px;
    border-color: var(--c-accent);
}

/* ─── Preloader ──────────────────────────────────── */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--c-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), 
                visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    text-align: center;
    position: relative;
}

.preloader__line {
    width: 200px;
    height: 1px;
    background: var(--c-border);
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
}

.preloader__line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--c-accent);
    animation: preloaderLine 2s var(--ease-out-expo) forwards;
}

@keyframes preloaderLine {
    to { width: 100%; }
}

.preloader__text {
    display: block;
    font-family: var(--f-heading);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--c-text);
}

.preloader__counter {
    display: block;
    font-family: var(--f-heading);
    font-size: 1rem;
    color: var(--c-text-muted);
    margin-top: 20px;
    letter-spacing: 0.2em;
}

/* ─── Container ──────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: clamp(80px, 12vh, 160px) 0;
}

/* ─── Section Label ──────────────────────────────── */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-text-muted);
    margin-bottom: clamp(40px, 6vh, 80px);
    font-family: var(--f-body);
    font-weight: 500;
}

.section-label__num {
    color: var(--c-accent);
    font-family: var(--f-heading);
    font-weight: 600;
}

.section-label__line {
    width: 40px;
    height: 1px;
    background: var(--c-border-light);
}

/* ─── Header / Nav ───────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s, backdrop-filter 0.4s;
}

.header__topbar {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 8px 0;
    transition: height 0.4s, opacity 0.4s, padding 0.4s;
    overflow: hidden;
}

.header.scrolled .header__topbar {
    height: 0;
    opacity: 0;
    padding: 0;
    border: none;
}

.header__topbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--c-text-subtle);
}

.header__status {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.header__status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.header__topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__time {
    font-family: var(--f-heading);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.1em;
}

.header__divider {
    opacity: 0.3;
}

.header__location {
    text-transform: uppercase;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--c-border);
}

.nav {
    padding-top: 16px;
    padding-bottom: 16px;
}

.header.scrolled .nav {
    padding-top: 12px;
    padding-bottom: 12px;
}

.nav {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.4s;
}

.nav__logo {
    font-family: var(--f-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.nav__logo-icon {
    color: var(--c-accent);
    font-size: 0.8rem;
}

.nav__links {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--c-text-muted);
    transition: color 0.3s;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    height: 1.2em;
}

.nav__link::after {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--c-accent);
    transition: transform 0.3s var(--ease-out-expo);
}

.nav__link:hover {
    color: var(--c-text);
}

.nav__link:hover::after {
    transform: translateY(-100%);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 24px;
    border: 1px solid var(--c-border-light);
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
    letter-spacing: 0.02em;
    background: transparent;
    color: var(--c-text);
    font-family: var(--f-body);
}

.nav__cta:hover {
    background: var(--c-accent);
    color: var(--c-bg);
    border-color: var(--c-accent);
}

.nav__cta svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.nav__cta:hover svg {
    transform: translate(3px, -3px);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 10px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--c-text);
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
}

.nav__burger.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav__burger.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* ─── Mobile Menu ────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--c-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out-expo), 
                visibility 0.5s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-menu__link {
    font-family: var(--f-heading);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 600;
    color: var(--c-text);
    transition: color 0.3s;
    transform: translateY(40px);
    opacity: 0;
}

.mobile-menu.active .mobile-menu__link {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.6s var(--ease-out-expo),
                opacity 0.6s var(--ease-out-expo), color 0.3s;
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu__link:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu__link:hover {
    color: var(--c-accent);
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

.hero__content::before {
    content: '';
    position: absolute;
    left: -60px;
    top: -80px;
    width: 70%;
    height: calc(100% + 160px);
    background: radial-gradient(ellipse at 30% 50%, rgba(10, 10, 10, 0.7) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-text-muted);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero__tag-dot {
    width: 6px;
    height: 6px;
    background: var(--c-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
    font-family: var(--f-heading);
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 
        0 0 40px rgba(200, 255, 0, 0.08),
        0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__title-line {
    display: block;
}

.hero__title em {
    font-style: normal;
    color: #ffffff;
    position: relative;
    margin-left: 0.12em;
    text-shadow: none;
    text-decoration: underline;
    text-decoration-color: var(--c-accent);
    text-underline-offset: 0.08em;
    text-decoration-thickness: 3px;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #aaaaaa;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 50px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero__actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-text-muted);
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--c-accent), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 16px 36px;
    border: none;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--c-accent);
    color: var(--c-bg);
}

.btn--primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(200, 255, 0, 0.2);
}

.btn--primary svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.btn--primary:hover svg {
    transform: translate(3px, -3px);
}

.btn--ghost {
    background: transparent;
    color: var(--c-text);
    border: 1px solid var(--c-border-light);
}

.btn--ghost:hover {
    border-color: var(--c-text);
    background: rgba(255, 255, 255, 0.05);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ─── Marquee ────────────────────────────────────── */
.marquee {
    padding: 40px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    overflow: hidden;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 40px;
    font-family: var(--f-heading);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 500;
    white-space: nowrap;
    color: var(--c-text-subtle);
    padding-right: 40px;
}

.marquee__dot {
    color: var(--c-accent);
    font-size: 0.6em;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ─── About ──────────────────────────────────────── */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
}

.about__title {
    font-family: var(--f-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about__title em {
    font-style: normal;
    color: var(--c-accent);
}

.about__text {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.about__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--c-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--c-text-muted);
    transition: all 0.3s;
}

.badge__icon {
    color: var(--c-accent);
}

.badge:hover {
    border-color: var(--c-accent);
    color: var(--c-text);
}

/* ─── Services ───────────────────────────────────── */
.services__heading {
    font-family: var(--f-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: clamp(50px, 8vh, 100px);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.service-card {
    background: var(--c-bg-card);
    padding: clamp(30px, 4vw, 60px);
    position: relative;
    overflow: hidden;
    transition: background 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-accent-dim), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    background: var(--c-bg-elevated);
}

.service-card__num {
    font-family: var(--f-heading);
    font-size: 0.8rem;
    color: var(--c-accent);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.service-card__title {
    font-family: var(--f-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: auto;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.service-card__tags span {
    padding: 6px 14px;
    border: 1px solid var(--c-border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: border-color 0.3s, color 0.3s;
}

.service-card:hover .service-card__tags span {
    border-color: var(--c-border-light);
    color: var(--c-text);
}

.service-card__arrow {
    position: absolute;
    top: clamp(30px, 4vw, 60px);
    right: clamp(30px, 4vw, 60px);
    width: 50px;
    height: 50px;
    border: 1px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all 0.4s var(--ease-out-expo);
    z-index: 1;
}

.service-card:hover .service-card__arrow {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: var(--c-bg);
    transform: rotate(-45deg) scale(1.1);
}

/* ─── Stats ──────────────────────────────────────── */
.stats {
    background: var(--c-bg-elevated);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat {
    text-align: center;
    padding: clamp(40px, 6vh, 80px) 20px;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 30%;
    height: 40%;
    width: 1px;
    background: var(--c-border);
}

.stat__number {
    font-family: var(--f-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--c-accent);
    display: inline;
    letter-spacing: -0.03em;
}

.stat__suffix {
    font-family: var(--f-heading);
    font-size: clamp(1.2rem, 2vw, 2rem);
    color: var(--c-accent);
    font-weight: 400;
    margin-left: 4px;
}

.stat__label {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    font-weight: 400;
}

/* ─── Process ────────────────────────────────────── */
.process__heading {
    font-family: var(--f-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: clamp(50px, 8vh, 100px);
}

.process__timeline {
    display: grid;
    gap: 0;
}

.process__step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 60px;
    padding: clamp(30px, 5vh, 60px) 0;
    border-bottom: 1px solid var(--c-border);
    position: relative;
    align-items: start;
    transition: background 0.3s;
}

.process__step:first-child {
    border-top: 1px solid var(--c-border);
}

.process__step:hover {
    background: rgba(200, 255, 0, 0.02);
}

.process__step-num {
    font-family: var(--f-heading);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    color: var(--c-border-light);
    line-height: 1;
    transition: color 0.4s;
}

.process__step:hover .process__step-num {
    color: var(--c-accent);
}

.process__step-content h3 {
    font-family: var(--f-heading);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.process__step-content p {
    font-size: 1rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 600px;
    font-weight: 300;
}

/* ─── Testimonials ───────────────────────────────── */
.testimonials__heading {
    font-family: var(--f-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: clamp(50px, 8vh, 80px);
}

.testimonials__slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    padding: clamp(30px, 3vw, 50px);
    border-radius: 4px;
    transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
}

.testimonial:hover {
    border-color: var(--c-accent);
    transform: translateY(-8px);
}

.testimonial__quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--c-text);
    margin-bottom: 30px;
    font-weight: 300;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    background: var(--c-accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-accent);
}

.testimonial__name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.testimonial__role {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

/* ─── Clients ────────────────────────────────────── */
.clients {
    padding: clamp(60px, 8vh, 100px) 0;
}

.clients__label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-text-subtle);
    margin-bottom: 50px;
    font-weight: 500;
}

.clients__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid var(--c-border);
}

.clients__logo {
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-heading);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 600;
    color: var(--c-text-subtle);
    letter-spacing: 0.05em;
    border-right: 1px solid var(--c-border);
    transition: color 0.3s, background 0.3s;
}

.clients__logo:last-child {
    border-right: none;
}

.clients__logo:hover {
    color: var(--c-text);
    background: rgba(200, 255, 0, 0.03);
}

/* ─── Contact ────────────────────────────────────── */
.contact {
    background: var(--c-bg-elevated);
    border-top: 1px solid var(--c-border);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 10vw, 160px);
    align-items: start;
}

.contact__title {
    font-family: var(--f-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.contact__title em {
    font-style: normal;
    color: var(--c-accent);
}

.contact__text {
    font-size: 1rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact__link {
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.contact__link:hover {
    color: var(--c-accent);
}

.contact__address {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-top: 8px;
    font-weight: 300;
}

/* ─── Form ───────────────────────────────────────── */
.form-group {
    position: relative;
    margin-bottom: 36px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--c-border);
    padding: 16px 0;
    font-family: var(--f-body);
    font-size: 1rem;
    color: var(--c-text);
    outline: none;
    transition: border-color 0.3s;
    font-weight: 300;
}

.form-input:focus {
    border-color: var(--c-accent);
}

.form-label {
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 1rem;
    color: var(--c-text-muted);
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
    font-weight: 300;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -8px;
    font-size: 0.75rem;
    color: var(--c-accent);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--c-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.form-input:focus ~ .form-line {
    width: 100%;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
    padding: clamp(60px, 8vh, 100px) 0 30px;
    border-top: 1px solid var(--c-border);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--c-border);
}

.footer__desc {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-top: 16px;
    line-height: 1.6;
    font-weight: 300;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__col h4 {
    font-family: var(--f-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer__col a {
    display: block;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 12px;
    transition: color 0.3s;
    font-weight: 300;
}

.footer__col a:hover {
    color: var(--c-accent);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 0.8rem;
    color: var(--c-text-subtle);
}

.footer__bottom a {
    transition: color 0.3s;
}

.footer__bottom a:hover {
    color: var(--c-accent);
}

/* ─── Modal ──────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal__container {
    position: relative;
    background: var(--c-bg-elevated);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(30px, 5vw, 50px);
    transform: translateY(40px) scale(0.96);
    transition: transform 0.5s var(--ease-out-expo);
}

.modal.active .modal__container {
    transform: translateY(0) scale(1);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
}

.modal__title {
    font-family: var(--f-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.modal__title em {
    font-style: normal;
    color: var(--c-accent);
}

.modal__subtitle {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-top: 8px;
    font-weight: 300;
}

.modal__close {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--c-border);
    border-radius: 50%;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.modal__close:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    transform: rotate(90deg);
}

.modal__form .form-group {
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
    font-size: 0.8rem;
    color: var(--c-text-muted);
    flex-wrap: wrap;
}

.modal__footer a {
    transition: color 0.3s;
}

.modal__footer a:hover {
    color: var(--c-accent);
}

.modal__footer-dot {
    color: var(--c-border-light);
}

/* ─── Mobile Touch Hint ──────────────────────────── */
.touch-hint {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: opacity 0.5s;
}

.touch-hint span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-text-muted);
}

.touch-hint__ripple {
    width: 50px;
    height: 50px;
    border: 1px solid var(--c-accent);
    border-radius: 50%;
    animation: touchRipple 2s infinite;
}

@keyframes touchRipple {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ─── Reveal Animations ──────────────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .header__topbar { display: none; }
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .services__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2)::after { display: none; }
    .stat { padding: 30px 20px; }
    .testimonials__slider { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; }
    .clients__grid { grid-template-columns: repeat(3, 1fr); }
    .clients__logo:nth-child(3) { border-right: none; }
    .process__step { grid-template-columns: 60px 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        padding-top: 80px;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: calc(100svh - 80px);
        padding-bottom: 100px;
    }

    .hero__content::before {
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(10, 10, 10, 0.6) 60%);
    }

    .hero__title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    #heroCanvas {
        opacity: 0.85;
    }
}

@media (max-width: 640px) {
    .stats__grid { grid-template-columns: 1fr 1fr; }
    .stat::after { display: none !important; }
    .clients__grid { grid-template-columns: repeat(2, 1fr); }
    .clients__logo:nth-child(even) { border-right: none; }
    .clients__logo:nth-child(odd) { border-right: 1px solid var(--c-border); }
    .footer__nav { grid-template-columns: 1fr; gap: 30px; }
    .footer__bottom { flex-direction: column; gap: 8px; }
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .cursor, .cursor-follower { display: none !important; }
    body { cursor: auto; }
    a, button, input, textarea { cursor: auto; }
    .process__step { grid-template-columns: 1fr; gap: 12px; }
    .process__step-num { font-size: 2rem; }
    .service-card { min-height: auto; }
}

