/* =====================
   TOKENS
   ===================== */
:root {
    --bg: #030712;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-h: rgba(255, 255, 255, 0.055);
    --border: rgba(255, 255, 255, 0.07);
    --border-h: rgba(124, 58, 237, 0.45);
    --text: #f1f5f9;
    --mid: #94a3b8;
    --muted: #475569;
    --purple: #7c3aed;
    --violet: #6d28d9;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --grad: linear-gradient(135deg, #7c3aed 0%, #2563eb 55%, #06b6d4 100%);
    --grad-t: linear-gradient(135deg, #a78bfa, #60a5fa, #22d3ee);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
}

/* =====================
   RESET
   ===================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img,
svg {
    display: block;
}

/* =====================
   BACKGROUND TEXTURE
   ===================== */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.025) 1px,
        transparent 1px
    );
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

/* =====================
   LAYOUT
   ===================== */
.container {
    width: min(1160px, 90%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* =====================
   TYPOGRAPHY UTILITIES
   ===================== */
.grad-text {
    background: var(--grad-t);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================
   ORBS
   ===================== */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
}
.orb--purple {
    width: 650px;
    height: 650px;
    background: #7c3aed;
    opacity: 0.12;
    top: -200px;
    right: -180px;
}
.orb--blue {
    width: 450px;
    height: 450px;
    background: #2563eb;
    opacity: 0.1;
    bottom: -100px;
    left: -120px;
}
.orb--cyan {
    width: 320px;
    height: 320px;
    background: #06b6d4;
    opacity: 0.07;
    top: 42%;
    left: 45%;
}
.orb--contact {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    opacity: 0.1;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
}

/* =====================
   HEADER
   ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0.9rem 0;
    transition:
        background 0.35s,
        border-color 0.35s,
        backdrop-filter 0.35s;
}
.header.scrolled {
    background: rgba(3, 7, 18, 0.82);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.logo {
    font-size: 1.18rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: -0.01em;
}
.logo__gem {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.35rem;
    line-height: 1;
}
.logo__dot {
    color: var(--purple);
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav__link {
    padding: 0.45rem 0.85rem;
    color: var(--mid);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 8px;
    transition:
        color 0.2s,
        background 0.2s;
}
.nav__link:hover {
    color: var(--text);
    background: var(--surface-h);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid var(--border);
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        background 0.2s,
        border-color 0.2s;
    white-space: nowrap;
}
.btn--sm {
    padding: 0.48rem 1rem;
    font-size: 0.82rem;
}
.btn--lg {
    padding: 0.8rem 1.4rem;
    font-size: 0.92rem;
}
.btn--full {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.2rem;
}

.btn--primary {
    background: var(--grad);
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    color: #fff;
    -webkit-text-fill-color: #fff;
    box-shadow: 0 0 0 rgba(124, 58, 237, 0);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(124, 58, 237, 0.38);
}

.btn--ghost {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn--ghost:hover {
    background: var(--surface-h);
    border-color: rgba(124, 58, 237, 0.3);
}

/* =====================
   HERO
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    padding: 4rem 0;
}

/* Pill badge */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.38rem 1rem;
    margin-bottom: 1.4rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.28);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #c4b5fd;
}
.pill__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7c3aed;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.09;
    letter-spacing: -0.025em;
    margin-bottom: 1.1rem;
}
.hero__sub {
    color: var(--mid);
    font-size: 1rem;
    line-height: 1.78;
    max-width: 50ch;
    margin-bottom: 1.8rem;
}
.hero__actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

/* Hero card */
.hero__card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
}
.hero__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.55),
        transparent
    );
}
.hero__card-chrome {
    display: flex;
    gap: 0.38rem;
    margin-bottom: 1.1rem;
}
.chrome-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.chrome-dot--red {
    background: #ef4444;
}
.chrome-dot--yellow {
    background: #f59e0b;
}
.chrome-dot--green {
    background: #10b981;
}

.hero__card-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    margin-bottom: 0.9rem;
}
.deliver-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}
.deliver-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--mid);
    padding: 0.5rem 0.7rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}
.deliver-icon {
    color: #7c3aed;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.48rem 0.75rem;
    background: rgba(16, 185, 129, 0.07);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    font-size: 0.8rem;
    color: #34d399;
}
.live-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    animation: ping 2s infinite;
}
@keyframes ping {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* =====================
   SECTIONS
   ===================== */
.section {
    padding: 5.5rem 0;
    position: relative;
}
.section__head {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.section__tag {
    display: inline-block;
    padding: 0.32rem 0.9rem;
    margin-bottom: 0.9rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.22);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.section__title {
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}
.section__sub {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

/* =====================
   SERVICES
   ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.svc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(124, 58, 237, 0.06),
        rgba(37, 99, 235, 0.04)
    );
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
}
.svc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.11);
}
.svc-card:hover::before {
    opacity: 1;
}

.svc-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 14px;
    color: #a78bfa;
    margin-bottom: 0.6rem;
    transition:
        background 0.3s,
        box-shadow 0.3s;
}
.svc-card:hover .svc-icon {
    background: rgba(124, 58, 237, 0.18);
    box-shadow: 0 0 22px rgba(124, 58, 237, 0.22);
}
.svc-card h3 {
    font-size: 0.97rem;
    font-weight: 700;
}
.svc-card p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}
.svc-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #7c3aed;
    transition: color 0.2s;
}
.svc-card:hover .svc-link {
    color: #a78bfa;
}

/* =====================
   SUPPORT
   ===================== */
.support-wrap {
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.support-glow {
    position: absolute;
    width: 700px;
    height: 400px;
    background: radial-gradient(
        ellipse,
        rgba(37, 99, 235, 0.12) 0%,
        transparent 68%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sup-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
    position: relative;
}
.sup-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 22px 55px rgba(37, 99, 235, 0.1);
}
.sup-card--featured {
    background: linear-gradient(
        145deg,
        rgba(124, 58, 237, 0.07),
        rgba(37, 99, 235, 0.07)
    );
    border-color: rgba(124, 58, 237, 0.2);
}
.sup-card--featured:hover {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 22px 55px rgba(124, 58, 237, 0.13);
}

.sup-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.9rem;
}
.sup-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 16px;
    color: #7c3aed;
    margin-bottom: 1.2rem;
}
.sup-card--featured .sup-icon {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.18);
}
.sup-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
}
.sup-card p {
    color: var(--mid);
    line-height: 1.72;
    font-size: 0.9rem;
}

/* =====================
   WHY BOX
   ===================== */
.why-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}
.why-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.6),
        transparent
    );
}
.why-desc {
    color: var(--mid);
    line-height: 1.78;
    margin-top: 0.9rem;
    font-size: 0.95rem;
}
.why-list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin-top: 1.5rem;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--mid);
    font-size: 0.9rem;
}
.why-actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
}
.check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.22);
    border-radius: 50%;
    color: #a78bfa;
    font-size: 0.68rem;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.stat-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 1.6rem;
    text-align: center;
    transition:
        background 0.3s,
        border-color 0.3s;
}
.stat-card:hover {
    background: rgba(124, 58, 237, 0.06);
    border-color: rgba(124, 58, 237, 0.22);
}
.stat-val {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.3rem;
}
.stat-lbl {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

/* =====================
   CONTACT
   ===================== */
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}
.contact-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(6, 182, 212, 0.55),
        transparent
    );
}
.contact-desc {
    color: var(--mid);
    line-height: 1.78;
    margin-top: 0.8rem;
    font-size: 0.95rem;
}
.contact-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}
.cpill {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.35rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--mid);
}

/* Form */
.cform {
    display: grid;
    gap: 0.85rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
.field {
    display: grid;
    gap: 0.38rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--mid);
}
.field input,
.field textarea,
.field select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 0.72rem 1rem;
    font: inherit;
    font-size: 0.88rem;
    transition:
        border 0.2s,
        box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
.field input::placeholder,
.field textarea::placeholder {
    color: var(--muted);
}
.field select {
    cursor: pointer;
}
.field select option {
    background: #0d1117;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0;
}
.footer__brand p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.72;
    margin-top: 0.65rem;
    max-width: 28ch;
}
.footer__reg {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.footer__reg-name {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 0.35rem;
}
.footer__reg-address {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.65;
}
.footer__col {
    display: grid;
    gap: 0.48rem;
    align-content: start;
}
.footer__col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--mid);
    margin-bottom: 0.4rem;
}
.footer__col a {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.2s;
}
.footer__col a:hover {
    color: var(--text);
}
.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 1.1rem 0;
}
.footer__bottom p {
    font-size: 0.8rem;
    color: var(--muted);
}
.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer__legal-links {
    display: flex;
    gap: 1.2rem;
}
.footer__legal-links a {
    font-size: 0.78rem;
    color: var(--muted);
    transition: color 0.2s;
}
.footer__legal-links a:hover {
    color: var(--text);
}

/* =====================
   COOKIE BANNER
   ===================== */
.cookie-banner {
    position: fixed;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: min(860px, 94%);
    background: rgba(10, 16, 32, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
    opacity: 1;
}
.cookie-banner.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}
.cookie-banner__inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.4rem;
    flex-wrap: wrap;
}
.cookie-banner__text {
    flex: 1;
    min-width: 200px;
}
.cookie-banner__text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.cookie-banner__text p {
    font-size: 0.8rem;
    color: var(--mid);
    line-height: 1.5;
    margin: 0;
}
.cookie-banner__text a {
    color: #a78bfa;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner__actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* =====================
   LEGAL PAGES
   ===================== */
.legal-page {
    padding-top: 5rem;
}
.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 3rem;
    border-bottom: 1px solid var(--border);
}
.legal-hero__title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0.6rem 0 0.5rem;
}
.legal-hero__sub {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1rem;
}
.legal-hero__intro {
    color: var(--mid);
    line-height: 1.78;
    font-size: 1rem;
    max-width: 72ch;
}
.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
    align-items: start;
}
.legal-toc {
    position: sticky;
    top: 5.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
}
.legal-toc__title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.75rem;
}
.legal-toc nav {
    display: grid;
    gap: 0.2rem;
}
.legal-toc nav a {
    font-size: 0.82rem;
    color: var(--mid);
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    transition:
        color 0.2s,
        background 0.2s;
    line-height: 1.4;
}
.legal-toc nav a:hover {
    color: var(--text);
    background: var(--surface-h);
}
.legal-content {
    display: grid;
    gap: 0;
}
.legal-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
    border-bottom: none;
}
.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    color: var(--text);
}
.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.1rem 0 0.5rem;
}
.legal-section p {
    color: var(--mid);
    line-height: 1.78;
    font-size: 0.93rem;
    margin-bottom: 0.7rem;
}
.legal-section p:last-child {
    margin-bottom: 0;
}
.legal-section ul {
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}
.legal-section ul li {
    color: var(--mid);
    font-size: 0.9rem;
    line-height: 1.65;
    padding-left: 1.2rem;
    position: relative;
}
.legal-section ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--muted);
    font-size: 0.8rem;
}
.legal-section a {
    color: #a78bfa;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-table {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 1rem 0;
}
.legal-table__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}
.legal-table__row:last-child {
    border-bottom: none;
}
.legal-table__row span {
    padding: 0.65rem 1rem;
    color: var(--mid);
    border-right: 1px solid var(--border);
}
.legal-table__row span:last-child {
    border-right: none;
}
.legal-table__row--header span {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    color: var(--text);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.legal-table__row:has(span:nth-child(3)) {
    grid-template-columns: 1fr 1.5fr 0.7fr;
}
.legal-contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
    margin-top: 0.75rem;
}
.legal-contact-card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
    color: var(--text);
}
.legal-contact-card p {
    margin-bottom: 0.3rem !important;
    font-size: 0.88rem !important;
}
@media (max-width: 768px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .legal-toc {
        position: static;
    }
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* =====================
   ANIMATIONS
   ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-fade {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .why-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .contact-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        background: rgba(3, 7, 18, 0.97);
        backdrop-filter: blur(22px);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        display: none;
        z-index: 199;
    }
    .nav.open {
        display: flex;
    }
    .nav__link {
        padding: 0.72rem 1rem;
    }
    .nav__cta {
        margin-top: 0.3rem;
        justify-content: center;
    }
    .hamburger {
        display: flex;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .support-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section {
        padding: 3.5rem 0;
    }
}
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero__title {
        font-size: 2.2rem;
    }
    .hero__inner {
        padding: 2.5rem 0;
    }
}
