/* ============================================================
   STALBEHEER — Premium redesign
   ============================================================ */

:root {
  /* Palette — warm editorial */
  --ink: #0D2818;           /* deep forest, near-black */
  --ink-2: #1C3A27;
  --moss: #2F5E3F;          /* secondary green */
  --moss-soft: #E8EFE8;
  --cream: #F5F1E8;         /* warm off-white background */
  --paper: #FBF8F2;         /* slightly lighter */
  --white: #FFFFFF;
  --line: #E5E0D3;          /* warm hairline */
  --line-2: #D6CFBE;
  --mute: #6B6458;          /* warm muted text */
  --mute-2: #908879;
  --accent: #C8722B;        /* sophisticated amber/burnt */
  --accent-soft: #F5E6D3;
  --danger: #9B2C2C;

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Scale */
  --r: 10px;
  --r-lg: 18px;
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(245,241,232,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled {
  border-color: var(--line);
  background: rgba(245,241,232,.94);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 30px; height: 30px;
  background: var(--ink); border-radius: 7px;
  display: grid; place-items: center;
  color: var(--cream); font-family: var(--display);
  font-size: 18px; font-weight: 600; font-style: italic;
  letter-spacing: -0.03em;
}
.logo-text {
  font-family: var(--display);
  font-size: 21px; font-weight: 500; letter-spacing: -0.025em;
  color: var(--ink);
}
.logo-text em { font-style: italic; color: var(--moss); font-weight: 400; }

.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: color .15s, background .15s;
}
.nav-links a:hover { background: rgba(13,40,24,.05); }
.nav-links a.active { color: var(--moss); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 10px;
  font-size: 14.5px; font-weight: 500;
  transition: transform .15s, background .15s, box-shadow .15s, border-color .15s;
  line-height: 1; white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 14px; height: 14px; }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(13,40,24,.4); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-secondary:hover { border-color: var(--ink); background: var(--paper); }
.btn-ghost { color: var(--ink); padding-left: 4px; padding-right: 4px; }
.btn-ghost:hover { color: var(--moss); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }

/* ── TYPE ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute);
}
.eyebrow::before {
  content: ''; display: block; width: 18px; height: 1px; background: var(--mute-2);
}
.eyebrow.bare::before { display: none; }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink);
}
h1 em, h2 em, .display em { font-style: italic; font-weight: 400; color: var(--moss); }

/* ── HERO BASE ──────────────────────────────────────────── */
.hero {
  padding: 56px 32px 0;
  position: relative;
  overflow: hidden;
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; }

/* Hero v1 — Editorial split with phone mockup */
.hero-v1 .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  min-height: min(78vh, 780px);
  padding-bottom: 72px;
}
.hero-v1 h1 {
  font-size: clamp(46px, 6.6vw, 88px);
  margin-top: 24px;
  margin-bottom: 28px;
}
.hero-v1 .hero-sub {
  font-size: 18px;
  color: var(--mute);
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: 36px;
}
.hero-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-meta-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px; color: var(--mute);
}
.hero-meta-row .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--mute-2); }

/* Hero v2 — Editorial centered, product below */
.hero-v2 { padding-top: 72px; padding-bottom: 0; }
.hero-v2 .hero-grid {
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.hero-v2 h1 {
  font-size: clamp(52px, 8vw, 108px);
  margin: 28px auto 28px;
  max-width: 900px;
}
.hero-v2 .eyebrow { justify-content: center; }
.hero-v2 .hero-sub {
  font-size: 19px; color: var(--mute);
  max-width: 620px; margin: 0 auto 32px; line-height: 1.55;
}
.hero-v2 .hero-cta-row { justify-content: center; }
.hero-v2 .hero-meta-row { justify-content: center; }
.hero-v2 .hero-product-wrap {
  margin-top: 72px;
  position: relative;
  padding: 0 0 0;
}

/* Hero v3 — Data-dense asymmetric */
.hero-v3 { padding-top: 48px; padding-bottom: 0; }
.hero-v3 .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.hero-v3 h1 {
  font-size: clamp(44px, 6.2vw, 84px);
  margin-top: 16px;
  margin-bottom: 24px;
}
.hero-v3 .hero-sub {
  font-size: 17px; color: var(--mute); line-height: 1.55;
  max-width: 440px; margin-bottom: 24px;
}
.hero-v3 .number-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  align-self: end;
}
.hero-v3 .number-cell {
  padding: 20px 24px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.hero-v3 .number-val {
  font-family: var(--display);
  font-size: 44px; letter-spacing: -0.04em; line-height: 1;
  color: var(--ink);
}
.hero-v3 .number-val em { font-style: italic; color: var(--moss); }
.hero-v3 .number-lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--mute);
}

/* Hero product showcase (below hero v2/v3) */
.product-showcase {
  max-width: var(--maxw); margin: 0 auto;
  padding: 56px 32px 0;
  position: relative;
}
.product-stage {
  background: linear-gradient(180deg, var(--paper) 0%, rgba(245,230,211,.35) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 64px 48px 0;
  position: relative;
  overflow: hidden;
}
.product-stage::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(47,94,63,.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(200,114,43,.05) 0%, transparent 40%);
  pointer-events: none;
}
.product-stage-inner {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center; gap: 40px;
}

/* ── PHONE MOCKUP ────────────────────────────────────────── */
.phone {
  width: 320px;
  background: #0E1B13;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 40px 80px -30px rgba(13,40,24,.35), 0 16px 40px -16px rgba(13,40,24,.2);
  position: relative;
  flex-shrink: 0;
}
.phone-screen {
  background: var(--cream);
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  display: flex; flex-direction: column;
  font-size: 12px;
}
.phone-notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #0E1B13;
  border-radius: 20px;
  z-index: 2;
}
.ph-status {
  display: flex; justify-content: space-between;
  padding: 12px 22px 6px;
  font-size: 11.5px; font-weight: 600;
  color: var(--ink);
}
.ph-status-right { display: flex; gap: 4px; align-items: center; }
.ph-status-right svg { width: 14px; height: 14px; }

.ph-header {
  padding: 8px 18px 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.ph-h-title { font-family: var(--display); font-size: 20px; letter-spacing: -0.02em; font-weight: 500; }
.ph-h-sub { font-size: 10.5px; color: var(--mute); margin-top: 1px; }
.ph-logo {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--ink); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--display); font-style: italic; font-size: 15px; font-weight: 600;
}

.ph-body {
  flex: 1;
  padding: 6px 14px 12px;
  display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
}
.ph-alert {
  background: #FDECEA; border: 1px solid #F1C1BD;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex; gap: 10px; align-items: flex-start;
}
.ph-alert-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--danger); color: white;
  display: grid; place-items: center; flex-shrink: 0;
}
.ph-alert-icon svg { width: 13px; height: 13px; }
.ph-alert-title { font-size: 12px; font-weight: 600; color: var(--danger); }
.ph-alert-sub { font-size: 10.5px; color: #7A3635; margin-top: 2px; line-height: 1.35; }

.ph-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.ph-stat {
  background: white; border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 8px; text-align: center;
}
.ph-stat-v { font-family: var(--display); font-size: 20px; letter-spacing: -0.03em; color: var(--ink); font-weight: 500; }
.ph-stat-l { font-size: 9.5px; color: var(--mute); margin-top: 1px; letter-spacing: 0.02em; }

.ph-card {
  background: white; border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 14px;
}
.ph-card-title {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute);
  margin-bottom: 10px;
}
.ph-task { display: flex; gap: 10px; align-items: center; padding: 6px 0; }
.ph-task + .ph-task { border-top: 1px solid var(--line); }
.ph-check {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--line-2);
  flex-shrink: 0;
  display: grid; place-items: center;
}
.ph-check.done { background: var(--moss); border-color: var(--moss); color: white; }
.ph-check.done svg { width: 10px; height: 10px; }
.ph-task-title { font-size: 11.5px; font-weight: 500; }
.ph-task-title.done { text-decoration: line-through; color: var(--mute); }
.ph-task-meta { font-size: 10px; color: var(--mute); margin-top: 1px; }

.ph-bottom {
  height: 54px;
  background: white;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.ph-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 9px; color: var(--mute);
}
.ph-nav-item.active { color: var(--moss); }
.ph-nav-item svg { width: 18px; height: 18px; }

/* Secondary phone / floating cards */
.hero-sidecards {
  display: flex; flex-direction: column; gap: 16px;
  width: 300px;
  padding-bottom: 80px;
}
.side-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px -18px rgba(13,40,24,.15);
}
.side-card-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mute); margin-bottom: 10px;
}
.side-card-v {
  font-family: var(--display); font-size: 32px;
  letter-spacing: -0.03em; color: var(--ink); font-weight: 500;
}
.side-card-v em { font-style: italic; color: var(--moss); }
.side-card-sub { font-size: 13px; color: var(--mute); margin-top: 6px; }

.silo-mini { display: flex; flex-direction: column; gap: 12px; }
.silo-row { display: flex; flex-direction: column; gap: 5px; }
.silo-row-top { display: flex; justify-content: space-between; align-items: baseline; }
.silo-name { font-size: 13px; font-weight: 500; color: var(--ink); }
.silo-days { font-family: var(--mono); font-size: 11px; color: var(--mute); }
.silo-bar { height: 5px; border-radius: 99px; background: var(--line); overflow: hidden; }
.silo-bar-fill { height: 100%; border-radius: 99px; }
.silo-bar-fill.ok { background: var(--moss); }
.silo-bar-fill.warn { background: var(--accent); }
.silo-bar-fill.crit { background: var(--danger); }

/* Hero v1 right side */
.hero-v1 .hero-product {
  display: flex; justify-content: center; align-items: center;
  gap: 20px;
  position: relative;
}
.hero-v1 .hero-product .phone {
  transform: translateY(0);
}
.hero-v1 .hero-product .hero-sidecards {
  padding-bottom: 0; width: 240px;
}

/* ── MARQUEE / LOGO STRIP ────────────────────────────────── */
.trust-strip {
  padding: 56px 32px 64px;
  border-top: 1px solid var(--line);
  margin-top: 72px;
}
.trust-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px; align-items: center;
}
.trust-label {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mute);
  text-align: center;
}
.trust-logos {
  display: flex; justify-content: space-between; width: 100%; flex-wrap: wrap; gap: 40px;
  align-items: center;
}
.trust-logo {
  font-family: var(--display); font-size: 20px; color: var(--mute-2);
  font-weight: 500; letter-spacing: -0.01em;
  opacity: .75;
}
.trust-logo.sans { font-family: var(--body); font-weight: 600; font-size: 18px; letter-spacing: -0.03em; }

/* ── SECTION FRAMEWORK ──────────────────────────────────── */
.section { padding: 120px 32px; }
.section.tight { padding: 80px 32px; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section.on-paper { background: var(--paper); }
.section.on-ink { background: var(--ink); color: var(--cream); }
.section.on-ink h2, .section.on-ink h3 { color: var(--cream); }
.section.on-ink .eyebrow { color: rgba(245,241,232,.55); }
.section.on-ink .eyebrow::before { background: rgba(245,241,232,.35); }

.section-head {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
  margin-bottom: 64px; align-items: end;
}
.section-head h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  margin-top: 14px;
}
.section-head .intro {
  font-size: 17px; color: var(--mute); max-width: 520px; line-height: 1.55;
}
.section-head.center {
  grid-template-columns: 1fr; text-align: center; max-width: 780px; margin-left: auto; margin-right: auto;
}
.section-head.center .intro { margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }

/* ── PAIN POINTS (narrative) ────────────────────────────── */
.pains {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.pain {
  padding: 32px 8px 32px 0;
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  align-items: start;
}
.pain:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--line); }
.pain:nth-child(even) { padding-left: 32px; }
.pain-num {
  font-family: var(--mono);
  font-size: 12px; color: var(--mute);
  letter-spacing: 0.05em;
  padding-top: 6px;
}
.pain-body h3 {
  font-family: var(--display); font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 8px;
}
.pain-body p { font-size: 14.5px; color: var(--mute); line-height: 1.55; }

/* ── FEATURES (alternating) ─────────────────────────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.feat {
  grid-column: span 4;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, transform .2s;
}
.feat:hover { border-color: var(--ink); transform: translateY(-2px); }
.feat.wide { grid-column: span 8; }
.feat.tall { grid-row: span 2; }
.feat-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--moss-soft); color: var(--moss);
  display: grid; place-items: center;
}
.feat-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.feat h3 {
  font-family: var(--display); font-size: 24px; font-weight: 500;
  letter-spacing: -0.025em; line-height: 1.15;
}
.feat p { font-size: 14.5px; color: var(--mute); line-height: 1.55; }

.feat-visual {
  margin-top: 6px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  min-height: 140px;
  display: flex; flex-direction: column; justify-content: center;
}

/* ── STEPS ──────────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  counter-reset: step;
}
.step-item {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  position: relative;
}
.step-item::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; color: var(--mute);
}
.step-item h3 {
  font-family: var(--display); font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.15;
}
.step-item p { font-size: 15px; color: var(--mute); line-height: 1.55; }

/* ── PRICING TEASER ─────────────────────────────────────── */
.pricing {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.pricing-inc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
}
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pricing-list li {
  display: grid; grid-template-columns: 18px 1fr; gap: 12px;
  align-items: center;
  font-size: 15px; color: var(--ink-2);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list svg { width: 16px; height: 16px; color: var(--moss); }
.price-foot {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.price-foot-v {
  font-family: var(--display); font-size: 28px; font-weight: 500;
  letter-spacing: -0.03em;
}
.price-foot-v em { font-style: italic; color: var(--moss); }
.price-foot-sub { font-size: 13.5px; color: var(--mute); margin-top: 4px; margin-bottom: 16px; }

/* ── LANGUAGES ──────────────────────────────────────────── */
.lang-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(245,241,232,.15);
}
.lang-row {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 24px;
  align-items: center;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(245,241,232,.15);
}
.lang-flag {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(245,241,232,.5); text-transform: uppercase;
}
.lang-native {
  font-family: var(--display);
  font-size: 24px; font-weight: 400; letter-spacing: -0.02em;
}
.lang-en { font-size: 14px; color: rgba(245,241,232,.55); }
.lang-status {
  font-family: var(--mono); font-size: 11px;
  color: rgba(245,241,232,.5); letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.lang-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ── CTA FINAL ──────────────────────────────────────────── */
.final-cta {
  background: var(--ink); color: var(--cream);
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 100%, rgba(200,114,43,.12) 0%, transparent 60%);
}
.final-cta-inner { max-width: 720px; margin: 0 auto; position: relative; }
.final-cta h2 {
  font-size: clamp(44px, 6vw, 84px);
  color: var(--cream);
  margin-bottom: 24px;
}
.final-cta p { font-size: 18px; color: rgba(245,241,232,.65); margin-bottom: 40px; line-height: 1.55; }
.final-cta .btn-primary { background: var(--cream); color: var(--ink); }
.final-cta .btn-primary:hover { background: white; }
.final-cta .btn-secondary { color: var(--cream); border-color: rgba(245,241,232,.25); }
.final-cta .btn-secondary:hover { border-color: var(--cream); background: rgba(245,241,232,.06); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(245,241,232,.5);
  padding: 64px 32px 32px;
  border-top: 1px solid rgba(245,241,232,.1);
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,241,232,.1);
}
.footer-top .logo-mark { background: var(--cream); color: var(--ink); }
.footer-top .logo-text { color: var(--cream); }
.footer-top .logo-text em { color: var(--accent); }
.footer-desc { font-size: 14px; max-width: 280px; margin-top: 16px; line-height: 1.55; }
.footer-col-title {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(245,241,232,.9); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--cream); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 12px; font-family: var(--mono); letter-spacing: 0.02em;
}

/* ── TWEAKS PANEL ───────────────────────────────────────── */
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  background: var(--ink); color: var(--cream);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 24px 60px -20px rgba(13,40,24,.5);
  display: none;
  flex-direction: column; gap: 12px;
  min-width: 240px;
  font-size: 13px;
}
.tweaks-panel.open { display: flex; }
.tweaks-title {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245,241,232,.6);
  display: flex; justify-content: space-between; align-items: center;
}
.tw-group { display: flex; flex-direction: column; gap: 6px; }
.tw-label { font-size: 11px; color: rgba(245,241,232,.6); }
.tw-options { display: flex; gap: 4px; }
.tw-btn {
  flex: 1; padding: 7px 10px; border-radius: 7px;
  background: rgba(245,241,232,.08); color: var(--cream);
  font-size: 12px; font-weight: 500;
  transition: background .15s;
}
.tw-btn:hover { background: rgba(245,241,232,.15); }
.tw-btn.active { background: var(--accent); color: var(--ink); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 0.07s);
}
[data-anim].in {
  opacity: 1; transform: none;
}

/* Hero content: visible by default. Animation is progressive enhancement, applied via JS. */
.hero [data-anim] {
  opacity: 1;
  transform: none;
}
.hero [data-anim].hero-in {
  animation: heroFadeUp .85s cubic-bezier(.16,1,.3,1);
  animation-delay: calc(var(--i, 0) * 0.08s);
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-anim] { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta .btn:not(:last-child) { display: none; }
  .hero-v1 .hero-grid,
  .hero-v3 .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-v1 .hero-product { flex-direction: column; }
  .hero-v1 .hero-product .hero-sidecards { width: 100%; max-width: 320px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .pains { grid-template-columns: 1fr; }
  .pain:nth-child(odd) { padding-right: 0; border-right: none; }
  .pain:nth-child(even) { padding-left: 0; }
  .feat, .feat.wide { grid-column: span 12; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; gap: 32px; }
  .lang-row { grid-template-columns: 50px 1fr auto; }
  .lang-en { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 80px 24px; }
  .hero { padding: 32px 24px 0; }
  .product-showcase { padding: 40px 24px 0; }
  .product-stage { padding: 32px 16px 0; }
}

@media (max-width: 560px) {
  .nav-inner { padding: 0 20px; }
  .hero-v2 h1 { font-size: clamp(40px, 12vw, 60px); }
  .hero-v1 h1, .hero-v3 h1 { font-size: clamp(36px, 10vw, 52px); }
  .phone { width: 280px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bot { flex-direction: column; gap: 12px; }
}
