/* ============================================================
   Validvent — Design Draft (v2)
   Light · monochrome (black / grey / white), blue used only
   as a sparing accent. CI fonts: Karla / Space Grotesk / IBM Plex Mono
   ============================================================ */

@import url("../fonts/fonts.css");

/* ---------- Tokens ---------- */
:root {
  /* Accent (used sparingly) */
  --brand: #4d7cff;
  --brand-2: #6e96ff;
  --brand-deep: #2f5ae0;

  /* Ink / neutral surfaces */
  --bg: #ffffff;
  --bg-soft: #f5f6f9;
  --bg-mute: #eef0f4;
  --surface: #ffffff;
  --line: #e6e8ee;
  --line-strong: #d4d8e2;

  --ink: #0e1017;
  --ink-2: #383d4b;
  --ink-3: #676d7d;
  --ink-4: #969ba9;

  /* Dark tiles (icons, avatars, cta) */
  --tile: linear-gradient(150deg, #1b1f2b, #2c313f);

  /* Theme-aware surfaces */
  --header-bg: rgba(255, 255, 255, .96);
  --panel-bg: rgba(255, 255, 255, .98);
  color-scheme: light;

  --shadow-sm: 0 1px 2px rgba(16, 20, 35, .05), 0 2px 8px rgba(16, 20, 35, .04);
  --shadow-md: 0 12px 30px -14px rgba(16, 22, 45, .16), 0 4px 12px rgba(16, 22, 45, .05);
  --shadow-lg: 0 40px 80px -34px rgba(16, 22, 45, .28);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Poppins", var(--font-body);
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* ---------- Dark theme ---------- */
:root[data-theme="dark"] {
  --bg: #0e1017;
  --bg-soft: #14171d;
  --bg-mute: #1c2029;
  --surface: #15181f;
  --line: #262a33;
  --line-strong: #363b47;

  --ink: #f2f4f8;
  --ink-2: #c4cad6;
  --ink-3: #9298a6;
  --ink-4: #6b7180;

  --tile: linear-gradient(150deg, #272c39, #363d50);

  --header-bg: rgba(14, 16, 23, .9);
  --panel-bg: rgba(14, 16, 23, .98);
  color-scheme: dark;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3), 0 2px 8px rgba(0, 0, 0, .25);
  --shadow-md: 0 14px 32px -14px rgba(0, 0, 0, .55), 0 4px 12px rgba(0, 0, 0, .3);
  --shadow-lg: 0 40px 80px -32px rgba(0, 0, 0, .7);
}
:root { color-scheme: light; }

/* ---------- Lenis (official recommended CSS) ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html:not(.lenis) { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; margin: 0; color: var(--ink); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--ink); color: var(--bg); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section--soft { background: var(--bg-soft); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--brand); }
.section-head { max-width: 680px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin-top: 18px; }
.section-head p { margin-top: 18px; color: var(--ink-3); font-size: clamp(16px, 1.6vw, 19px); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--r-pill); white-space: nowrap;
  font-weight: 600; font-size: 15.5px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--ink); color: var(--bg); box-shadow: 0 14px 30px -16px rgba(14, 16, 23, .35); }
.btn--primary:hover { background: var(--ink-2); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { --pad-y: 16px; --pad-x: 30px; font-size: 16.5px; }
.btn--block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--header-bg);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(16, 22, 45, .5);
}
.nav { display: flex; align-items: center; gap: 22px; height: 76px; transition: height .3s var(--ease); }
.scrolled .nav { height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); flex-shrink: 0; margin-right: auto; }
.brand svg { height: 21px; width: auto; fill: var(--ink); transition: opacity .3s; }
.brand:hover svg { opacity: .7; }

.nav-menu { display: flex; align-items: center; align-self: stretch; gap: 4px; }
.nav-menu > li > a, .nav-trigger {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 9px 15px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  background: none; border: none;
  transition: color .2s, background .2s;
}
.nav-menu > li > a:hover, .nav-trigger:hover, .has-mega.open .nav-trigger { color: var(--ink); background: var(--bg-soft); }
.nav-trigger svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.has-mega.open .nav-trigger svg { transform: rotate(180deg); }

/* Full-width mega menu */
.has-mega { position: static; align-self: stretch; display: flex; align-items: center; }
.mega-full {
  position: absolute; top: 100%; left: 0; right: 0; width: 100%;
  background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.has-mega.open .mega-full, .has-mega:focus-within .mega-full { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.mega-inner { max-width: var(--container); margin-inline: auto; padding: 38px var(--gutter) 42px; display: grid; grid-template-columns: repeat(3, 1fr) 1.15fr; gap: 40px; }
.mega-col h6 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); margin: 0 0 14px; font-weight: 500; }
.mega-col a { display: flex; flex-direction: column; gap: 1px; padding: 9px 12px; border-radius: var(--r-md); transition: background .2s; }
.mega-col a:hover { background: var(--bg-soft); }
.mega-col a strong { font-size: 15px; font-weight: 600; color: var(--ink); }
.mega-col a span { font-size: 12.5px; color: var(--ink-4); }
.mega-promo { background: #101319; border: 1px solid var(--line); color: #fff; border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.mega-promo::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(77,124,255,.35), transparent 65%); top: -90px; right: -70px; }
.mega-promo .tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-2); position: relative; }
.mega-promo h5 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin: 12px 0 8px; position: relative; letter-spacing: -.01em; }
.mega-promo p { font-size: 13.5px; color: rgba(255,255,255,.72); position: relative; }
.mega-promo .btn { margin-top: auto; position: relative; background: #fff; color: #101319; box-shadow: none; }
.mega-promo .btn:hover { background: var(--brand); color: #fff; }

.nav-tail { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* Language switcher */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--surface); }
.lang-switch a { padding: 5px 11px; border-radius: var(--r-pill); font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .06em; color: var(--ink-3); transition: background .2s, color .2s; }
.lang-switch a.active { background: var(--ink); color: var(--bg); }
.lang-switch a:not(.active):hover { color: var(--ink); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: clamp(90px, 11vh, 124px); padding-bottom: clamp(32px, 5vh, 60px); overflow: hidden; }
.hero > .container { width: 100%; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.blob--1 { width: 620px; height: 620px; background: radial-gradient(circle, #e7eaf1, transparent 66%); top: -220px; right: -120px; }
.blob--2 { width: 460px; height: 460px; background: radial-gradient(circle, #eef0f5, transparent 62%); top: 140px; left: -160px; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 25%, transparent 75%); mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 25%, transparent 75%); opacity: .6; }

.hero-top { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero-copy { max-width: 640px; }

.hero-media { position: relative; }
.hero-photo { position: relative; margin: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.hero-photo img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 20%; display: block; }
.photo-chip { position: absolute; left: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 1px; padding: 11px 16px; background: rgba(14, 16, 23, .82); border-radius: var(--r-md); box-shadow: 0 8px 24px -10px rgba(0,0,0,.5); }
.photo-chip .nm { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: #fff; line-height: 1.2; }
.photo-chip .rl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .68); }

.hero .pill {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 7px 15px 7px 8px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); font-size: 13.5px; color: var(--ink-2); font-weight: 500;
}
.pill .tag { white-space: nowrap; }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(77, 124, 255, .16); }
.pill .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; background: var(--bg-mute); color: var(--ink-2); padding: 3px 9px; border-radius: var(--r-pill); }
.hero h1 { font-size: clamp(38px, 5.2vw, 66px); margin-top: 20px; letter-spacing: -.035em; }
.hero h1 .accent { color: var(--ink-4); }
.hero-sub { margin-top: 16px; font-size: clamp(16px, 1.55vw, 19px); color: var(--ink-2); max-width: 600px; font-weight: 500; }
.hero-lead { margin-top: 14px; font-size: 16px; color: var(--ink-3); max-width: 580px; }
.hero-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust { margin-top: clamp(32px, 4vh, 52px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: clamp(22px, 3vh, 32px); border-top: 1px solid var(--line); }
.hero-trust .t-num { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 40px); font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.hero-trust .t-num .plus { color: var(--brand); }
.hero-trust .t-lbl { margin-top: 4px; font-size: 13.5px; color: var(--ink-3); }

/* ============================================================
   Mission / split
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split .lead-lg { font-size: clamp(20px, 2.4vw, 27px); font-family: var(--font-display); font-weight: 500; line-height: 1.35; letter-spacing: -.015em; color: var(--ink); }
.split .body-col p { color: var(--ink-3); }
.split .body-col p + p { margin-top: 16px; }

.feature-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 34px; box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.feature-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--brand); }
.feature-card ul { display: grid; gap: 16px; }
.feature-card li { display: flex; gap: 14px; align-items: flex-start; }
.feature-card .ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: var(--bg-mute); color: var(--ink); display: grid; place-items: center; }
.feature-card .ic svg { width: 20px; height: 20px; }
.feature-card h4 { font-size: 16.5px; }
.feature-card li p { font-size: 14.5px; color: var(--ink-3); margin-top: 3px; }

/* ============================================================
   Services cards
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.svc-card .ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--tile); color: #fff; box-shadow: var(--shadow-md); margin-bottom: 22px; }
.svc-card .ic svg { width: 25px; height: 25px; }
.svc-card h3 { font-size: 22px; }
.svc-card p { margin-top: 12px; color: var(--ink-3); font-size: 15.5px; }
.svc-card .go { margin-top: 22px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14.5px; color: var(--ink); }
.svc-card .go svg { width: 16px; height: 16px; transition: transform .35s var(--ease); color: var(--brand); }
.svc-card:hover .go { color: var(--brand); }
.svc-card:hover .go svg { transform: translateX(4px); }
.svc-card .glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(16,20,35,.05), transparent 70%); top: -80px; right: -60px; opacity: 0; transition: opacity .45s; }
.svc-card:hover .glow { opacity: 1; }
.center-more { text-align: center; margin-top: 44px; }

/* ============================================================
   How it works
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step { position: relative; padding: 32px 28px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step .n { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--ink-4); letter-spacing: .1em; }
.step .num-badge { width: 46px; height: 46px; border-radius: 14px; background: var(--bg-mute); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 20px; display: grid; place-items: center; margin-bottom: 20px; }
.step h3 { font-size: 20px; }
.step p { margin-top: 10px; color: var(--ink-3); font-size: 15px; }
.step .connector { position: absolute; top: 47px; right: -22px; width: 44px; color: var(--line-strong); z-index: 2; }
.step:last-child .connector { display: none; }

/* ============================================================
   Pricing
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 1.5px solid var(--ink); box-shadow: var(--shadow-lg); transform: scale(1.02); }
.price-card.featured:hover { transform: scale(1.02) translateY(-5px); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--ink); color: var(--bg); font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--r-pill); }
.price-card h3 { font-size: 22px; }
.price-card .desc { margin-top: 8px; color: var(--ink-3); font-size: 14.5px; min-height: 44px; }
.price-card .amount { margin-top: 22px; font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.price-card .per { color: var(--ink-4); font-size: 13.5px; margin-top: 2px; }
.price-card .feats { margin-top: 24px; display: grid; gap: 13px; border-top: 1px solid var(--line); padding-top: 24px; }
.price-card .feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.price-card .feats svg { width: 19px; height: 19px; color: var(--ink); flex-shrink: 0; margin-top: 1px; }
.price-card .btn { margin-top: 26px; }
.price-switch { display: inline-flex; gap: 4px; padding: 5px; background: var(--bg-mute); border: 1px solid var(--line); border-radius: var(--r-pill); margin-inline: auto; margin-bottom: 44px; }
.price-switch button { padding: 8px 22px; border-radius: var(--r-pill); border: none; background: none; font-weight: 600; font-size: 14px; color: var(--ink-3); transition: all .3s var(--ease); }
.price-switch button.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }

/* ============================================================
   Why / stats
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.why-list { display: grid; gap: 18px; margin-top: 32px; }
.why-list li { display: flex; gap: 16px; padding: 20px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), border-color .35s; }
.why-list li:hover { transform: translateX(6px); border-color: var(--line-strong); }
.why-list .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-mute); color: var(--ink); display: grid; place-items: center; }
.why-list .ic svg { width: 21px; height: 21px; }
.why-list h4 { font-size: 16.5px; }
.why-list p { margin-top: 3px; color: var(--ink-3); font-size: 14.5px; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { padding: 30px 26px; border-radius: var(--r-lg); background: var(--bg-soft); border: 1px solid var(--line); text-align: left; }
.stat .num { font-family: var(--font-display); font-size: clamp(34px, 4.6vw, 52px); font-weight: 700; letter-spacing: -.03em; color: var(--ink); line-height: 1; }
.stat .num .suffix { color: var(--brand); }
.stat .lbl { margin-top: 10px; color: var(--ink-3); font-size: 14.5px; }

/* ============================================================
   Team
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.member { text-align: center; padding: 36px 26px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.member .avatar { width: 112px; height: 112px; border-radius: 50%; margin: 0 auto 20px; overflow: hidden; background: var(--bg-mute); box-shadow: var(--shadow-md); }
.member .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.member h4 { font-size: 19px; }
.member .role { margin-top: 6px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }

/* ============================================================
   Newsletter / CTA band
   ============================================================ */
.cta-band { background: linear-gradient(150deg, #0e1017, #23283a); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(40px, 6vw, 68px); color: #fff; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(77,124,255,.28), transparent 64%); top: -230px; right: -130px; }
.cta-band .inner { position: relative; z-index: 1; max-width: 560px; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 42px); }
.cta-band p { margin-top: 14px; color: rgba(255,255,255,.78); font-size: 17px; }
.subscribe { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.subscribe input { flex: 1; min-width: 220px; padding: 15px 20px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.1); color: #fff; font-size: 15.5px; }
.subscribe input::placeholder { color: rgba(255,255,255,.65); }
.subscribe input:focus { outline: none; border-color: #fff; background: rgba(255,255,255,.16); }
.subscribe .btn { background: #fff; color: #0e1017; box-shadow: none; }
.subscribe .btn:hover { background: var(--brand); color: #fff; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); }
.contact-info .lead-lg { font-size: clamp(22px, 2.6vw, 30px); font-family: var(--font-display); font-weight: 500; letter-spacing: -.015em; }
.contact-list { margin-top: 34px; display: grid; gap: 8px; }
.contact-list a, .contact-list div { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--r-md); transition: background .25s; color: var(--ink-2); font-size: 15.5px; }
.contact-list a:hover { background: var(--bg-soft); color: var(--ink); }
.contact-list .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--bg-mute); color: var(--ink); display: grid; place-items: center; flex-shrink: 0; }
.contact-list .ic svg { width: 19px; height: 19px; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 14px 16px; border-radius: var(--r-md); border: 1px solid var(--line-strong); background: var(--bg-soft); font-size: 15.5px; font-family: inherit; color: var(--ink); transition: border-color .25s, background .25s, box-shadow .25s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: var(--surface); box-shadow: 0 0 0 4px rgba(77,124,255,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-4); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--font-display); font-weight: 600; font-size: clamp(17px, 2vw, 20px); color: var(--ink); }
.faq-q .chev { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--ink-2); transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s; }
.faq-q .chev svg { width: 17px; height: 17px; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); background: var(--ink); color: var(--bg); border-color: var(--ink); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 0 24px; color: var(--ink-3); max-width: 92%; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #0e1017; color: #b4bacc; padding-top: clamp(56px, 8vw, 88px); }
.site-footer a { color: #b4bacc; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand svg { height: 24px; fill: #fff; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #868da0; max-width: 340px; }
.footer-offices { margin-top: 22px; display: grid; gap: 6px; font-size: 13.5px; color: #868da0; }
.footer-offices strong { color: #d3d8e4; font-weight: 500; display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; font-family: var(--font-mono); }
.footer-social { margin-top: 24px; display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.12); display: inline-flex; align-items: center; justify-content: center; color: #b4bacc; transition: all .25s; }
.footer-social a:hover { background: #fff; border-color: #fff; color: var(--ink); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; margin: auto; }
.footer-col h5 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: #6a7183; margin: 0 0 18px; font-weight: 500; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; }
.footer-legal { padding: 26px 0 40px; }
.footer-legal .disclaimer { font-size: 12px; color: #6a7183; line-height: 1.7; max-width: 900px; }
.footer-legal .disclaimer + .disclaimer { margin-top: 12px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; margin-top: 26px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom .copy { font-size: 13px; color: #868da0; }
.footer-bottom .cities { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: #6a7183; }

/* ============================================================
   Scroll reveal + progress
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

.scroll-progress { position: fixed; top: 0; left: 0; height: 2.5px; width: 100%; transform: scaleX(0); transform-origin: 0 50%; background: var(--brand); z-index: 200; }

/* ============================================================
   Mobile nav panel
   ============================================================ */
.mobile-panel { position: fixed; inset: 0; z-index: 150; background: var(--panel-bg); backdrop-filter: blur(10px); padding: 90px var(--gutter) 40px; transform: translateY(-100%); transition: transform .5s var(--ease); overflow-y: auto; display: none; }
.mobile-panel.open { transform: translateY(0); }
.mobile-panel a { display: block; padding: 15px 0; font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-panel .sub-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); margin: 24px 0 4px; }
.mobile-panel .sub a { font-size: 17px; padding: 11px 0; color: var(--ink-2); }
.mobile-panel .btn { margin-top: 28px; }
.panel-close {
  position: absolute; top: 22px; right: var(--gutter);
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-2);
  transition: color .2s, border-color .2s, transform .2s;
}
.panel-close:hover { color: var(--ink); border-color: var(--line-strong); }
.panel-close:active { transform: scale(.94); }
.panel-close svg { width: 20px; height: 20px; }
.mobile-panel.open .panel-close { display: inline-flex; }
.panel-lang { margin-top: 28px; }
.panel-lang .sub-label { margin-top: 0; }
.panel-lang .lang-switch { display: inline-flex; }
/* keep the CTA button + language links from inheriting the nav-link styles */
.mobile-panel a.btn {
  display: inline-flex; justify-content: center;
  padding: var(--pad-y) var(--pad-x); border-bottom: 0; font-size: 16.5px;
}
.mobile-panel a.btn--primary { color: var(--bg); }
.panel-lang .lang-switch a {
  display: inline-flex; padding: 5px 11px; border-bottom: 0;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-3);
}
.panel-lang .lang-switch a.active { color: var(--bg); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav-menu { display: none; }
  .nav-tail .btn--primary { display: none; }
  /* lang switch moves into the mobile panel so the header never overflows */
  .nav-tail .lang-switch { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 40px; height: 40px; border-radius: 12px;
    border: 1px solid var(--line); background: var(--surface); color: var(--ink-2);
    transition: color .2s, border-color .2s, background .2s, transform .2s;
  }
  .nav-toggle:hover { color: var(--ink); border-color: var(--line-strong); }
  .nav-toggle:active { transform: scale(.94); }
  .nav-toggle svg { width: 20px; height: 20px; }
  .mobile-panel { display: block; }
  .hero-top { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 640px; }
  .hero-media { max-width: 520px; }
  .hero-photo img { aspect-ratio: 3 / 2; object-position: 50% 25%; }
  .split, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards-3, .steps, .price-grid, .team-grid { grid-template-columns: 1fr; }
  .step .connector { display: none; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .row-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   Header icon buttons (search + theme toggle)
   ============================================================ */
.icon-btn {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 12px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.icon-btn:hover { color: var(--ink); border-color: var(--line-strong); }
.icon-btn:active { transform: scale(.94); }
.icon-btn svg { width: 18px; height: 18px; margin: auto; }
/* theme toggle: show moon in light, sun in dark */
.theme-toggle .i-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .i-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .i-sun { display: block; }

/* ============================================================
   Full-screen search
   ============================================================ */
.search-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), visibility .28s;
  padding: clamp(60px, 12vh, 140px) var(--gutter) 40px;
  overflow-y: auto;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-panel { max-width: 720px; margin: 0 auto; transform: translateY(-14px); transition: transform .32s var(--ease); }
.search-overlay.open .search-panel { transform: none; }
.search-bar {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--r-lg); padding: 6px 6px 6px 20px; box-shadow: var(--shadow-lg);
}
.search-bar > svg { width: 22px; height: 22px; color: var(--ink-3); flex-shrink: 0; }
.search-bar input {
  flex: 1; border: none; background: none; outline: none;
  font-family: var(--font-display); font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500; color: var(--ink); padding: 14px 0; letter-spacing: -.01em;
}
.search-bar input::placeholder { color: var(--ink-4); }
.search-close {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 14px; border: none; border-radius: var(--r-md);
  background: var(--bg-mute); color: var(--ink-3);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s, background .2s;
}
.search-close:hover { color: var(--ink); background: var(--line); }
.search-meta { margin: 20px 4px 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); }
.search-results { display: grid; gap: 8px; }
.search-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--line);
  cursor: pointer; transition: border-color .2s, transform .2s, background .2s;
}
.search-item:hover, .search-item.active { border-color: var(--ink); transform: translateX(4px); }
.search-item .si-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); flex-shrink: 0; width: 96px; }
.search-item .si-body { min-width: 0; }
.search-item .si-title { display: block; font-weight: 600; font-size: 16px; color: var(--ink); }
.search-item .si-snip { font-size: 13.5px; color: var(--ink-3); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-item .si-arrow { margin-left: auto; color: var(--ink-4); flex-shrink: 0; }
.search-item .si-arrow svg { width: 18px; height: 18px; }
.search-empty { padding: 40px 4px; color: var(--ink-3); text-align: center; }
.search-hint { margin-top: 22px; text-align: center; color: var(--ink-4); font-size: 14px; }
.search-hint kbd { font-family: var(--font-mono); font-size: 11px; background: var(--bg-mute); border: 1px solid var(--line); border-radius: 6px; padding: 2px 7px; color: var(--ink-3); }

@media (max-width: 560px) {
  .search-item .si-cat { width: auto; }
  .search-item { flex-wrap: wrap; gap: 6px 12px; }
}

/* ---------- Version switcher (Klassik ↔ Bold 2026) ---------- */
.vswitch{position:fixed;left:50%;bottom:20px;transform:translateX(-50%);z-index:9999;
  display:flex;align-items:center;gap:3px;padding:5px;border-radius:999px;
  background:rgba(14,16,23,.85);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.14);box-shadow:0 14px 34px -12px rgba(0,0,0,.6);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",system-ui,sans-serif}
.vswitch .vlabel{font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.5);padding:0 6px 0 10px}
.vswitch a{padding:8px 15px;border-radius:999px;font-size:12.5px;font-weight:600;line-height:1;color:rgba(255,255,255,.72);text-decoration:none;transition:background .2s,color .2s;white-space:nowrap}
.vswitch a:hover{color:#fff}
.vswitch a.active{background:#4d7cff;color:#fff}
@media(max-width:520px){.vswitch .vlabel{display:none}.vswitch a{padding:8px 13px}}
