/* ===========================
   v3 — Dynamic & Animated
   =========================== */
:root {
    --bg: #0a0a0a;
    --bg-alt: #0f0f0f;
    --text: #e8e8e8;
    --text-dim: #6a6a6a;
    --text-muted: #333333;
    --accent: #c8ff00;
    --accent-dim: rgba(200, 255, 0, 0.1);
    --border: #1a1a1a;
    --border-hover: #2a2a2a;

    --font-display: 'Playfair Display', serif;
    --font-script: 'Marck Script', cursive;
    --font-body: 'Space Grotesk', sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

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

a, button { text-decoration: none; color: inherit; cursor: none; }
ul, ol { list-style: none; }
button { border: none; background: none; font-family: inherit; color: inherit; }

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

/* ===========================
   Preloader
   =========================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.preloader.done {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.preloader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.preloader__text-wrap {
    position: relative;
    overflow: hidden;
}

.preloader__text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--border-hover);
    display: block;
    line-height: 1;
    -webkit-text-stroke: 1px var(--border-hover);
}

.preloader__text--fill {
    position: absolute;
    inset: 0;
    color: var(--accent);
    -webkit-text-stroke: 0;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.1s linear;
}

.preloader__counter {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.preloader__percent {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-dim);
    min-width: 3ch;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.preloader__percent-sign {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-dim);
    font-weight: 300;
}

/* ===========================
   Custom Cursor
   =========================== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none;
}

.cursor__dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: -3px;
    transition: transform 0.15s var(--ease), opacity 0.2s;
}

.cursor__ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    top: -22px;
    left: -22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px) saturate(1.4);
    -webkit-backdrop-filter: blur(6px) saturate(1.4);
    transition: all 0.3s var(--ease-smooth);
    box-shadow:
        inset 0 0 8px rgba(255, 255, 255, 0.06),
        0 0 12px rgba(0, 0, 0, 0.15);
}

.cursor--hover .cursor__ring {
    transform: scale(2);
    border-color: rgba(200, 255, 0, 0.25);
    background: rgba(200, 255, 0, 0.04);
    backdrop-filter: blur(10px) saturate(1.6);
    -webkit-backdrop-filter: blur(10px) saturate(1.6);
    box-shadow:
        inset 0 0 12px rgba(200, 255, 0, 0.08),
        0 0 20px rgba(0, 0, 0, 0.2);
}

.cursor--hover .cursor__dot {
    opacity: 0;
    transform: scale(0);
}

/* ===========================
   Grain
   =========================== */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
    animation: grain-shift 0.5s steps(3) infinite;
}

@keyframes grain-shift {
    0% { transform: translate(0,0); }
    33% { transform: translate(-2px, 1px); }
    66% { transform: translate(1px, -1px); }
    100% { transform: translate(0,0); }
}

/* ===========================
   Section Orbs (per-section)
   =========================== */
.section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    animation: orb-drift 14s ease-in-out infinite;
}

.section { overflow: hidden; }

/* Expertise — acid green + warm orange */
.section__orb--expertise-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.1;
    top: -150px;
    right: -100px;
}

.section__orb--expertise-2 {
    width: 350px;
    height: 350px;
    background: #ff6b35;
    opacity: 0.08;
    bottom: -100px;
    left: -80px;
    animation-delay: 4s;
}

/* Process — electric blue + purple */
.section__orb--process-1 {
    width: 450px;
    height: 450px;
    background: #00d4ff;
    opacity: 0.1;
    top: -100px;
    left: -120px;
    animation-delay: 2s;
}

.section__orb--process-2 {
    width: 350px;
    height: 350px;
    background: #a855f7;
    opacity: 0.08;
    bottom: -80px;
    right: -60px;
    animation-delay: 5s;
}

/* FAQ — teal */
.section__orb--faq-1 {
    width: 400px;
    height: 400px;
    background: #14b8a6;
    opacity: 0.08;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    animation-delay: 3s;
}

/* Contact — warm pink + gold */
.section__orb--contact-1 {
    width: 500px;
    height: 500px;
    background: #f43f5e;
    opacity: 0.08;
    top: -120px;
    left: -120px;
    animation-delay: 1s;
}

.section__orb--contact-2 {
    width: 350px;
    height: 350px;
    background: #f59e0b;
    opacity: 0.06;
    bottom: -80px;
    right: -80px;
    animation-delay: 6s;
}

@keyframes orb-drift {
    0%,100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.08); }
    50% { transform: translate(-20px, 35px) scale(0.92); }
    75% { transform: translate(30px, 15px) scale(1.04); }
}

/* ===========================
   Utilities
   =========================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.slash {
    font-family: var(--font-script);
    color: var(--accent);
    font-weight: 400;
}

.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section__header { margin-bottom: 50px; }

.section__index {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.2em;
    margin-bottom: -15px;
    text-transform: uppercase;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    overflow: hidden;
}

.section__subtitle {
    display: block;
    font-family: var(--font-script);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-top: 0;
    opacity: 0.85;
    position: relative;
    top: -25px;
    z-index: 2;
}

.split-line {
    display: block;
    overflow: hidden;
}

/* ===========================
   Reveal Animation
   =========================== */
.reveal-text {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 1s var(--ease), opacity 0.8s var(--ease);
}

.reveal-text.visible {
    transform: translateY(0);
    opacity: 1;
}

/* ===========================
   Navigation
   =========================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 0;
    mix-blend-mode: difference;
}

.nav__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    display: inline-block;
}

.nav__logo-slash { color: var(--accent); }

.nav__right { display: flex; align-items: center; gap: 28px; }

.nav__status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
    opacity: 0.7;
}

.nav__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(200, 255, 0, 0); }
}

.nav__burger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.2) !important;
    transition: all 0.4s var(--ease);
    color: #fff;
}

.nav__burger-text {
    font-size: 0.6875rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.nav__burger-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
}

.nav__burger-lines span {
    display: block;
    height: 1.5px;
    background: #fff;
    transition: all 0.4s var(--ease);
    transform-origin: center;
}

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

.nav__burger:hover {
    background: #fff;
    color: #000;
}

.nav__burger:hover .nav__burger-lines span { background: #000; }

/* ===========================
   Menu Overlay
   =========================== */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: circle(0% at calc(100% - 80px) 40px);
    transition: clip-path 0.8s var(--ease);
}

.menu-overlay.active {
    clip-path: circle(150% at calc(100% - 80px) 40px);
}

.menu-overlay__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.menu-overlay__link {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-muted);
    transition: all 0.4s var(--ease);
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 20px;
}

.menu-overlay__link::before {
    content: attr(data-index);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-overlay__link:hover {
    color: var(--text);
    transform: translateX(20px);
}

.menu-overlay__link:hover .menu-overlay__link-text {
    text-shadow: -2px 0 var(--accent), 2px 0 #ff6b35;
}

.menu-overlay__footer {
    position: absolute;
    bottom: 48px;
    display: flex;
    gap: 40px;
}

.menu-overlay__footer a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    transition: color 0.3s;
}

.menu-overlay__footer a:hover { color: var(--accent); }

/* ===========================
   Hero
   =========================== */
.hero {
    min-height: calc(100vh - 52px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding: 0 40px 60px;
    z-index: 1;
    overflow: hidden;
}

.hero__bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.3;
    pointer-events: none;
}

.hero__video-blur {
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%),
                linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%);
}

.hero__content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero__top-line {
    margin-bottom: 32px;
}

.hero__label {
    font-family: var(--font-script);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.hero__name { margin-bottom: 48px; overflow: hidden; }

.hero__name-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.88;
    letter-spacing: -0.04em;
    font-size: clamp(3rem, 10vw, 8rem);
    overflow: hidden;
}

.hero__name-line--2 {
    margin-left: 0;
    margin-top: 1.5rem;
}

.hero__char-wrap {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.hero__char-wrap.visible {
    opacity: 1;
}

.hero__slash {
    font-family: var(--font-script);
    color: var(--accent);
    font-weight: 400;
}

.hero__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero__info {
    max-width: 500px;
}

.hero__role {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hero__role-tag {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.hero__role-amp {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--accent);
}

.hero__desc {
    font-size: 0.9375rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Anim helpers */
.anim-slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease);
    transition-delay: var(--delay, 0s);
}

.anim-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-scale {
    opacity: 0;
    transform: scale(0);
    transition: all 1s var(--ease-bounce);
    transition-delay: var(--delay, 0s);
}

.anim-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.anim-fade {
    opacity: 0;
    transition: opacity 1s var(--ease);
    transition-delay: var(--delay, 0s);
}

.anim-fade.visible { opacity: 1; }

/* Magnetic button */
.btn-magnetic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 22px 44px;
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    position: relative;
    overflow: hidden;
    transition: color 0.4s var(--ease);
    flex-shrink: 0;
}

.btn-magnetic__bg {
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.btn-magnetic:hover .btn-magnetic__bg {
    transform: scaleX(1);
}

.btn-magnetic:hover {
    color: var(--bg);
}

.btn-magnetic__text,
.btn-magnetic__arrow {
    position: relative;
    z-index: 1;
}

.btn-magnetic__arrow {
    font-size: 1.25rem;
    transition: transform 0.3s var(--ease);
}

.btn-magnetic:hover .btn-magnetic__arrow {
    transform: translate(4px, -4px);
}

/* Hero scroll */
.hero__scroll {
    position: absolute;
    bottom: 60px;
    right: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero__scroll span {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--text-dim);
    writing-mode: vertical-rl;
}

.hero__scroll-bar {
    width: 1px;
    height: 60px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.hero__scroll-fill {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scroll-fill 2.5s ease-in-out infinite;
}

@keyframes scroll-fill {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

/* Hero decorative text ring */
.hero__deco {
    position: absolute;
    top: 15%;
    right: 8%;
    z-index: 0;
    width: 200px;
    height: 200px;
}

.hero__text-ring {
    width: 100%;
    height: 100%;
    animation: ring-spin 25s linear infinite;
}

.hero__ring-text {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    fill: var(--text-dim);
}

.hero__ring-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes ring-spin { to { transform: rotate(360deg); } }

/* ===========================
   Marquee
   =========================== */
.marquee {
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee__track {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
    width: max-content;
}

.marquee__track span {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
}

.marquee__star {
    color: var(--accent) !important;
    font-size: 0.625rem !important;
    animation: star-spin 3s linear infinite;
}

@keyframes star-spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===========================
   Section Dividers
   =========================== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 40px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease);
}

.section-divider.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 1.2s var(--ease);
}

.section-divider.visible .section-divider__line {
    transform: scaleX(1);
}

.section-divider__diamond {
    width: 10px;
    height: 10px;
    background: var(--accent);
    transform: rotate(45deg) scale(0);
    transition: transform 0.8s 0.4s var(--ease-bounce);
    flex-shrink: 0;
}

.section-divider.visible .section-divider__diamond {
    transform: rotate(45deg) scale(1);
    animation: diamond-pulse 3s ease-in-out 1.2s infinite;
}

@keyframes diamond-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.4); }
    50% { box-shadow: 0 0 12px 4px rgba(200, 255, 0, 0); }
}

.section-divider__ornament {
    font-size: 1.25rem;
    color: var(--accent);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s 0.4s var(--ease-bounce);
    flex-shrink: 0;
    line-height: 1;
}

.section-divider.visible .section-divider__ornament {
    transform: scale(1) rotate(0deg);
    animation: ornament-spin 6s linear infinite;
}

@keyframes ornament-spin {
    to { transform: scale(1) rotate(360deg); }
}

/* ===========================
   Expertise Cards
   =========================== */
.expertise__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.expertise__card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0;
    perspective: 800px;
    transition: border-color 0.4s var(--ease);
}

.expertise__card:hover {
    border-color: var(--accent);
}

.expertise__card-inner {
    padding: 44px;
    transition: transform 0.5s var(--ease-smooth);
    transform-style: preserve-3d;
    position: relative;
}

.expertise__number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    position: absolute;
    top: 24px;
    right: 28px;
    transition: color 0.4s var(--ease);
}

.expertise__card:hover .expertise__number {
    color: var(--accent-dim);
}

.expertise__card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.expertise__card:hover .expertise__card-title {
    color: var(--accent);
}

.expertise__card-text {
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 20px;
}

.expertise__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.expertise__tags li {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border: 1px solid var(--border);
    color: var(--text-dim);
    transition: all 0.3s var(--ease);
}

.expertise__card:hover .expertise__tags li {
    border-color: rgba(200, 255, 0, 0.2);
    color: var(--text);
}

.expertise__card-arrow {
    position: absolute;
    bottom: 24px;
    right: 28px;
    font-size: 1.5rem;
    color: var(--border);
    transition: all 0.4s var(--ease);
}

.expertise__card:hover .expertise__card-arrow {
    color: var(--accent);
    transform: translate(4px, -4px);
}

/* ===========================
   Process
   =========================== */
.process__list { display: flex; flex-direction: column; }

.process__item {
    display: grid;
    grid-template-columns: 100px 1fr 60px;
    gap: 40px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--ease);
    position: relative;
}

.process__item.visible {
    opacity: 1;
    transform: translateX(0);
}
.process__item.visible:hover {
    transform: translateX(15px);
}

.process__item-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-muted);
    transition: all 0.5s var(--ease);
    line-height: 1;
}

.process__item:hover .process__item-num {
    color: var(--accent);
    transform: scale(1.1);
}

.process__item-body h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.process__item:hover .process__item-body h3 { color: var(--accent); }

.process__item-body p {
    font-size: 0.9375rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 500px;
}

.process__item-visual { justify-self: end; }

.process__item-circle {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    position: relative;
    transition: all 0.5s var(--ease);
}

.process__item-circle::after {
    content: '';
    position: absolute;
    inset: 50%;
    width: 0;
    height: 0;
    background: var(--accent);
    border-radius: 50%;
    transition: all 0.5s var(--ease);
}

.process__item:hover .process__item-circle {
    border-color: var(--accent);
}

.process__item:hover .process__item-circle::after {
    inset: 4px;
    width: auto;
    height: auto;
}

/* ===========================
   FAQ
   =========================== */
.faq__list { max-width: 900px; }
.faq__item { border-bottom: 1px solid var(--border); }

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    text-align: left;
    transition: all 0.3s var(--ease);
}

.faq__question:hover { padding-left: 12px; }

.faq__q-num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 24px;
    transition: color 0.3s;
}

.faq__question:hover .faq__q-num { color: var(--accent); }

.faq__q-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    flex: 1;
}

.faq__q-toggle {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.faq__q-toggle span {
    position: absolute;
    background: var(--text-dim);
    transition: all 0.4s var(--ease);
}

.faq__q-toggle span:first-child {
    width: 12px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq__q-toggle span:last-child {
    width: 1px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq__item.active .faq__q-toggle {
    border-color: var(--accent);
    transform: rotate(45deg);
}

.faq__item.active .faq__q-toggle span { background: var(--accent); }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.faq__item.active .faq__answer { max-height: 250px; }

.faq__answer p {
    padding: 0 0 28px 44px;
    font-size: 0.9375rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 700px;
}

/* ===========================
   Contact
   =========================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.contact__social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9375rem;
    color: var(--text-dim);
    padding: 12px 0;
    transition: all 0.3s var(--ease);
    border-bottom: 1px solid var(--border);
}

.contact__social-link:hover {
    color: var(--text);
    padding-left: 12px;
}

.contact__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    min-width: 24px;
}

.contact__social-svg {
    transition: transform 0.4s var(--ease);
}

.contact__social-link:hover .contact__social-svg {
    transform: scale(1.2) rotate(-10deg);
}

/* Big circular CTA button */
.contact__cta-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__big-btn {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease);
}

.contact__big-btn-bg {
    position: absolute;
    inset: 0;
    background: var(--accent);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.6s var(--ease);
}

.contact__big-btn:hover .contact__big-btn-bg {
    transform: scale(1);
}

.contact__big-btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    transition: color 0.4s;
}

.contact__big-btn:hover .contact__big-btn-content { color: var(--bg); }

.contact__big-btn-arrow {
    font-size: 2rem;
    transition: transform 0.4s var(--ease);
}

.contact__big-btn:hover .contact__big-btn-arrow {
    transform: translate(6px, -6px);
}

/* ===========================
   Footer
   =========================== */
.footer {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal-link {
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
    cursor: pointer;
}

.footer__legal-link:hover {
    color: var(--accent);
}

/* Legal Modal */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}

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

/* ===========================
   Cookie Banner
   =========================== */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--accent);
    padding: 24px 32px;
    border-radius: 16px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(150%);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.cookie-banner.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.cookie-banner__content {
    flex: 1;
}

.cookie-banner__title {
    font-size: 1.1rem;
    font-family: var(--font-fancy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    color: var(--accent);
}

.cookie-banner__text {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.cookie-banner__text a:hover {
    opacity: 0.7;
}

.cookie-banner__btn {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-fancy);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-banner__btn:hover {
    background: var(--text);
    transform: translateY(-2px);
}

@media (max-width: 800px) {
    .cookie-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    .cookie-banner__btn {
        width: 100%;
    }
}

.legal-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
}

.legal-modal__container {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 60px 40px 40px;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.5s var(--ease);
}

.legal-modal.active .legal-modal__container {
    transform: translateY(0);
}

.legal-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    z-index: 10;
}

.legal-modal__close:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.legal-modal__close svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.legal-modal__content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #fff;
}

.legal-modal__date {
    font-size: 0.8125rem;
    color: var(--accent);
    margin-bottom: 32px;
}

.legal-modal__content h4 {
    font-size: 0.9375rem;
    text-transform: uppercase;
    margin: 24px 0 12px;
    color: #fff;
}

.legal-modal__content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.legal-modal__content a {
    color: var(--accent);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer__container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer__legal {
        gap: 16px;
    }
    .legal-modal__container {
        padding: 50px 24px 32px;
    }
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
    .cursor { display: none; }
    html, body, a, button { cursor: auto; }

    .hero__bottom { flex-direction: column; gap: 24px; }
    .hero__scroll, .hero__deco { display: none; }

    .expertise__grid { grid-template-columns: 1fr; }

    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .contact__big-btn { width: 200px; height: 200px; }

    .process__item { grid-template-columns: 60px 1fr 40px; gap: 20px; }
    .process__item-num { font-size: 2rem; }

    .menu-overlay__link { font-size: clamp(2rem, 10vw, 4rem); }
    .menu-overlay__link::before { display: none; }
}

@media (max-width: 600px) {
    html, body { overflow-x: hidden; }
    img, video { max-width: 100%; height: auto; }

    .container { padding: 0 20px; }
    .hero { padding: 0 20px 40px; }
    .section { padding: 40px 0; }
    
    .section__header { 
        margin-bottom: 40px; 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px; /* Replaces margin-bottom on index */
    }
    
    .section__title { display: none; }
    .section__index { margin-bottom: 0; }
    .section__subtitle { 
        font-size: clamp(1.5rem, 6vw, 2rem); 
        top: 0; 
        margin-top: 0;
        text-transform: capitalize;
    }

    .nav__container { padding: 0 16px; }
    .nav__status { display: none; }
    
    .nav__logo { padding: 10px; }
    .nav__burger-text { display: none; }
    .nav__burger { padding: 14px; border-radius: 8px; }

    .hero__bg-video { object-position: 80% center; }
    .hero__name { margin-bottom: 20px; }
    .hero__bottom { 
        align-items: flex-start; 
        padding-top: 20px;
    }

    .hero__name-line {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .hero__name-line--2 { 
        margin-left: 0; 
        margin-top: 25px;
    }
    .hero__role { flex-wrap: wrap; gap: 8px; }

    .expertise__card-inner { padding: 24px; }
    .expertise__number { font-size: 2rem; }

    .process__item { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
    .process__item-num { font-size: 1.5rem; }
    .process__item-visual { display: none; }

    .faq__question { padding: 20px 0; }
    .faq__q-text { font-size: 1.1rem; }

    .contact__big-btn { 
        width: 100%; 
        height: 60px; 
        border-radius: 30px; 
    }
    .contact__big-btn-bg {
        border-radius: 30px;
        transform-origin: center;
    }
    .contact__big-btn-content {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }
}
