/* ============================================================
   TELVORA SYSTEMS — Design System
   Dark premium · electric blue→cyan accent · Geist
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* Backgrounds */
  --bg:            #06080e;
  --bg-2:          #090c14;
  --bg-elev:       #0c1019;
  --surface:       rgba(255,255,255,0.025);
  --surface-2:     rgba(255,255,255,0.045);
  --surface-hi:    rgba(255,255,255,0.07);

  /* Borders / hairlines */
  --line:          rgba(255,255,255,0.08);
  --line-2:        rgba(255,255,255,0.13);
  --line-strong:   rgba(255,255,255,0.20);

  /* Text */
  --text:          #eef1f7;
  --text-2:        #aab2c4;
  --text-3:        #717a8c;

  /* Accent */
  --accent:        #3b82f6;
  --accent-2:      #22d3ee;
  --accent-3:      #818cf8;
  --accent-soft:   rgba(59,130,246,0.14);
  --grad:          linear-gradient(102deg, #3b82f6 0%, #22d3ee 100%);
  --grad-soft:     linear-gradient(102deg, rgba(59,130,246,0.18), rgba(34,211,238,0.14));
  --grad-text:     linear-gradient(100deg, #cfe0ff 0%, #8fd6ee 60%, #b6c8ff 100%);

  /* Semantic */
  --good:          #34d399;
  --warn:          #fbbf24;
  --bad:           #f87171;

  /* Shape */
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadow */
  --sh-sm:  0 1px 2px rgba(0,0,0,0.4);
  --sh:     0 18px 50px -22px rgba(0,0,0,0.7);
  --sh-lg:  0 40px 90px -30px rgba(0,0,0,0.8);
  --glow:   0 0 0 1px rgba(59,130,246,0.35), 0 14px 50px -10px rgba(59,130,246,0.4);

  --maxw: 1200px;
  --nav-h: 70px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 18px); -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: rgba(59,130,246,0.35); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(72px, 9vw, 132px); position: relative; }
.section--tight { padding-block: clamp(56px, 6vw, 84px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

h1, h2, h3 { font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; color: #fff; }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 21px; letter-spacing: -0.02em; line-height: 1.25; }
.lede { font-size: clamp(17px, 1.5vw, 19px); color: var(--text-2); line-height: 1.65; }
.muted { color: var(--text-3); }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  padding: 13px 22px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--grad); color: #05080f; font-weight: 600; box-shadow: 0 10px 30px -10px rgba(34,211,238,0.5); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(34,211,238,0.65); }
.btn--ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--line-2); }
.btn--ghost:hover { background: var(--surface-hi); border-color: var(--line-strong); transform: translateY(-2px); }
.btn--line { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
.btn--line:hover { background: var(--surface); border-color: var(--line-strong); }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: 13.5px; color: var(--text-2); font-weight: 450;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 8px var(--accent-2); }
.tag-note {
  font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.02em;
  color: var(--text-3); border: 1px dashed var(--line-2); border-radius: 6px;
  padding: 3px 7px; display: inline-block;
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 42%);
  opacity: .8;
}
.card > * { position: relative; }
.card:hover { transform: translateY(-3px); border-color: var(--line-2); background: var(--surface-2); }

/* ---------- Decorative glows ---------- */
.glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; opacity: .5; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-d="1"] { transition-delay: .07s; }
[data-reveal-d="2"] { transition-delay: .14s; }
[data-reveal-d="3"] { transition-delay: .21s; }
[data-reveal-d="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .mobile-menu.open .mobile-menu__links a,
  .mobile-menu.open .mobile-menu__actions .btn { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,9,15,0.72); backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark { height: 36px; display: grid; place-items: center; flex-shrink: 0; }
.brand__mark img { height: 36px; width: auto; display: block; object-fit: contain; }
.brand__name { display: block; font-weight: 600; font-size: 16.5px; letter-spacing: -0.02em; color: #fff; line-height: 1.1; }
.brand__claim { display: block; font-size: 11px; color: var(--text-3); letter-spacing: 0.01em; margin-top: 3px; white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-size: 14.5px; color: var(--text-2); padding: 8px 12px; border-radius: 8px;
  transition: color .2s, background .2s; font-weight: 450;
}
.nav__links a:hover { color: var(--text); background: var(--surface); }
.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__book-ic { display: none; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--surface); align-items: center; justify-content: center; cursor: pointer; transition: background .2s, border-color .2s; }
.nav__burger:hover { border-color: var(--accent-2); }
.nav__burger-lines { position: relative; width: 20px; height: 14px; display: block; }
.nav__burger-lines i { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: var(--text); transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .2s ease, top .32s cubic-bezier(.22,1,.36,1); }
.nav__burger-lines i:nth-child(1) { top: 0; }
.nav__burger-lines i:nth-child(2) { top: 6px; }
.nav__burger-lines i:nth-child(3) { top: 12px; }
.nav__burger.is-open .nav__burger-lines i:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav__burger.is-open .nav__burger-lines i:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.nav__burger.is-open .nav__burger-lines i:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Mobile menu */
.menu-backdrop {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(3,5,10,0.55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.menu-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: calc(var(--nav-h) + 8px); left: 14px; right: 14px; z-index: 99;
  background: rgba(13,17,26,0.82);
  -webkit-backdrop-filter: blur(24px) saturate(160%); backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--line-2); border-radius: 20px; padding: 12px;
  box-shadow: 0 28px 70px -18px rgba(0,0,0,0.75);
  transform: translateY(-14px) scale(0.97); transform-origin: top right;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu__links { display: grid; gap: 2px; }
.mobile-menu__links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 14px; font-size: 16px; font-weight: 500; color: var(--text);
  border-radius: 12px; transition: background .18s, color .18s;
}
.mobile-menu__links a::after {
  content: ""; width: 7px; height: 7px; border-right: 2px solid var(--text-3); border-top: 2px solid var(--text-3);
  transform: rotate(45deg); opacity: .5; transition: transform .2s, border-color .2s;
}
.mobile-menu__links a:hover, .mobile-menu__links a:active { background: var(--surface); color: #fff; }
.mobile-menu__links a:hover::after { border-color: var(--accent-2); transform: rotate(45deg) translate(2px,-2px); }
.mobile-menu__sep { height: 1px; background: var(--line); margin: 10px 6px; }
.mobile-menu__actions { display: grid; gap: 10px; padding: 4px 4px 2px; }
.mobile-menu__actions .btn { width: 100%; justify-content: center; }
/* staggered entrance */
.mobile-menu.open .mobile-menu__links a,
.mobile-menu.open .mobile-menu__actions .btn { animation: menuItemIn .4s cubic-bezier(.22,1,.36,1) both; }
@keyframes menuItemIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.mobile-menu.open .mobile-menu__links a:nth-child(1){ animation-delay: .04s; }
.mobile-menu.open .mobile-menu__links a:nth-child(2){ animation-delay: .07s; }
.mobile-menu.open .mobile-menu__links a:nth-child(3){ animation-delay: .10s; }
.mobile-menu.open .mobile-menu__links a:nth-child(4){ animation-delay: .13s; }
.mobile-menu.open .mobile-menu__links a:nth-child(5){ animation-delay: .16s; }
.mobile-menu.open .mobile-menu__links a:nth-child(6){ animation-delay: .19s; }
.mobile-menu.open .mobile-menu__links a:nth-child(7){ animation-delay: .22s; }
.mobile-menu.open .mobile-menu__actions .btn:nth-child(1){ animation-delay: .24s; }
.mobile-menu.open .mobile-menu__actions .btn:nth-child(2){ animation-delay: .27s; }
.mobile-menu.open .mobile-menu__actions .btn:nth-child(3){ animation-delay: .30s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: calc(var(--nav-h) + 56px); padding-bottom: 40px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
  opacity: .5;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; padding: 6px 14px 6px 6px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 13px; color: var(--text-2); margin-bottom: 26px;
}
.hero__eyebrow b { background: var(--grad); color: #05080f; font-weight: 600; font-size: 11px; padding: 3px 9px; border-radius: 999px; letter-spacing: .02em; }
.hero h1 { font-size: clamp(36px, 5.4vw, 64px); font-weight: 600; letter-spacing: -0.035em; }
.hero__sub { margin-top: 24px; font-size: clamp(16px, 1.7vw, 19px); color: var(--text-2); max-width: 560px; line-height: 1.6; }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__demo {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-3);
  padding: 11px 16px; border: 1px dashed var(--line-2); border-radius: 999px;
}
.hero__demo .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--warn); box-shadow: 0 0 8px var(--warn); animation: pulse 2s infinite; }
.hero__badges { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero__badges .pill { font-size: 13px; }
.hero__badges svg { width: 14px; height: 14px; color: var(--accent-2); }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ---------- Hero phone visual ---------- */
.phone-stage { position: relative; display: flex; justify-content: center; align-items: center; }
.phone {
  position: relative; width: 290px; border-radius: 42px; padding: 11px;
  background: linear-gradient(160deg, #1a2030, #0a0d15);
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 2;
}
.phone__screen { border-radius: 32px; background: linear-gradient(180deg, #0a0e18 0%, #070a12 100%); overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.phone__notch { height: 26px; display: flex; justify-content: center; align-items: flex-start; padding-top: 8px; }
.phone__notch i { width: 92px; height: 7px; border-radius: 99px; background: #000; display: block; }
.call { padding: 16px 16px 20px; }
.call__top { display: flex; align-items: center; gap: 11px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.call__avatar { width: 42px; height: 42px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; flex-shrink: 0; }
.call__avatar svg { width: 22px; height: 22px; color: #05080f; }
.call__who { line-height: 1.25; }
.call__who b { font-size: 14px; color: #fff; font-weight: 600; }
.call__who span { font-size: 11.5px; color: var(--good); display: flex; align-items: center; gap: 5px; }
.call__who span i { width: 6px; height: 6px; border-radius: 50%; background: var(--good); box-shadow: 0 0 7px var(--good); animation: pulse 1.6s infinite; }
.call__timer { margin-left: auto; font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--text-3); }

.bubbles { display: flex; flex-direction: column; gap: 9px; padding: 16px 0; min-height: 184px; }
.bubble { max-width: 84%; padding: 9px 13px; border-radius: 14px; font-size: 12.5px; line-height: 1.45; opacity: 0; transform: translateY(8px); }
.bubble.show { opacity: 1; transform: none; transition: opacity .4s, transform .4s; }
.bubble--in { align-self: flex-start; background: var(--surface-hi); border: 1px solid var(--line); border-bottom-left-radius: 5px; color: var(--text); }
.bubble--ai { align-self: flex-end; background: linear-gradient(135deg, rgba(59,130,246,0.9), rgba(34,211,238,0.85)); color: #05080f; font-weight: 450; border-bottom-right-radius: 5px; }
.bubble__label { font-size: 9.5px; text-transform: uppercase; letter-spacing: .08em; opacity: .65; margin-bottom: 3px; font-weight: 600; }

.call__chips { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 14px; border-top: 1px solid var(--line); }
.chip {
  display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 500;
  padding: 5px 9px; border-radius: 999px; opacity: 0; transform: scale(.9);
}
.chip.show { opacity: 1; transform: none; transition: opacity .35s, transform .35s; }
.chip svg { width: 11px; height: 11px; }
.chip--good { background: rgba(52,211,153,0.14); color: var(--good); border: 1px solid rgba(52,211,153,0.3); }
.chip--blue { background: rgba(59,130,246,0.14); color: #8bb8ff; border: 1px solid rgba(59,130,246,0.3); }
.chip--warn { background: rgba(251,191,36,0.13); color: var(--warn); border: 1px solid rgba(251,191,36,0.28); }
.chip--bad  { background: rgba(248,113,113,0.13); color: var(--bad); border: 1px solid rgba(248,113,113,0.28); }

/* floating mini summary card */
.float-card {
  position: absolute; z-index: 3; background: rgba(12,16,25,0.9); backdrop-filter: blur(14px);
  border: 1px solid var(--line-2); border-radius: 14px; padding: 13px 15px;
  box-shadow: var(--sh); width: 210px;
}
.float-card--summary { right: -38px; bottom: 56px; }
.float-card__h { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.float-card__h .ic { width: 22px; height: 22px; border-radius: 7px; background: var(--accent-soft); display: grid; place-items: center; }
.float-card__h .ic svg { width: 13px; height: 13px; color: var(--accent-2); }
.float-card__row { display: flex; justify-content: space-between; font-size: 11px; padding: 3px 0; }
.float-card__row span:first-child { color: var(--text-3); }
.float-card__row span:last-child { color: var(--text); font-weight: 500; }
.phone-stage .glow--a { width: 320px; height: 320px; background: var(--accent); top: 10%; left: 0; opacity: .28; }
.phone-stage .glow--b { width: 280px; height: 280px; background: var(--accent-2); bottom: 0; right: 0; opacity: .22; }

/* ============================================================
   LOGO / STAT STRIP
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 26px 24px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); position: relative; overflow: hidden; }
.stat::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--grad); opacity: .55; }
.stat__num { font-size: clamp(28px, 3vw, 38px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__num small { -webkit-text-fill-color: var(--text-2); font-size: 16px; font-weight: 500; }
.stat__label { margin-top: 12px; font-size: 14.5px; color: var(--text-2); line-height: 1.45; }
.stat__src { margin-top: 12px; }
.stat__src a { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--text-3); line-height: 1.4; transition: color .18s; }
.stat__src a:hover { color: var(--accent-2); }
.stat__src a svg { width: 11px; height: 11px; flex-shrink: 0; opacity: .8; }
.stats-disclaimer { margin-top: 22px; font-size: 12.5px; color: var(--text-3); line-height: 1.55; max-width: 820px; }
.stats-disclaimer b { color: var(--text-2); font-weight: 600; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case { padding: 26px; display: flex; flex-direction: column; }
.case__tag { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px; }
.case__tag svg { width: 14px; height: 14px; }
.case h3 { font-size: 16.5px; margin-bottom: 9px; line-height: 1.3; }
.case p { font-size: 14px; color: var(--text-2); line-height: 1.55; }
.case__result { margin-top: auto; padding-top: 14px; margin-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--text-2); }
.case__result b { color: var(--accent-2); font-weight: 600; }
.case--cta { background: var(--grad-soft); border-color: rgba(59,130,246,0.22); justify-content: center; }
.case--cta h3 { font-size: 19px; }
.case--cta .btn { margin-top: 18px; align-self: flex-start; }
.band-cta { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 24px 30px; border-radius: var(--r-lg); background: var(--grad-soft); border: 1px solid rgba(59,130,246,0.22); }
.band-cta p { font-size: 16px; color: var(--text); font-weight: 500; max-width: 620px; line-height: 1.5; }
.band-cta .btn { flex-shrink: 0; }

/* ============================================================
   PROBLEM
   ============================================================ */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prob {
  display: flex; gap: 14px; padding: 22px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color .25s, background .25s;
}
.prob:hover { border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.04); }
.prob__ic { width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center; background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.2); }
.prob__ic svg { width: 19px; height: 19px; color: var(--bad); }
.prob p { font-size: 15px; color: var(--text); line-height: 1.45; align-self: center; }

/* ============================================================
   SOLUTION SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.split__col { padding: 30px; border-radius: var(--r-xl); border: 1px solid var(--line); }
.split__col--old { background: linear-gradient(180deg, rgba(248,113,113,0.05), transparent); }
.split__col--new { background: linear-gradient(180deg, rgba(59,130,246,0.07), rgba(34,211,238,0.03)); border-color: rgba(59,130,246,0.25); box-shadow: 0 24px 70px -40px rgba(59,130,246,0.5); }
.split__head { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; }
.split__head .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; }
.split__col--old .ic { background: rgba(248,113,113,0.12); color: var(--bad); }
.split__col--new .ic { background: var(--grad); color: #05080f; }
.split__head .ic svg { width: 20px; height: 20px; }
.split__head h3 { font-size: 18px; }
.split__head .sub { font-size: 12.5px; color: var(--text-3); }
.split__list li { display: flex; gap: 11px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--text-2); align-items: flex-start; }
.split__list li:last-child { border-bottom: none; }
.split__list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.split__col--old li svg { color: var(--bad); }
.split__col--new li svg { color: var(--good); }
.split__col--new li { color: var(--text); }

/* ============================================================
   FEATURES
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat { padding: 24px; }
.feat__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--surface-hi); border: 1px solid var(--line-2); display: grid; place-items: center; margin-bottom: 18px; transition: background .25s, border-color .25s; }
.feat__ic svg { width: 22px; height: 22px; color: var(--accent-2); }
.feat:hover .feat__ic { background: var(--grad-soft); border-color: rgba(59,130,246,0.35); }
.feat h3 { font-size: 17px; margin-bottom: 9px; }
.feat p { font-size: 14.5px; color: var(--text-2); line-height: 1.55; }

/* ============================================================
   WORKFLOW
   ============================================================ */
.flow-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.flow-steps { position: relative; }
.flow-steps::before { content: ""; position: absolute; left: 19px; top: 18px; bottom: 18px; width: 1.5px; background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent); opacity: .5; }
.flow-step { display: flex; gap: 16px; padding-bottom: 22px; position: relative; }
.flow-step:last-child { padding-bottom: 0; }
.flow-step__n { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-elev); border: 1px solid var(--line-2); display: grid; place-items: center; font-size: 14px; font-weight: 600; color: var(--accent-2); flex-shrink: 0; z-index: 1; font-family: 'Geist Mono', monospace; }
.flow-step__b { padding-top: 8px; }
.flow-step__b b { font-size: 15.5px; color: #fff; font-weight: 550; }
.flow-step__b p { font-size: 14px; color: var(--text-2); margin-top: 2px; }

/* email mockup */
.email { background: var(--bg-elev); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); position: sticky; top: 96px; }
.email__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--surface); }
.email__bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong); }
.email__bar i:nth-child(1){ background:#ff5f57 } .email__bar i:nth-child(2){ background:#febc2e } .email__bar i:nth-child(3){ background:#28c840 }
.email__bar span { margin-left: 8px; font-size: 12px; color: var(--text-3); font-family: 'Geist Mono', monospace; }
.email__body { padding: 20px; }
.email__subj { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.email__subj .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; flex-shrink: 0; }
.email__subj .ic svg { width: 18px; height: 18px; color: #05080f; }
.email__subj b { font-size: 15px; color: #fff; display: block; line-height: 1.3; }
.email__subj span { font-size: 12px; color: var(--text-3); }
.email__rows { display: grid; gap: 1px; }
.email__row { display: grid; grid-template-columns: 116px 1fr; gap: 12px; padding: 8px 0; font-size: 13.5px; }
.email__row dt { color: var(--text-3); }
.email__row dd { color: var(--text); }
.email__prio { display: inline-flex; align-items: center; gap: 5px; color: var(--bad); font-weight: 600; }
.email__prio i { width: 6px; height: 6px; border-radius: 50%; background: var(--bad); box-shadow: 0 0 7px var(--bad); }
.email__sum { margin-top: 14px; padding: 13px 15px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; font-size: 13.5px; color: var(--text-2); line-height: 1.55; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ind { padding: 26px; overflow: hidden; }
.ind__ic { width: 48px; height: 48px; border-radius: 13px; background: var(--grad-soft); border: 1px solid rgba(59,130,246,0.25); display: grid; place-items: center; margin-bottom: 18px; }
.ind__ic svg { width: 23px; height: 23px; color: var(--accent-2); }
.ind h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.3; }
.ind p { font-size: 14px; color: var(--text-2); line-height: 1.55; }
.ind--wide { grid-column: span 3; display: flex; align-items: center; gap: 26px; background: var(--grad-soft); border-color: rgba(59,130,246,0.22); }
.ind--wide .ind__ic { margin-bottom: 0; flex-shrink: 0; }
.ind--wide div h3 { margin-bottom: 6px; }

/* ============================================================
   TRUST / PRIVACY
   ============================================================ */
.trust-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 46px; align-items: start; }
.trust-list { display: grid; gap: 12px; }
.trust-item { display: flex; gap: 13px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); align-items: flex-start; }
.trust-item__ic { width: 34px; height: 34px; border-radius: 9px; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.22); display: grid; place-items: center; flex-shrink: 0; }
.trust-item__ic svg { width: 17px; height: 17px; color: var(--good); }
.trust-item p { font-size: 14.5px; color: var(--text); line-height: 1.4; align-self: center; }
.trust-shield { position: sticky; top: 100px; padding: 30px; border-radius: var(--r-xl); background: linear-gradient(180deg, rgba(52,211,153,0.06), transparent); border: 1px solid rgba(52,211,153,0.18); }
.trust-shield__ic { width: 56px; height: 56px; border-radius: 15px; background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.3); display: grid; place-items: center; margin-bottom: 20px; }
.trust-shield__ic svg { width: 28px; height: 28px; color: var(--good); }

/* ============================================================
   STEPS (3 step)
   ============================================================ */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: s; }
.step3 { padding: 30px 26px; position: relative; }
.step3__n { font-family: 'Geist Mono', monospace; font-size: 13px; color: var(--accent-2); font-weight: 500; letter-spacing: .08em; }
.step3__bar { height: 2px; background: var(--line); border-radius: 2px; margin: 14px 0 20px; position: relative; overflow: hidden; }
.step3__bar::after { content: ""; position: absolute; inset: 0; width: 36%; background: var(--grad); border-radius: 2px; }
.step3:nth-child(2) .step3__bar::after { width: 68%; }
.step3:nth-child(3) .step3__bar::after { width: 100%; }
.step3 h3 { font-size: 19px; margin-bottom: 10px; }
.step3 p { font-size: 14.5px; color: var(--text-2); line-height: 1.55; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price {
  display: flex; flex-direction: column; padding: 30px 28px; border-radius: var(--r-xl);
  background: var(--surface); border: 1px solid var(--line); position: relative;
}
.price--feat { background: linear-gradient(180deg, rgba(59,130,246,0.1), rgba(34,211,238,0.03)); border-color: rgba(59,130,246,0.35); box-shadow: 0 30px 80px -40px rgba(59,130,246,0.6); transform: scale(1.02); }
.price__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #05080f; font-size: 12px; font-weight: 600; padding: 6px 15px; border-radius: 999px; white-space: nowrap; box-shadow: 0 8px 20px -6px rgba(34,211,238,0.6); }
.price__name { font-size: 14px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--accent-2); }
.price__for { font-size: 13.5px; color: var(--text-3); margin-top: 8px; min-height: 40px; line-height: 1.4; }
.price__amt { margin-top: 18px; display: flex; align-items: baseline; gap: 6px; }
.price__amt b { font-size: 40px; font-weight: 600; letter-spacing: -0.03em; color: #fff; }
.price__amt .per { font-size: 14px; color: var(--text-3); }
.price__amt .pre { font-size: 13px; color: var(--text-3); }
.price__setup { margin-top: 8px; font-size: 13.5px; color: var(--text-2); }
.price__setup b { color: #fff; font-weight: 600; }
.price__list { margin: 22px 0; display: grid; gap: 11px; flex: 1; }
.price__list li { display: flex; gap: 10px; font-size: 14px; color: var(--text-2); line-height: 1.4; }
.price__list li svg { width: 17px; height: 17px; color: var(--accent-2); flex-shrink: 0; margin-top: 2px; }
.price__min { font-size: 12.5px; color: var(--text-3); margin-bottom: 18px; padding: 10px 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 9px; }
.price .btn { width: 100%; }
.price-note { margin-top: 22px; text-align: center; font-size: 14px; color: var(--text-3); max-width: 680px; margin-inline: auto; }
.price-ent { margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; padding: 16px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); font-size: 14.5px; color: var(--text-2); }
.price-ent b { color: #fff; }
.price__vat { font-size: 11.5px; color: var(--text-3); line-height: 1.5; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.price-vat { margin-top: 24px; display: flex; align-items: flex-start; gap: 13px; padding: 16px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); max-width: 760px; margin-inline: auto; }
.price-vat svg { width: 20px; height: 20px; color: var(--accent-2); flex-shrink: 0; margin-top: 1px; }
.price-vat p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
.footer__tax { font-size: 12px; color: var(--text-3); line-height: 1.5; max-width: 560px; margin-top: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi { padding: 28px; display: flex; flex-direction: column; }
.testi__q { font-size: 16px; color: var(--text); line-height: 1.6; flex: 1; }
.testi__q::before { content: "\201C"; font-size: 44px; line-height: 0; color: var(--accent-2); vertical-align: -10px; margin-right: 4px; opacity: .7; }
.testi__by { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.testi__av { width: 40px; height: 40px; border-radius: 11px; background: var(--surface-hi); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--accent-2); font-weight: 600; font-size: 15px; flex-shrink: 0; }
.testi__by b { font-size: 14px; color: #fff; display: block; }
.testi__by span { font-size: 12.5px; color: var(--text-3); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 46px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; transition: border-color .25s, background .25s; }
.faq-item.open { border-color: var(--line-2); background: var(--surface-2); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; text-align: left; font-size: 15.5px; font-weight: 500; color: var(--text); }
.faq-q:hover { color: #fff; }
.faq-q__ic { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line-2); display: grid; place-items: center; flex-shrink: 0; transition: transform .3s, background .25s; }
.faq-q__ic svg { width: 15px; height: 15px; color: var(--accent-2); }
.faq-item.open .faq-q__ic { transform: rotate(45deg); background: var(--accent-soft); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a__inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--text-2); line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-card { padding: 34px; border-radius: var(--r-xl); background: linear-gradient(165deg, var(--surface-2), transparent); border: 1px solid var(--line); }
.about-founder { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.about-founder__av { width: 60px; height: 60px; border-radius: 16px; background: var(--grad); display: grid; place-items: center; font-size: 22px; font-weight: 600; color: #05080f; flex-shrink: 0; }
.about-founder b { font-size: 17px; color: #fff; display: block; }
.about-founder span { font-size: 13.5px; color: var(--text-3); }
.about-card p + p { margin-top: 16px; }
.about-card p { color: var(--text-2); font-size: 15.5px; line-height: 1.65; }

/* ============================================================
   BOOKING / CTA band
   ============================================================ */
.band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); text-align: center; border: 1px solid rgba(59,130,246,0.25); background: linear-gradient(160deg, rgba(59,130,246,0.12), rgba(34,211,238,0.05)); }
.band__glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: var(--accent); filter: blur(120px); opacity: .25; top: -40%; left: 50%; transform: translateX(-50%); pointer-events: none; }
.band h2 { font-size: clamp(28px, 4vw, 44px); position: relative; }
.band p { position: relative; margin: 18px auto 0; max-width: 560px; color: var(--text-2); font-size: 17px; }
.band__cta { position: relative; margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.band__note { position: relative; margin-top: 18px; font-size: 13.5px; color: var(--text-3); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.contact-info { display: grid; gap: 14px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.contact-row__ic { width: 38px; height: 38px; border-radius: 10px; background: var(--surface-hi); border: 1px solid var(--line-2); display: grid; place-items: center; flex-shrink: 0; }
.contact-row__ic svg { width: 18px; height: 18px; color: var(--accent-2); }
.contact-row b { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; display: block; margin-bottom: 3px; }
.contact-row a, .contact-row p { font-size: 15px; color: var(--text); word-break: break-word; }
.contact-row a:hover { color: var(--accent-2); }

.form { padding: 30px; border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--line); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: span 2; }
.field label { font-size: 13px; color: var(--text-2); font-weight: 500; }
.field label .req { color: var(--accent-2); }
.field label .opt { color: var(--text-3); font-weight: 400; font-size: 12px; }
.input, .select, .textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 12px 14px; font-size: 15px; color: var(--text); font-family: inherit;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input::placeholder, .textarea::placeholder { color: var(--text-3); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); background: var(--bg-elev); }
.select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23717a8c' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.textarea { resize: vertical; min-height: 110px; }
.form__consent { grid-column: span 2; display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--text-3); line-height: 1.5; }
.form__consent input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }
.form__consent a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }
.form__submit { grid-column: span 2; }
.form__submit .btn { width: 100%; }
.field.error .input, .field.error .select, .field.error .textarea { border-color: var(--bad); box-shadow: 0 0 0 3px rgba(248,113,113,0.15); }
.field__err { font-size: 12px; color: var(--bad); display: none; }
.field.error .field__err { display: block; }
.form__ok { display: none; text-align: center; padding: 20px; background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.3); border-radius: var(--r); color: var(--good); font-size: 15px; margin-top: 16px; }
.form__ok.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: 56px 30px; background: var(--bg-2); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { font-size: 14px; color: var(--text-3); line-height: 1.6; max-width: 320px; }
.footer__col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); margin-bottom: 16px; font-weight: 600; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: 14.5px; color: var(--text-2); transition: color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__contact { display: grid; gap: 10px; }
.footer__contact > a, .footer__contact > span { font-size: 14px; color: var(--text-2); display: flex; align-items: flex-start; gap: 9px; line-height: 1.55; }
.footer__contact > a > span, .footer__contact > span > span { min-width: 0; word-break: break-word; }
.footer__contact b { color: var(--text-3); font-weight: 500; }
.footer__contact svg { width: 15px; height: 15px; color: var(--text-3); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 24px; flex-wrap: wrap; }
.footer__bottom p { font-size: 13px; color: var(--text-3); }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { font-size: 13px; color: var(--text-3); }
.footer__legal a:hover { color: var(--text-2); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 36px; height: 36px; border-radius: 9px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.footer__social a:hover { background: var(--surface-hi); border-color: var(--line-2); }
.footer__social svg { width: 17px; height: 17px; color: var(--text-2); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 90px; min-height: 70vh; position: relative; }
.legal__bg { position: absolute; inset: 0; pointer-events: none; }
.legal__bg .glow { width: 460px; height: 460px; background: var(--accent); top: -160px; right: -120px; opacity: .14; }
.legal .wrap { max-width: 820px; position: relative; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-2); margin-bottom: 26px; }
.legal__back:hover { color: var(--accent-2); }
.legal__back svg { width: 16px; height: 16px; }
.legal h1 { font-size: clamp(32px, 5vw, 46px); margin-bottom: 14px; }
.legal__intro { font-size: 16px; color: var(--text-3); margin-bottom: 40px; }
.legal__block { padding: 26px 28px; background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008)); background-color: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); margin-bottom: 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); }
.legal__block h2 { font-size: 20px; margin-bottom: 14px; color: #fff; }
.legal__block h3 { font-size: 16px; margin: 18px 0 8px; color: var(--text); }
.legal__block p, .legal__block li { font-size: 15px; color: var(--text-2); line-height: 1.7; }
.legal__block p + p { margin-top: 10px; }
.legal__block ul { margin: 8px 0 0; display: grid; gap: 6px; }
.legal__block ul li { padding-left: 20px; position: relative; }
.legal__block ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); }
.legal__block a { color: var(--accent-2); }
.legal__block a:hover { text-decoration: underline; }
.legal__addr { font-style: normal; line-height: 1.7; color: var(--text); font-size: 15px; }
.legal__ph { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--warn); border: 1px dashed rgba(251,191,36,0.4); border-radius: 6px; padding: 2px 7px; display: inline-block; }
.legal__num { font-family: 'Geist Mono', monospace; color: var(--accent-2); font-size: 13px; margin-right: 8px; }
.legal__toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.legal__toc a { font-size: 13px; color: var(--text-2); padding: 6px 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; }
.legal__toc a:hover { border-color: var(--line-2); color: var(--text); }

/* ============================================================
   MODAL (booking)
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal__ov { position: absolute; inset: 0; background: rgba(4,6,11,0.78); backdrop-filter: blur(8px); animation: fade .25s; }
.modal__box { position: relative; z-index: 1; width: 100%; max-width: 460px; background: var(--bg-elev); border: 1px solid var(--line-2); border-radius: var(--r-xl); padding: 36px; box-shadow: var(--sh-lg); animation: pop .3s cubic-bezier(.22,.61,.36,1); text-align: center; }
.modal__ic { width: 58px; height: 58px; border-radius: 16px; background: var(--grad); display: grid; place-items: center; margin: 0 auto 20px; }
.modal__ic svg { width: 28px; height: 28px; color: #05080f; }
.modal__box h3 { font-size: 23px; margin-bottom: 12px; }
.modal__box p { font-size: 15px; color: var(--text-2); margin-bottom: 24px; line-height: 1.55; }
.modal__box .btn { width: 100%; }
.modal__alt { margin-top: 14px; display: flex; gap: 10px; }
.modal__alt .btn { flex: 1; }
.modal__close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 9px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-2); }
.modal__close:hover { background: var(--surface-hi); }
.modal__close svg { width: 18px; height: 18px; }
@keyframes fade { from{opacity:0} to{opacity:1} }
@keyframes pop { from{opacity:0; transform: translateY(16px) scale(.97)} to{opacity:1; transform:none} }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta .btn--ghost, .nav__cta .nav-call { display: none; }
  /* Mobile: dezenterer, kompakterer "Termin buchen"-Button im Header */
  .nav__cta .nav__book {
    height: 44px; padding: 0 15px; font-size: 15px;
    filter: saturate(.85);
    box-shadow: 0 6px 16px -9px rgba(34,211,238,0.35);
  }
  .nav__cta .nav__book:hover { transform: none; box-shadow: 0 6px 18px -9px rgba(34,211,238,0.45); }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .phone-stage { margin-top: 8px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .prob-grid, .feat-grid, .ind-grid, .price-grid, .testi-grid, .case-grid, .steps3 { grid-template-columns: repeat(2, 1fr); }
  .ind--wide { grid-column: span 2; }
  .split { grid-template-columns: 1fr; }
  .flow-layout, .trust-layout, .faq-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .email, .trust-shield { position: static; }
  .price--feat { transform: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  .stats, .prob-grid, .feat-grid, .ind-grid, .price-grid, .testi-grid, .case-grid, .steps3 { grid-template-columns: 1fr; }
  .ind--wide { grid-column: span 1; flex-direction: column; text-align: left; align-items: flex-start; }
  .form__grid { grid-template-columns: 1fr; }
  .field.full, .form__consent, .form__submit { grid-column: span 1; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .btn { max-width: 100%; }
  .hero__cta { width: 100%; flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .band__cta { flex-direction: column; align-items: stretch; }
  .band__cta .btn { width: 100%; }
  .band-cta { padding: 22px 20px; }
  .band-cta .btn { width: 100%; flex-shrink: 1; }
  .price-ent { flex-direction: column; align-items: stretch; text-align: left; }
  .price-ent .btn { width: 100%; }
  .form__submit .btn { width: 100%; }
  .modal__box { padding: 28px 22px; }
  .modal__alt { flex-wrap: wrap; }
  .float-card--summary { right: 0; bottom: 24px; transform: scale(.85); transform-origin: bottom right; }
  .phone { width: 260px; }
}
/* Mobile: kompakter Icon-Button (Kalender) statt Text, verhindert Überlauf */
@media (max-width: 767px) {
  .nav .wrap { flex-wrap: nowrap; gap: 12px; }
  .brand { min-width: 0; }
  .nav__cta { gap: 8px; }
  .nav__cta .nav__book {
    width: 46px; height: 46px; padding: 0; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .nav__book-full { display: none; }
  .nav__book-ic { display: block; width: 22px; height: 22px; }
}
@media (max-width: 360px) {
  .brand__claim { display: none; }
}


/* ============================================================
   ANRUF-SIMULATOR
   ============================================================ */
.sim-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 18px; align-items: stretch; }
.sim-side { display: flex; flex-direction: column; grid-column: 1 / -1; }
.sim-side .sim-sum { margin-top: 0; }
@media (min-width: 1240px) {
  .sim-layout { grid-template-columns: 0.82fr 1.05fr 0.78fr; }
  .sim-side { grid-column: auto; }
}
.sim-menu { display: flex; flex-direction: column; gap: 10px; }
.sim-choice {
  display: flex; align-items: flex-start; gap: 14px; text-align: left;
  padding: 16px 18px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  transition: border-color .25s, background .25s, transform .18s;
}
.sim-choice:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-1px); }
.sim-choice.active {
  border-color: rgba(59,130,246,0.45); background: var(--grad-soft);
  box-shadow: 0 14px 40px -18px rgba(59,130,246,0.45), inset 0 1px 0 rgba(255,255,255,0.07);
}
.sim-choice__ic {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center; color: var(--accent-2);
  background: var(--accent-soft); border: 1px solid rgba(59,130,246,0.25);
}
.sim-choice__ic svg { width: 19px; height: 19px; }
.sim-choice.active .sim-choice__ic { background: var(--grad); color: #05080f; border-color: transparent; }
.sim-choice__b b { display: block; font-size: 15px; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.sim-choice__b span { display: block; font-size: 13px; color: var(--text-3); margin-top: 3px; line-height: 1.5; }
.sim-note { font-size: 12.5px; color: var(--text-3); padding: 6px 4px 0; }

.sim-panel {
  display: flex; flex-direction: column; min-height: 520px;
  border-radius: var(--r-xl); overflow: hidden;
  background: rgba(12,16,25,0.55);
  -webkit-backdrop-filter: blur(18px) saturate(150%); backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--line-2);
  box-shadow: var(--sh), inset 0 1px 0 rgba(255,255,255,0.06);
}
.sim-head {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 18px; border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.sim-head__av {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad); color: #05080f; flex-shrink: 0;
}
.sim-head__av svg { width: 20px; height: 20px; }
.sim-head__who { flex: 1; min-width: 0; }
.sim-head__who b { display: block; font-size: 15px; color: #fff; letter-spacing: -0.01em; }
.sim-head__who span { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-3); }
.sim-head__who span i { width: 7px; height: 7px; border-radius: 50%; background: var(--text-3); flex-shrink: 0; }
.sim-head__who span.live { color: var(--good); }
.sim-head__who span.live i { background: var(--good); animation: simPulse 1.2s infinite; }
.sim-head__who span.done { color: var(--accent-2); }
.sim-head__who span.done i { background: var(--accent-2); }
@keyframes simPulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }
.sim-head__timer { font-size: 13px; color: var(--text-3); font-variant-numeric: tabular-nums; }

.sim-log { flex: 1; overflow-y: auto; padding: 20px 18px; display: flex; flex-direction: column; gap: 12px; scroll-behavior: smooth; }
.sim-empty { margin: auto; text-align: center; max-width: 340px; padding: 20px 0; }
.sim-empty__ic {
  width: 52px; height: 52px; border-radius: 15px; margin: 0 auto 14px;
  display: grid; place-items: center; color: var(--accent-2);
  background: var(--accent-soft); border: 1px solid rgba(59,130,246,0.25);
}
.sim-empty__ic svg { width: 24px; height: 24px; }
.sim-empty b { display: block; font-size: 16px; color: #fff; margin-bottom: 8px; }
.sim-empty p { font-size: 14px; color: var(--text-3); line-height: 1.6; }

.sim-bubble {
  max-width: 82%; padding: 11px 15px; border-radius: 15px;
  font-size: 14px; line-height: 1.55; animation: simIn .3s ease both;
}
.sim-bubble__label { display: block; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.sim-bubble--ai { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 5px; color: var(--text); }
.sim-bubble--ai .sim-bubble__label { color: var(--accent-2); }
.sim-bubble--in { align-self: flex-end; background: linear-gradient(150deg, rgba(59,130,246,0.28), rgba(34,211,238,0.16)); border: 1px solid rgba(59,130,246,0.35); border-bottom-right-radius: 5px; color: #fff; }
.sim-typing { align-self: flex-start; display: inline-flex; gap: 5px; padding: 13px 16px; border-radius: 15px; border-bottom-left-radius: 5px; background: var(--surface-2); border: 1px solid var(--line); }
.sim-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--text-3); animation: simDot 1s infinite; }
.sim-typing i:nth-child(2) { animation-delay: .15s }
.sim-typing i:nth-child(3) { animation-delay: .3s }
@keyframes simDot { 0%,100% { opacity: .3; transform: translateY(0) } 50% { opacity: 1; transform: translateY(-3px) } }
@keyframes simIn { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: translateY(0) } }
@media (prefers-reduced-motion: reduce) {
  .sim-bubble { animation: none; }
  .sim-typing i { animation: none; }
}

.sim-sum {
  align-self: stretch; margin-top: 6px; padding: 16px 18px; border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(52,211,153,0.08), rgba(52,211,153,0.02));
  border: 1px solid rgba(52,211,153,0.25); animation: simIn .35s ease both;
}
.sim-sum__h { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--good); margin-bottom: 12px; }
.sim-sum__h svg { width: 16px; height: 16px; flex-shrink: 0; }
.sim-sum__rows { display: grid; gap: 7px; }
.sim-sum__rows > div { display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; border-bottom: 1px dashed var(--line); padding-bottom: 7px; }
.sim-sum__rows > div:last-child { border-bottom: none; padding-bottom: 0; }
.sim-sum__rows span { color: var(--text-3); flex-shrink: 0; }
.sim-sum__rows b { color: var(--text); font-weight: 500; text-align: right; }
.sim-sum__rows b.crit { color: var(--bad); }
.sim-sum__rows b.warn { color: var(--warn); }
.sim-sum__rows b.ok { color: var(--good); }
.sim-sum__txt { margin-top: 12px; font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
.sim-sum__txt b { color: #fff; }

.sim-cta {
  margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 30px; border-radius: var(--r-xl);
  background: var(--grad-soft); border: 1px solid rgba(59,130,246,0.28);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.sim-cta h3 { font-size: 20px; margin-bottom: 6px; }
.sim-cta p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; max-width: 560px; }
.sim-cta .btn { flex-shrink: 0; }

/* ============================================================
   FROSTED OBSIDIAN — dezente Veredelung
   ============================================================ */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 620px at 88% -8%, rgba(34,211,238,0.05), transparent 62%),
    radial-gradient(1000px 720px at -12% 32%, rgba(59,130,246,0.05), transparent 62%);
}
.card, .stat, .prob, .faq-item, .price, .about-card, .split__col, .trust-item {
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.stat, .price { box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.price:hover { border-color: var(--line-2); }
.faq-item { box-shadow: inset 0 1px 0 rgba(255,255,255,0.04); }
.email { -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); background: rgba(12,16,25,0.72); }
.band { -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }

/* Simulator responsive */
@media (max-width: 1000px) {
  .sim-layout { grid-template-columns: 1fr; }
  .sim-side { grid-column: auto; }
  .sim-panel { min-height: 480px; }
}
@media (max-width: 640px) {
  .sim-panel { min-height: 430px; }
  .sim-log { padding: 16px 13px; }
  .sim-bubble { max-width: 92%; }
  .sim-cta { flex-direction: column; align-items: stretch; text-align: left; padding: 22px 20px; }
  .sim-cta .btn { width: 100%; }
}


/* ============================================================
   HERO DASHBOARD (ersetzt Handy-Mockup)
   ============================================================ */
.hero-dash { position: relative; display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 470px; margin-left: auto; }
.hero-dash .glow--a { width: 340px; height: 340px; background: var(--accent); top: -6%; left: -10%; opacity: .26; }
.hero-dash .glow--b { width: 300px; height: 300px; background: var(--accent-2); bottom: -4%; right: -8%; opacity: .2; }

.dash {
  position: relative; z-index: 2; border-radius: var(--r-xl); overflow: hidden;
  background: rgba(12,16,25,0.62);
  -webkit-backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255,255,255,0.07);
}
.dash__head { display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-bottom: 1px solid var(--line); background: var(--surface); }
.dash__av { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--grad); color: #05080f; flex-shrink: 0; }
.dash__av svg { width: 20px; height: 20px; }
.dash__who { flex: 1; min-width: 0; }
.dash__who b { display: block; font-size: 15px; color: #fff; letter-spacing: -0.01em; }
.dash__who span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--good); white-space: nowrap; }
.dash__who span i { width: 7px; height: 7px; border-radius: 50%; background: var(--good); animation: simPulse 1.2s infinite; }
.dash__timer { font-size: 13px; color: var(--text-3); font-variant-numeric: tabular-nums; }

.dash__meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border-bottom: 1px solid var(--line); }
.dash__meta > div { background: rgba(9,12,19,0.75); padding: 10px 18px; }
.dash__meta span { display: block; font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--text-3); margin-bottom: 2px; }
.dash__meta b { display: block; font-size: 13.5px; font-weight: 500; color: var(--text); letter-spacing: -0.01em; }
.dash__meta b.dash__hi { color: var(--warn); }

.dash__dialog { display: flex; flex-direction: column; gap: 10px; padding: 16px 18px 14px; }
.dash-msg { max-width: 88%; padding: 10px 14px; border-radius: 13px; font-size: 13.5px; line-height: 1.5; color: var(--text); }
.dash-msg__label { display: block; font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.dash-msg--ai { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.dash-msg--ai .dash-msg__label { color: var(--accent-2); }
.dash-msg--in { align-self: flex-end; background: linear-gradient(150deg, rgba(59,130,246,0.26), rgba(34,211,238,0.14)); border: 1px solid rgba(59,130,246,0.33); border-bottom-right-radius: 5px; color: #fff; }

.dash__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 18px; }
.dash-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 500; padding: 5px 11px; border-radius: 999px; }
.dash-chip svg { width: 12px; height: 12px; flex-shrink: 0; }
.dash-chip--good { color: var(--good); background: rgba(52,211,153,0.09); border: 1px solid rgba(52,211,153,0.22); }
.dash-chip--blue { color: var(--accent-2); background: var(--accent-soft); border: 1px solid rgba(59,130,246,0.25); }

.dash-sum {
  position: relative; z-index: 2; margin-left: 36px;
  border-radius: var(--r-lg); padding: 14px 18px 15px;
  background: rgba(12,16,25,0.8);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--line-2);
  box-shadow: var(--sh), inset 0 1px 0 rgba(255,255,255,0.06);
}
.dash-sum__h { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: #fff; margin-bottom: 9px; }
.dash-sum__h .ic { width: 22px; height: 22px; border-radius: 7px; background: var(--accent-soft); display: grid; place-items: center; flex-shrink: 0; }
.dash-sum__h .ic svg { width: 13px; height: 13px; color: var(--accent-2); }
.dash-sum__badge { margin-left: auto; font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--good); background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.25); border-radius: 999px; padding: 3px 9px; white-space: nowrap; }
.dash-sum__row { display: flex; justify-content: space-between; gap: 14px; font-size: 12.5px; padding: 4px 0; border-bottom: 1px dashed var(--line); }
.dash-sum__row:last-child { border-bottom: none; padding-bottom: 0; }
.dash-sum__row span { color: var(--text-3); flex-shrink: 0; }
.dash-sum__row b { color: var(--text); font-weight: 500; text-align: right; }

@media (max-width: 1000px) {
  .hero-dash { margin: 8px auto 0; }
}
@media (max-width: 640px) {
  .dash__head { padding: 13px 15px; }
  .dash__meta > div { padding: 9px 15px; }
  .dash__dialog { padding: 14px 15px 12px; }
  .dash__chips { padding: 0 15px 15px; }
  .dash-msg { max-width: 94%; }
  .dash-sum { margin-left: 14px; }
  .dash-sum__badge { display: none; }
}
