/* ─────────────────────────────────────────────────────────────
   SEEDON.RU — AI-сотрудник для малого бизнеса
   Design: terminal + editorial, money-green accent
   ───────────────────────────────────────────────────────────── */

/* ───── RESET ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; background: none; border: none; outline: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ───── TOKENS ───── */
:root {
  /* surfaces */
  --bg0: #080b11;
  --bg1: #0d1117;
  --bg2: #111827;
  --bg3: #1a2235;
  --bg-code: #0a0e14;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  /* accent: money green */
  --accent: #10b981;
  --accent-dim: #059669;
  --accent-soft: rgba(16,185,129,0.12);
  --accent-glow: rgba(16,185,129,0.35);

  /* status */
  --red: #ef4444;
  --yellow: #f59e0b;
  --blue: #60a5fa;

  /* text */
  --text: #f1f5f9;
  --text2: #94a3b8;
  --text3: #64748b;
  --text4: #475569;

  /* type */
  --font-display: 'Unbounded', 'Arial Black', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* radii */
  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* layout */
  --container: 1300px;
  --gutter: clamp(16px, 4vw, 32px);
}

/* ───── BASE ───── */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg0);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* grain overlay — adds tactile feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ───── TYPE ───── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(40px, 7vw, 84px); font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }

p { color: var(--text2); }

.mono { font-family: var(--font-mono); font-feature-settings: "zero"; }

.grad {
  background: linear-gradient(135deg, var(--accent) 0%, #6ee7b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* section label — like "// services" */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.sec-label::before {
  content: '//';
  opacity: 0.5;
}

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.3s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #03110b;
  box-shadow: 0 12px 40px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 60px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.25);
  background: #0fd392;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--text3);
  transform: translateY(-1px);
}
.btn-ghost {
  padding: 10px 0;
  color: var(--text2);
  font-size: 14px;
}
.btn-ghost:hover { color: var(--accent); }
.btn .arr {
  transition: transform 0.2s var(--ease);
}
.btn:hover .arr { transform: translateX(4px); }

/* ───── NAV ───── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(8, 11, 17, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
nav.site-nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand img {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text2);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.lang-switch:hover { color: var(--accent); border-color: var(--accent-dim); }
/* nav mobile handled in MOBILE section below */

/* ───── HERO ───── */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 800px;
  background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 55%);
  z-index: -2;
  pointer-events: none;
}
.hero-terminal {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  right: 0;
  z-index: -1;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 70%, transparent 100%);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  padding: 60px var(--gutter);
  white-space: pre;
  overflow: hidden;
  pointer-events: none;
}
.hero-terminal .line {
  display: block;
  line-height: 1.9;
  opacity: 0;
  animation: fadeLine 0.6s var(--ease-out) forwards;
}
@keyframes fadeLine {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 0.7; transform: none; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 40px;
  align-items: center;
}
.hero-text {
  text-align: left;
}
.hero-text h1 {
  font-size: clamp(28px, 3.2vw, 42px);
}
.hero-text .mini-form {
  max-width: 100%;
}
.hero-text .mini-input {
  background: transparent;
  border-color: #2A3441;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 32px var(--accent-glow);
  border: 1px solid var(--border-strong);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-kicker .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  margin-bottom: 28px;
}
.hero h1 .strike {
  color: var(--text3);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--red);
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text2);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}
.victor-says {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text3);
  padding: 14px 18px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, var(--accent-soft) 0%, transparent 100%);
  max-width: 620px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.victor-says::before {
  content: '// виктор:';
  color: var(--accent);
  margin-right: 8px;
  font-weight: 500;
}

/* metric strip under hero */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding: 32px 36px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(16,185,129,0.04) 0%, var(--bg1) 50%, var(--bg1) 100%);
  box-shadow: 0 20px 80px -20px rgba(0,0,0,0.6);
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metric-val {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}
.metric-val .unit {
  font-family: var(--font-mono);
  font-size: 0.5em;
  font-weight: 500;
  color: var(--accent);
  margin-left: 4px;
  letter-spacing: 0;
}
.metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text3);
}
@media (max-width: 780px) {
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ───── FORMULA TABS + DASHBOARD ───── */
.formula-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 32px;
}
.formula-tab {
  flex: 1;
  min-width: 220px;
  padding: 20px 24px;
  background: var(--bg2);
  border: 2px solid var(--border);
  border-radius: var(--r);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.formula-tab:hover {
  border-color: var(--accent-dim);
}
.formula-tab--active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 20px var(--accent-glow);
}
.formula-tab-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 4px;
}
.formula-tab-result {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}
/* formula demo */
.formula-demo-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 48px;
}
.formula-demo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  display: block;
}
@media (max-width: 600px) {
  .formula-tabs { flex-direction: column; gap: 10px; }
  .formula-tab { min-width: 0; }
}

/* ───── SOCIAL PROOF BAR ───── */
.proof-bar {
  border-bottom: 1px solid var(--border);
  background: var(--bg1);
  padding: 12px 0;
  margin-top: -48px;
}
.proof-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text3);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.proof-icon {
  font-size: 14px;
}
@media (max-width: 768px) {
  .proof-bar-inner { gap: 16px 24px; justify-content: center; }
  .proof-item { font-size: 12px; }
}

/* ───── ROLE CARDS ───── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 48px;
  margin-top: 48px;
}
.roles-grid .role-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}
.role-card {
  position: relative;
  padding: 24px 24px 28px;
  padding-top: 124px;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  overflow: visible;
}
.role-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-dim);
  box-shadow: 0 8px 40px var(--accent-glow), 0 0 0 1px var(--accent-dim);
}
.role-img {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
}
.role-img img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 16px var(--accent-glow);
  border: 2px solid var(--border-strong);
}
.role-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 8px;
}
.role-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.role-metric {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  width: 100%;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .roles-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .roles-grid .role-card:last-child:nth-child(3n+1) { grid-column: auto; }
}
@media (max-width: 480px) {
  .roles-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 20px 8px;
    scroll-padding: 0 20px;
  }
  .roles-grid::-webkit-scrollbar { display: none; }
  .roles-grid .role-card:last-child:nth-child(3n+1) { grid-column: auto; }
  .role-card { flex: 0 0 78%; scroll-snap-align: start; min-width: 0; padding: 20px 20px 24px; padding-top: 110px; }
  .role-img { width: 130px; height: 130px; top: -28px; }
}

/* ───── HERO HINT ───── */
.hero-hint {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 20px;
  font-style: italic;
}

/* ───── WORKFLOW EXAMPLE ───── */
.workflow-example {
  max-width: 720px;
  margin: 48px auto 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.workflow-header {
  margin-bottom: 24px;
}
.workflow-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.workflow-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
}
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wf-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}
.wf-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text2);
  flex-shrink: 0;
}
.wf-step-result .wf-num {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}
.wf-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.wf-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.5;
}
.wf-connector {
  width: 1px;
  height: 12px;
  background: var(--border);
  margin-left: 15px;
}
@media (max-width: 600px) {
  .workflow-example { padding: 20px 16px; }
}

/* ───── INTEGRATIONS BAR ───── */
.integrations-bar {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.integrations-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  text-align: center;
  margin-bottom: 12px;
}
.integrations-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.int-logo {
  font-size: 13px;
  color: var(--text3);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .integrations-logos { gap: 16px 20px; }
  .int-logo { font-size: 12px; }
}

/* ───── CASE STUDY ───── */
.case-study {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.cs-header {
  margin-bottom: 32px;
}
.cs-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 12px;
}
.cs-tagline {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.6;
}
.cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.cs-metric {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.cs-metric-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.cs-metric-label {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}
.cs-metric-note {
  font-size: 11px;
  color: var(--text3);
  font-family: var(--font-mono);
}
.cs-quote {
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  background: var(--accent-soft);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.cs-quote p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 8px;
}
.cs-quote footer {
  font-size: 12px;
  color: var(--text3);
  font-style: normal;
}
@media (max-width: 768px) {
  .cs-metrics { grid-template-columns: 1fr; gap: 12px; }
  .case-study { padding: 24px 20px; }
  .cs-metric-val { font-size: 24px; }
}

/* ───── ALT SECTION BG ───── */
.s-alt { background: var(--bg1); }

/* ───── TASK TABS (Lindy-style) ───── */
.task-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.task-tab {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.task-tab:hover { border-color: var(--accent-dim); color: var(--text); }
.task-tab--active { background: var(--accent); color: #000; border-color: var(--accent); font-weight: 600; }
.task-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.task-info { text-align: left; }
.task-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.task-info h3 { font-size: 24px; margin-bottom: 12px; line-height: 1.3; }
.task-info p { color: var(--text2); font-size: 15px; line-height: 1.7; }
.task-demo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .task-split { grid-template-columns: 1fr; gap: 24px; }
  .task-info { text-align: center; }
  .task-demo { order: -1; }
}

/* ───── STEPS GRID ───── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.3s, border-color 0.3s;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--accent-dim); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-card img { width: 120px; height: 120px; margin: 0 auto 16px; display: block; border-radius: 12px; }
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ───── COMPARISON CARDS (Lindy-style) ───── */
.cmp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.cmp-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg1);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.cmp-card:hover { transform: translateY(-4px); }
.cmp-card-dim { opacity: 0.7; }
.cmp-card-dim:hover { opacity: 1; }
.cmp-card-ours {
  border-color: var(--accent);
  background: rgba(16,185,129,0.05);
  position: relative;
}
.cmp-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 999px;
}
.cmp-emoji { font-size: 36px; margin-bottom: 12px; }
.cmp-card h3 { font-size: 18px; margin-bottom: 4px; }
.cmp-subtitle { font-size: 13px; color: var(--text3); font-style: italic; margin-bottom: 16px; }
.cmp-price { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.cmp-price span { font-size: 14px; font-weight: 400; color: var(--text3); }
.cmp-price-accent { color: var(--accent); }
.cmp-list { list-style: none; text-align: left; font-size: 14px; line-height: 2; }
.cmp-list li::before { margin-right: 8px; }
.cmp-list-good li::before { content: '✓'; color: var(--accent); }
.cmp-list-bad li::before { content: '✗'; color: var(--text3); }
@media (max-width: 768px) { .cmp-grid { grid-template-columns: 1fr; } }

/* ───── INTERFACES SPLIT ───── */
.interfaces-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.if-card { text-align: center; }
.if-placeholder {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  font-size: 14px;
  font-family: var(--font-mono);
}
.if-wide { aspect-ratio: 16/9; }
.if-tall { aspect-ratio: 9/16; max-height: 400px; }
.if-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.if-caption {
  font-size: 14px;
  color: var(--text2);
  margin-top: 12px;
}
@media (max-width: 768px) {
  .interfaces-split { grid-template-columns: 1fr; gap: 24px; }
  .if-tall { max-height: 300px; }
}

/* ───── WHY GRID ───── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
}
.why-item:hover { border-color: var(--accent-dim); }
.why-icon { font-size: 20px; flex-shrink: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ───── PRODUCT STORY (3 cards) ───── */
.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}
.story-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 0 28px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.story-card:hover { transform: translateY(-4px); border-color: var(--accent-dim); }
.story-card-visual { margin-bottom: 20px; overflow: hidden; }
.story-card-visual img,
.adv-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1376 / 768;
  object-fit: cover;
  display: block;
}
.story-card-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding: 0 24px;
  margin-bottom: 8px;
}
.story-card h3 { font-size: 18px; padding: 0 24px; margin-bottom: 8px; }
.story-card p { font-size: 14px; color: var(--text2); line-height: 1.6; padding: 0 24px; overflow-wrap: anywhere; }
@media (max-width: 768px) { .story-cards { grid-template-columns: 1fr; } }

/* ───── ADVANTAGES GRID ───── */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}
.adv-card {
  padding: 0 0 28px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.adv-card:hover { transform: translateY(-4px); border-color: var(--accent-dim); }
.adv-visual {
  margin-bottom: 20px;
  overflow: hidden;
}
.adv-visual-mockups {
  gap: 12px;
  padding: 16px;
  background: var(--bg2);
}
.adv-mockup-desk { border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.adv-mockup-phone { border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.adv-card h3 { font-size: 18px; padding: 0 24px; margin-bottom: 8px; }
.adv-card p { font-size: 14px; color: var(--text2); line-height: 1.6; padding: 0 24px; }
.adv-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 768px) {
  .adv-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 20px 8px;
    scroll-padding: 0 20px;
  }
  .adv-grid::-webkit-scrollbar { display: none; }
  .adv-card { flex: 0 0 85%; scroll-snap-align: start; min-width: 0; }
}

/* ───── CMP GRID 3-col variant ───── */
.cmp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cmp-card-featured { transform: scale(1.04); z-index: 1; }
.cmp-card-featured:hover { transform: scale(1.04) translateY(-4px); }
@media (max-width: 768px) {
  .cmp-grid-3 { grid-template-columns: 1fr; }
  .cmp-card-featured { transform: none; order: -1; }
  .cmp-card-featured:hover { transform: translateY(-4px); }
}

/* ───── CASE STUDY: BEFORE/AFTER ───── */
.cs-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.cs-ba-col {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.cs-ba-col h3 { font-size: 18px; margin-bottom: 16px; }
.cs-ba-col ul { list-style: none; font-size: 14px; color: var(--text2); line-height: 2; }
.cs-ba-col ul li::before { margin-right: 8px; }
.cs-ba-before { background: var(--bg2); }
.cs-ba-before h3 { color: var(--text3); }
.cs-ba-before ul li::before { content: '✗'; color: var(--text3); }
.cs-ba-after { background: rgba(16,185,129,0.05); border-color: var(--accent-dim); }
.cs-ba-after h3 { color: var(--accent); }
.cs-ba-after ul li::before { content: '✓'; color: var(--accent); }
@media (max-width: 768px) { .cs-before-after { grid-template-columns: 1fr; } }

/* ───── CASE STUDY: CREATED TAGS ───── */
.cs-created h3, .cs-problems h3 {
  font-size: 18px;
  margin-bottom: 16px;
  text-align: center;
}
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.cs-tag {
  padding: 8px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text2);
}

/* ───── CASE STUDY: PROBLEMS ───── */
.cs-problem-list {
  max-width: 720px;
  margin: 0 auto;
}
.cs-problem {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}
.cs-problem:last-child { border-bottom: none; }
.cs-problem strong { color: var(--text); }

/* ───── STORY COMPACT ───── */
.story-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.story-item {
  text-align: center;
  padding: 24px 20px;
}
.story-ico { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; margin-bottom: 12px; }
.story-item h3 { font-size: 18px; margin-bottom: 8px; }
.story-item p { font-size: 14px; color: var(--text2); line-height: 1.6; }
@media (max-width: 768px) { .story-compact { grid-template-columns: 1fr; gap: 16px; } }

/* ───── TRUST COMPACT GRID ───── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-card {
  padding: 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.trust-card:hover { border-color: var(--accent-dim); }
.trust-ico { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; margin-bottom: 8px; }
.trust-card h3 { font-size: 15px; margin-bottom: 6px; }
.trust-card p { font-size: 13px; color: var(--text2); line-height: 1.5; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }

/* ───── PILOT CARDS ───── */
.pilot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pilot-card {
  padding: 28px 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.pilot-card:hover { transform: translateY(-4px); border-color: var(--accent-dim); }
.pilot-icon { width: 120px; height: 120px; border-radius: 16px; margin-bottom: 16px; object-fit: cover; }
.pilot-card h3 { font-size: 18px; margin-bottom: 6px; }
.pilot-tagline { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.pilot-card p { font-size: 14px; color: var(--text2); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.pilot-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
@media (max-width: 900px) { .pilot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pilot-grid { grid-template-columns: 1fr; } }

/* ───── PILOT MODAL ───── */
.pilot-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8,11,17,0.85);
  backdrop-filter: blur(12px);
  overflow-y: auto;
}
.pilot-modal-box {
  position: relative;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px 32px;
  background: var(--bg1);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  text-align: left;
}
.pilot-modal-box::-webkit-scrollbar { width: 6px; }
.pilot-modal-box::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
.pilot-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text3);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}
.pilot-modal-close:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.pilot-modal-icon {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 16px;
}
.pilot-modal-box h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pilot-modal-sub {
  color: var(--text2);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.pm-block {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg2);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.pm-block h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--text2);
}
.pm-pain h4 { color: #f87171; }
.pm-pain { border-color: rgba(248,113,113,0.15); }
.pm-gain h4 { color: var(--accent); }
.pm-gain { border-color: rgba(16,185,129,0.15); }
.pm-block ul, .pm-block ol {
  margin: 0;
  padding-left: 20px;
}
.pm-block li {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 4px;
}
.pm-block li strong { color: var(--text); }
.pm-timeline { list-style: none; padding-left: 0; }
.pm-timeline li { padding-left: 0; position: relative; }
.pm-price {
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 16px;
}
.pm-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 15px;
  white-space: normal;
  margin-bottom: 16px;
}
.pm-close-bottom {
  display: none;
  width: 100%;
  text-align: center;
  padding: 12px;
  margin-top: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text2);
  font-size: 15px;
  cursor: pointer;
}
.pm-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text3);
  margin: 0;
}
[x-cloak] { display: none !important; }

@media (max-width: 600px) {
  .pilot-modal { padding: 0; align-items: stretch; }
  .pilot-modal-box {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    padding: 24px 16px;
  }
  .pm-cta { font-size: 14px; padding: 12px 16px; }
  .pm-close-bottom { display: block; }
}

/* ───── QUIZ ───── */
.quiz-progress {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s;
}
.quiz-q {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.quiz-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quiz-opt {
  padding: 14px 16px;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.quiz-opt:hover {
  border-color: var(--accent);
  background: rgba(16,185,129,0.05);
}
@media (max-width: 480px) { .quiz-opts { grid-template-columns: 1fr; } }

/* ───── ABOUT ROW ───── */
.about-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  max-width: 960px;
  margin: 0 auto;
}
.about-avatar {
  flex-shrink: 0;
  text-align: center;
}
.about-avatar img {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
}
.about-avatar img.about-founder {
  height: auto;
  object-fit: contain;
}
.about-caption {
  font-size: 14px;
  color: var(--text2);
  margin-top: 12px;
  line-height: 1.4;
}
.about-text {
  flex: 1;
  min-width: 240px;
}
@media (max-width: 768px) {
  .about-row { flex-wrap: wrap; }
  .about-avatar img { width: 120px; height: 120px; }
  .about-text { min-width: 100%; order: 3; text-align: center; }
}

/* ───── FINAL CTA ───── */
.final-cta { padding: 96px 0; }
.final-cta h2 { font-size: clamp(28px, 4vw, 40px); }

/* ───── HERO TRUST BADGE ───── */
.hero-trust {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text3);
  letter-spacing: 0.04em;
  text-align: center;
}

.hero-tg-alt {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
}
.hero-tg-alt a {
  color: var(--text3);
  transition: color 0.2s;
}
.hero-tg-alt a:hover { color: var(--accent); }

/* ───── MINI LEAD FORM ───── */
.mini-form-wrap {
  margin-top: 24px;
}
.mini-form {
  display: flex;
  gap: 10px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.mini-input {
  flex: 1;
  padding: 14px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s;
}
.mini-input:focus { border-color: var(--accent); outline: none; }
.mini-input::placeholder { color: var(--text3); }
.mini-btn { white-space: nowrap; flex-shrink: 0; }
.mini-form-ok {
  text-align: center;
  color: var(--accent);
  font-size: 15px;
  padding: 14px 0;
}
.mini-form-err {
  text-align: center;
  color: #ef4444;
  font-size: 13px;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .mini-form { flex-direction: column; }
  .mini-btn { width: 100%; justify-content: center; }
}

/* ───── AI TEAM SCHEMA ───── */
.ai-team {
  max-width: 1100px;
  margin: 48px auto 0;
}
.ai-team__subtitle {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
}
.ai-team__ceo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.ai-team__ceo-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 30px var(--accent-glow);
}
.ai-team__ceo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.ai-team__ceo-role {
  color: var(--text3);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}
.ai-team__connector {
  width: 2px;
  height: 2rem;
  background: var(--accent-dim);
  margin: 0 auto 0.5rem;
  opacity: 0.5;
}
.ai-team__connector-h { display: none; }
@media (min-width: 769px) {
  .ai-team__connector-h {
    display: block;
    height: 2px;
    background: var(--accent-dim);
    opacity: 0.3;
    margin: 0 auto 1.5rem;
    width: 70%;
  }
}
.ai-team__departments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ai-team__dept {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}
.ai-team__dept::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dim));
  border-radius: 12px 12px 0 0;
}
.ai-team__dept-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ai-team__agent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.ai-team__agent:last-child { border-bottom: none; padding-bottom: 0; }
.ai-team__agent-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.ai-team__agent-info { min-width: 0; }
.ai-team__agent-name { font-weight: 600; font-size: 0.9rem; line-height: 1.3; }
.ai-team__agent-desc { color: var(--text3); font-size: 0.8rem; line-height: 1.4; margin-top: 0.15rem; }
.ai-team__badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent);
  font-size: 0.65rem;
  padding: 0.15em 0.5em;
  border-radius: 4px;
  margin-left: 0.4em;
  vertical-align: middle;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ai-team__footer {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text3);
  font-size: 0.85rem;
}
.ai-team__footer strong { color: var(--accent); font-weight: 600; }
@media (max-width: 768px) {
  .ai-team__departments { grid-template-columns: 1fr; gap: 1rem; }
  .ai-team__connector-h { display: none; }
}

/* ───── EXPERIENCE TIMELINE ───── */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 80px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 68px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-dim), transparent);
}
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-time {
  position: absolute;
  left: -80px;
  top: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  width: 50px;
  text-align: right;
}
.timeline-dot {
  position: absolute;
  left: -16px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  flex-shrink: 0;
}
.timeline-card {
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg1);
  flex: 1;
  transition: border-color 0.2s, transform 0.2s;
}
.timeline-card:hover {
  border-color: var(--border-strong);
  transform: translateX(4px);
}
.timeline-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.timeline-card p {
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .timeline { padding-left: 48px; }
  .timeline::before { left: 36px; }
  .timeline-time { left: -48px; width: 36px; font-size: 11px; }
  .timeline-dot { left: -16px; }
  .timeline-card { padding: 16px 18px; }
}

/* ───── SECTION BASE ───── */
section {
  padding: 120px 0;
  position: relative;
}
section.tight { padding: 80px 0; }
section.alt { background: var(--bg1); }
.sec-head {
  max-width: 780px;
  margin-bottom: 64px;
}
.sec-head h2 { margin-bottom: 18px; }
.sec-head p {
  font-size: 18px;
  color: var(--text2);
}

/* ───── PAINS ───── */
.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg1);
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.pain:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.pain-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text4);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.pain h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text);
}
.pain p { font-size: 15px; }
@media (max-width: 720px) {
  .pains-grid { grid-template-columns: 1fr; }
}

/* ───── CAPABILITIES (Чем занят пока вы спите) ───── */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cap {
  padding: 36px 28px;
  background: var(--bg1);
  transition: background 0.3s, transform 0.3s;
  position: relative;
}
.cap:hover {
  background: var(--bg2);
}
.cap-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(16,185,129,0.2);
}
.cap h3 { font-size: 20px; margin-bottom: 10px; }
.cap p { font-size: 14px; line-height: 1.55; }
.cap .cap-meta {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
}
@media (max-width: 980px) { .caps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .caps-grid { grid-template-columns: 1fr; } }

/* ───── BEFORE / AFTER ───── */
.niche-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.niche-tab {
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg1);
  color: var(--text2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.niche-tab:hover {
  border-color: var(--border-strong);
  color: var(--text);
  transform: translateY(-1px);
}
.niche-tab.active {
  background: var(--accent);
  color: #03110b;
  border-color: var(--accent);
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  animation: compareFade 0.4s var(--ease-out);
}
@keyframes compareFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.compare-side {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg1);
  display: flex;
  flex-direction: column;
}
.compare-before {
  border-color: rgba(239,68,68,0.2);
  background:
    radial-gradient(ellipse at top right, rgba(239,68,68,0.05) 0%, transparent 60%),
    var(--bg1);
}
.compare-after {
  border-color: rgba(16,185,129,0.25);
  background:
    radial-gradient(ellipse at top left, rgba(16,185,129,0.07) 0%, transparent 60%),
    var(--bg1);
}
.compare-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.compare-head h3 { font-size: 22px; }
.compare-badge {
  padding: 5px 11px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
}
.compare-badge-red {
  background: rgba(239,68,68,0.12);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.3);
}
.compare-badge-green {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(16,185,129,0.3);
}
.compare-side ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.compare-side li {
  padding: 14px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text2);
  border-bottom: 1px dashed var(--border);
  position: relative;
  padding-left: 22px;
}
.compare-side li:last-child { border-bottom: 0; }
.compare-before li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
}
.compare-after li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}
.compare-summary {
  padding: 18px 20px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg2);
}
.compare-summary-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 4px;
}
.compare-summary-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--red);
  line-height: 1.3;
}
.compare-summary-win {
  border-color: rgba(16,185,129,0.3);
  background: linear-gradient(135deg, var(--accent-soft), transparent 80%);
}
.compare-summary-win .compare-summary-val { color: var(--accent); }

.compare-arrow {
  display: grid;
  place-items: center;
  color: var(--accent);
  opacity: 0.6;
  animation: arrowPulse 2.5s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(6px); opacity: 1; }
}
.compare-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 920px) {
  .compare {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .compare-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
  @keyframes arrowPulse {
    0%, 100% { transform: rotate(90deg) translateX(0); opacity: 0.5; }
    50% { transform: rotate(90deg) translateX(6px); opacity: 1; }
  }
}

/* ───── CASE (Viktor) ───── */
.case {
  position: relative;
  padding: 80px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at top right, rgba(16,185,129,0.08) 0%, transparent 50%),
    var(--bg1);
  overflow: hidden;
}
.case::before {
  content: 'case study · 01';
  position: absolute;
  top: 32px;
  right: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text4);
  text-transform: uppercase;
}
.case-head { margin-bottom: 48px; max-width: 780px; }
.case-head .sec-label { margin-bottom: 14px; }
.case-head h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 18px; }
.case-head p { font-size: 17px; }

.case-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.case-stat-val {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
  white-space: nowrap;
}
.case-stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
}

.pack .case-stats {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px 0;
  margin-bottom: 0;
}
.pack .case-stat-val {
  font-size: clamp(22px, 2.5vw, 30px);
}

@media (min-width: 1200px) {
  .pack { padding: 48px 40px; }
  .pack h3 { font-size: 22px; }
  .pack p { font-size: 16px !important; }
  .pack .pack-tagline { font-size: 15px; }
  .pack .case-stat-val { font-size: 34px; }
  .pack blockquote p { font-size: 14px !important; }
  .pack blockquote footer { font-size: 12px !important; }
}

.case-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.case-block h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.case-block h4.warn { color: var(--yellow); }
.case-block ul li {
  padding: 10px 0 10px 28px;
  font-size: 15px;
  color: var(--text2);
  position: relative;
  border-bottom: 1px solid var(--border);
}
.case-block ul li:last-child { border: 0; }
.case-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.case-block.minus ul li::before {
  content: '—';
  color: var(--yellow);
}

.case-roi {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 80%);
  border: 1px solid rgba(16,185,129,0.25);
  flex-wrap: wrap;
}
.case-roi-val {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.case-roi-text { flex: 1; min-width: 260px; }
.case-roi-text strong { color: var(--text); }

@media (max-width: 900px) {
  .case { padding: 48px 28px; }
  .case-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .case-split { grid-template-columns: 1fr; }
}

/* ───── LIVING-ON-AI (про Кешу) ───── */
.living {
  padding: 64px 48px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
  background: var(--bg1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.living-emoji {
  font-size: 72px;
  line-height: 1;
  filter: grayscale(0.2);
}
.living h3 { font-size: 28px; margin-bottom: 12px; }
.living p { font-size: 16px; max-width: 620px; }
@media (max-width: 720px) {
  .living { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ───── PACKAGES ───── */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pack {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg1);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.pack blockquote { margin-top: auto; }
.pack:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.pack.featured {
  border-color: var(--accent);
  background:
    radial-gradient(ellipse at top, rgba(16,185,129,0.12) 0%, transparent 60%),
    var(--bg1);
  box-shadow: 0 30px 80px -30px var(--accent-glow);
}
.pack.featured::before {
  content: 'выбор клиентов';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--accent);
  color: #03110b;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.pack-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.pack h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.pack-tagline {
  font-size: 14px;
  color: var(--text3);
  margin-bottom: 28px;
}
.pack-price {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pack-price-val {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pack-price-val .cur { color: var(--text3); font-weight: 400; }
.pack-price-sub {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text3);
}
.pack-price-sub strong { color: var(--accent); font-weight: 500; }
.pack-features {
  flex: 1;
  margin-bottom: 28px;
}
.pack-features li {
  padding: 10px 0 10px 26px;
  font-size: 14px;
  color: var(--text2);
  position: relative;
  line-height: 1.45;
}
.pack-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 14px; height: 2px;
  background: var(--accent);
}
.pack-features li.highlight {
  color: var(--text);
  font-weight: 500;
}
.pack-features li.highlight::before {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.pack .btn { width: 100%; justify-content: center; }
@media (max-width: 980px) {
  .packs-grid { grid-template-columns: 1fr; }
  .pack.featured { transform: none; }
}

/* ───── STEPS ───── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg1);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 500;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ───── QUIZ ───── */
.quiz {
  padding: 64px 56px;
  border: 1px solid var(--accent);
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(16,185,129,0.1) 0%, transparent 50%),
    var(--bg1);
  position: relative;
  overflow: hidden;
}
.quiz-head { text-align: center; margin-bottom: 40px; }
.quiz-head h2 { margin-bottom: 12px; }
.quiz-progress {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 32px;
}
.quiz-progress span {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--border);
  transition: background 0.3s;
}
.quiz-progress span.done { background: var(--accent); }
.quiz-step {
  max-width: 640px;
  margin: 0 auto;
}
.quiz-q {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.2;
}
.quiz-opts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.quiz-opt {
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg2);
  color: var(--text);
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}
.quiz-opt:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateX(4px);
}
.quiz-opt.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}
@media (max-width: 620px) {
  .quiz { padding: 40px 24px; }
  .quiz-opts { grid-template-columns: 1fr; }
}

.quiz-result {
  text-align: center;
}
.quiz-result h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
.quiz-result-rec {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ───── CUSTOM DEV BLOCK ───── */
.custom {
  padding: 48px 56px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg1);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.custom h3 { font-size: 30px; margin-bottom: 14px; }
.custom p { margin-bottom: 20px; }
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-tag {
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  border-radius: 6px;
  background: var(--bg2);
  color: var(--text2);
  border: 1px solid var(--border);
}
@media (max-width: 820px) {
  .custom { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ───── FAQ ───── */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 768px) { .faq { grid-template-columns: 1fr; } }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg1);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg2); }
.faq-q .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg2);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s var(--ease), border-color 0.2s, background 0.2s;
  color: var(--accent);
}
.faq-q:hover .icon { background: var(--accent-soft); border-color: var(--accent); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); border-color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 28px 26px;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.7;
}

/* ───── CONTACT ───── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg1);
  transition: border-color 0.2s, transform 0.2s;
}
.contact-row:hover { border-color: var(--border-strong); transform: translateX(3px); }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-sublabel {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 4px;
}
.contact-row a, .contact-row span { color: var(--text); font-weight: 500; font-size: 15px; }
.contact-row a:hover { color: var(--accent); }

/* contact channel cards */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 2px solid var(--border-strong);
  border-radius: var(--r-lg);
  background: var(--bg2);
  transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 4px 20px -6px rgba(0,0,0,0.4);
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-dim);
  background: var(--bg3);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.5);
}
.contact-card-primary {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(16,185,129,0.15) 0%, var(--bg2) 50%);
  padding: 32px 36px;
  box-shadow: 0 8px 40px -10px var(--accent-glow), inset 0 1px 0 rgba(16,185,129,0.1);
}
.contact-card-primary:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(16,185,129,0.25) 0%, var(--bg3) 50%);
  box-shadow: 0 16px 60px -10px var(--accent-glow), inset 0 1px 0 rgba(16,185,129,0.15);
  transform: translateY(-4px);
}
.contact-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(16,185,129,0.25);
}
.contact-card-primary .contact-card-icon {
  width: 60px; height: 60px;
  background: var(--accent);
  color: #03110b;
  border-color: var(--accent);
  box-shadow: 0 4px 16px -4px var(--accent-glow);
}
.contact-card-body { flex: 1; min-width: 0; }
.contact-card-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 6px;
}
.contact-card-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.contact-card-primary .contact-card-label { color: var(--accent-dim); }
.contact-card-primary .contact-card-val { color: var(--accent); font-size: 22px; overflow-wrap: break-word; }
.contact-card-hint {
  font-size: 13px;
  color: var(--text3);
  margin-top: 6px;
}
.contact-card .arr {
  color: var(--accent);
  font-size: 24px;
  transition: transform 0.2s var(--ease);
}
.contact-card:hover .arr { transform: translateX(6px); }

.contact-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.contact-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text3);
}
.contact-meta-row svg { color: var(--text4); flex-shrink: 0; }

@media (max-width: 520px) {
  .contact-card { padding: 20px 18px; gap: 14px; }
  .contact-card-primary { padding: 24px 20px; }
  .contact-card-icon { width: 48px; height: 48px; }
  .contact-card-primary .contact-card-icon { width: 52px; height: 52px; }
  .contact-card-val { font-size: 18px; }
  .contact-card-primary .contact-card-val { font-size: 22px; }
  .contact-meta { flex-direction: column; align-items: center; gap: 12px; }
}

/* ───── LEAD FORM ───── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.lead-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-form-field { margin-bottom: 12px; }
.lead-form-field input,
.lead-form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg0);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s;
}
.lead-form-field input:focus,
.lead-form-field textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.lead-form-field input::placeholder,
.lead-form-field textarea::placeholder { color: var(--text3); }
.lead-form-field textarea { resize: vertical; min-height: 80px; }
.lead-form-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.lead-form-consent {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text4);
  text-align: center;
}
.lead-form-consent a { color: var(--text3); text-decoration: underline; }
.lead-form-consent a:hover { color: var(--accent); }
.lead-form-error {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--r-sm);
  color: #ef4444;
  font-size: 13px;
  text-align: center;
}
.lead-form-success {
  text-align: center;
  padding: 48px 24px;
}
.lead-form-success svg { margin-bottom: 16px; }
.lead-form-success h3 { font-size: 22px; margin-bottom: 8px; }
.lead-form-success p { color: var(--text2); }
.contact-channels-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-channels-side .contact-card { padding: 18px 16px; }
.contact-channels-side .contact-card-icon { width: 40px; height: 40px; }
@media (max-width: 768px) {
  .contact-split { grid-template-columns: 1fr; }
  .lead-form-row { grid-template-columns: 1fr; }
}

/* ───── RESULTS GRID ───── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.result-val {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.result-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text3);
}
@media (max-width: 768px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-val { font-size: clamp(22px, 5vw, 32px); }
}

/* ───── CASES GRID (8 areas) ───── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.case-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg2);
  transition: transform 0.25s var(--ease), border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.case-card-featured {
  border-color: rgba(16,185,129,0.35);
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg2) 60%);
}
.case-card-icon {
  font-size: 28px;
  line-height: 1;
}
.case-card-icon img {
  border-radius: 16px;
  overflow: hidden;
  display: block;
}
.case-card-icon { order: -2; }
.case-card h3 {
  font-size: 16px;
  margin: 0;
  order: -1;
}
.case-card-metric {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.case-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text3);
  margin: 0;
}
@media (max-width: 1100px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .case-card { padding: 16px 14px; }
  .case-card-metric { font-size: 15px; }
  .case-card h3 { font-size: 14px; }
  .case-card p { font-size: 12px; }
}
@media (max-width: 360px) { .cases-grid { grid-template-columns: 1fr; } }

/* ───── AI-DEV SECTION ───── */

/* pipeline */
/* ───── ANIMATED FLOW ───── */
.flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(16,185,129,0.04) 0%, var(--bg1) 40%);
  margin-bottom: 48px;
}
.flow-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.flow-ico {
  width: 160px; height: 160px;
  display: grid; place-items: center;
}
.flow-ico img {
  width: 160px; height: 160px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 0 0 rgba(16,185,129,0);
  transition: box-shadow 0.2s;
}
.flow-step:hover .flow-ico img {
  box-shadow: 0 0 24px var(--accent-glow);
}
.flow h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.flow p {
  font-size: 15px;
  color: var(--text3);
  line-height: 1.5;
  max-width: 180px;
}
.flow-arrow {
  color: var(--accent);
  font-size: 32px;
  padding-top: 64px;
  flex-shrink: 0;
  opacity: 0.5;
}
.flow-agents {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}
.flow-agents span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg3);
  transition: background 0.3s, box-shadow 0.3s;
}

.flow-agents span { background: var(--accent); }
@media (max-width: 780px) {
  .flow { flex-direction: column; align-items: center; gap: 12px; padding: 28px 20px; }
  .flow-ico { width: 100px; height: 100px; }
  .flow-ico img { width: 100px; height: 100px; border-radius: 16px; }
  .flow h3 { font-size: 16px; }
  .flow p { font-size: 13px; max-width: 260px; }
  .flow-arrow { transform: rotate(90deg); padding: 0; font-size: 22px; }
}

/* not-block */
.aidev-not {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.aidev-not-item {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg1);
  font-size: 14px;
  color: var(--text2);
  line-height: 1.55;
}
.aidev-not-item strong { color: var(--text); display: block; margin-bottom: 2px; }
.aidev-not-icon {
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.aidev-not-bad .aidev-not-icon { color: var(--red); }
.aidev-not-bad { border-color: rgba(239,68,68,0.15); }
.aidev-not-good .aidev-not-icon { color: var(--accent); }
.aidev-not-good {
  border-color: rgba(16,185,129,0.3);
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg1) 60%);
}
@media (max-width: 720px) {
  .aidev-not { grid-template-columns: 1fr; }
}

/* what can build */
.aidev-builds {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}
.aidev-build {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg1);
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  white-space: nowrap;
}
.aidev-build-icon {
  color: var(--accent);
  display: grid; place-items: center;
}

/* ai-dev pricing cards — reuse .pack styles but own wrapper */
.aidev-packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.aidev-pack {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.aidev-pack:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.aidev-pack .btn { width: 100%; justify-content: center; }
.aidev-pack-featured {
  border-color: var(--accent);
  background:
    radial-gradient(ellipse at top, rgba(16,185,129,0.12) 0%, transparent 60%),
    var(--bg1);
  box-shadow: 0 30px 80px -30px var(--accent-glow);
}
.aidev-pack-featured::before {
  content: 'рекомендуем';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--accent);
  color: #03110b;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
@media (max-width: 980px) {
  .aidev-packs { grid-template-columns: 1fr; }
}

/* trial CTA */
.aidev-trial {
  margin-bottom: 40px;
}
.aidev-trial-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  border: 2px solid var(--accent);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg1) 50%);
  box-shadow: 0 8px 40px -10px var(--accent-glow);
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .aidev-trial-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .aidev-trial-inner .btn { width: 100%; justify-content: center; }
}

/* proof line */
.aidev-proof {
  text-align: center;
  padding: 16px 0;
}

/* ───── LEGAL + FOOTER ───── */
.legal {
  padding: 40px 0 24px;
  border-top: 1px solid var(--border);
  background: var(--bg1);
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  font-size: 13px;
  color: var(--text3);
  line-height: 1.6;
}
.legal-grid strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 4px;
}
@media (max-width: 860px) { .legal-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

footer.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text4);
  text-align: center;
  background: var(--bg1);
}
.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.footer-links a {
  color: var(--text3);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }

/* ───── MODAL ───── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  background: rgba(8,11,17,0.8);
  backdrop-filter: blur(10px);
}
.modal.open { display: flex; }
.modal-box {
  max-width: 480px;
  width: 100%;
  padding: 40px;
  background: var(--bg1);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  text-align: center;
}
.modal-box h3 { margin-bottom: 12px; }
.modal-box p { margin-bottom: 24px; }

/* ───── REVEAL ───── */
/* only enable hide state when JS is ready — .js-ready added by app.js */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.js-ready .reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1; transform: none; transition: none; }
}

/* ───── INFOGRAPH v2 ───── */
.ig-row-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1060px;
  margin: 0 auto;
}
.ig-grid-5 { grid-template-columns: repeat(5, 1fr); }
.ig-card {
  padding: 14px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.ig-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.ig-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(16,185,129,0.3);
  margin-bottom: 2px;
}
.ig-up::before { content: '↑ '; font-size: 16px; }
.ig-desc { color: var(--text2); font-size: 12px; line-height: 1.4; }
.ig-src { color: var(--text4); font-size: 9px; margin-top: 4px; }

.ig-bar-track { height: 4px; background: var(--bg3); border-radius: 2px; margin: 6px 0 4px; overflow: hidden; }
.ig-bar-fill { height: 100%; border-radius: 2px; background: var(--accent); transition: width 0.8s var(--ease-out); }

.ig-ring {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 6px 0 4px;
}
.ig-ring span {
  width: 28px; height: 28px; border-radius: 50%; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 9px; font-weight: 600; color: var(--accent);
}

.ig-vbars { display: flex; align-items: flex-end; gap: 4px; height: 40px; margin: 6px 0 4px; }
.ig-vbar { width: 16px; border-radius: 3px 3px 0 0; }

.ig-divider {
  display: flex; align-items: center; gap: 12px;
  max-width: 1060px; margin: 16px auto;
}
.ig-divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--accent-dim), transparent); }
.ig-divider-text { font-family: var(--font-mono); font-size: 11px; color: var(--accent); white-space: nowrap; letter-spacing: 0.04em; }

@media (max-width: 768px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .ig-num { font-size: 18px; }
}
@media (max-width: 480px) {
  .ig-grid, .ig-grid-5 { grid-template-columns: 1fr; }
}

/* ───── BURGER MENU ───── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8,11,17,0.97);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  padding: 0 var(--gutter);
}
.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  padding: 14px 0;
  color: var(--text2);
  transition: color 0.15s;
  text-align: center;
  width: 100%;
}
.mobile-menu-link:hover { color: var(--accent); }

/* ───── MOBILE (tablet + phone) ───── */
@media (max-width: 880px) {
  .burger { display: flex; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
}

@media (max-width: 768px) {
  /* sections: tighter */
  section { padding: 64px 0; }
  section.tight { padding: 40px 0; }
  .sec-head h2 { font-size: clamp(22px, 5vw, 32px); }

  .brand,
  .hero,
  .hero h1,
  .hero-kicker,
  .hero .btn,
  .hero .metric-val,
  .hero .metric-label {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  }

  /* number cards: 2 col */
  .nums-grid { grid-template-columns: repeat(2, 1fr); }

  /* hero: stacked on mobile */
  nav.site-nav { backdrop-filter: none; background: rgba(8, 11, 17, 0.96); }
  .hero { padding: 100px 0 48px; text-align: center; }
  .hero-inner { align-items: center; }
  .hero-terminal { display: none; }
  .hero-split { grid-template-columns: 1fr; gap: 20px; }
  .hero-text { text-align: center; }
  .hero-text h1 { display: contents; }
  .hero-title-line { display: block; font-size: clamp(24px, 6.5vw, 36px); font-weight: 700; line-height: 1.05; letter-spacing: -0.035em; }
  .hero-title-line:last-child { margin-bottom: 28px; }
  .hero-sub { display: contents; }
  .hero-sub-line { display: block; font-size: 14px; line-height: 1.55; color: var(--text2); }
  .hero-sub-line:last-child { margin-bottom: 8px; }
  .hero-kicker { justify-content: center; }
  .hero-visual { display: block; order: -1; width: min(100%, 340px); margin: 0 auto; }
  .hero-visual img { border-radius: 16px; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; max-width: 360px; margin: 0 auto; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* hero metrics */
  .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .metric-val { font-size: clamp(24px, 6vw, 32px); }

  /* dashboard screenshot */
  .dashboard-perspective { perspective: none !important; }

  /* case cards (8 areas): 2 col tighter */
  .cases-grid { gap: 12px; }
  .case-card { padding: 16px 14px; }
  .case-card-icon img { width: 56px; height: 56px; }
  .case-card-metric { font-size: 15px; }
  .case-card h3 { font-size: 14px; }

  /* pipeline: column */
  .pipeline { flex-direction: column; gap: 12px; padding: 24px 16px; }
  .pipeline-arrow { display: none; }
  .pipeline-step { min-width: 0; text-align: center; }

  /* kits/packs: 1 col */
  .packs-grid { grid-template-columns: 1fr !important; }
  .pack { padding: 28px 20px; }

  /* living blocks: column */
  .living { grid-template-columns: 1fr; padding: 32px 20px; gap: 16px; text-align: center; }
  .living-emoji { justify-self: center; }
  .living-emoji img { max-width: 140px !important; }

  /* steps: 1 col */
  .steps { grid-template-columns: 1fr !important; }

  /* contact */
  .contact-channels { flex-direction: column; }

  /* legal */
  .legal-grid { grid-template-columns: 1fr !important; gap: 16px; }

  /* faq */
  .faq-q { padding: 16px 18px; font-size: 16px; }
}

@media (max-width: 480px) {
  section { padding: 48px 0; }
  section.tight { padding: 32px 0; }

  .hero { padding: 88px 0 40px; }
  .hero-text h1 { font-size: clamp(22px, 6vw, 32px); }
  .hero-kicker { font-size: 11px; padding: 5px 12px; margin-bottom: 20px; }

  .case-card-icon img { width: 48px; height: 48px; }
  .case-card p { font-size: 12px; }

  .pack { padding: 24px 16px; }

  .living { padding: 24px 16px; }
  .living-emoji img { max-width: 100px !important; }
  .living h3 { font-size: 22px; }

  .faq-q { font-size: 15px; }
}

/* touch targets */
@media (hover: none) {
  .btn { min-height: 48px; }
  .faq-q { min-height: 48px; }
  .contact-card { min-height: 56px; }
}

section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.btn:active,
.pilot-card:active,
.faq-q:active,
.bot-fab:active {
  transform: scale(0.97);
}
:root {
  --spring: cubic-bezier(0.25, 1, 0.5, 1);
  --spring-duration: 0.4s;
}
.btn {
  transition: transform 0.12s var(--spring), box-shadow 0.3s var(--spring), background 0.2s;
}
.pilot-card {
  transition: transform var(--spring-duration) var(--spring), border-color 0.3s;
}
.faq-q {
  transition: background 0.2s, transform 0.12s var(--spring);
}
.faq-q .icon {
  transition: transform var(--spring-duration) var(--spring), border-color 0.2s, background 0.2s;
}
.role-card {
  transition: transform var(--spring-duration) var(--spring), border-color 0.3s, box-shadow 0.3s;
}
.bot-fab {
  transition: transform 0.12s var(--spring), box-shadow 0.3s var(--spring);
}

/* ───── FLOATING BOT BUTTON ───── */
.bot-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 10px;
  background: var(--bg2);
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(16,185,129,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bot-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(16,185,129,0.3);
}
.bot-fab img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
@media (max-width: 720px) {
  .home-page .bot-fab { display: none; }
  .home-page .bot-fab.bot-fab--form-clear { display: flex; padding: 7px; }
  .home-page .bot-fab-label { display: none; }
}

/* ───── UTILS ───── */
.flex { display: flex; }
.hidden { display: none !important; }
