/* ===================== ТЕХНОЛОГИИ ОБЩЕПИТА — v5 platform ===================== */
:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #1a1a1a;
  --surface-2: #222222;
  --line: #2e2e2e;
  --text: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-tertiary: #6e6e73;
  --text-on-media: rgba(255, 255, 255, 0.82);
  --text-on-media-muted: rgba(255, 255, 255, 0.58);
  --muted: var(--text-secondary);
  --accent: #ff6b2c;
  --accent-2: #ff8f5a;
  --call: #30d158;
  --call-dark: #248a3d;
  --steel: var(--text-tertiary);
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 17px;
  --fs-lg: 21px;
  --lh-tight: 1.25;
  --lh-base: 1.55;
  --lh-relaxed: 1.65;
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1200px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-accent: 0 16px 48px rgba(255, 107, 44, 0.35);
  --grad-accent: linear-gradient(135deg, #ff9a5a 0%, #ff6b2c 50%, #e85a1a 100%);
  --eng-blue: #4a9eff;
  --eng-blue-dim: rgba(74, 158, 255, 0.12);
  --eng-grid: rgba(74, 158, 255, 0.06);
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --header-h: 52px;
  --topbar-h: 36px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* Контраст: тёмный фон ↔ светлый текст, светлый фон ↔ тёмный текст */
  --text-on-dark: #f5f5f7;
  --text-on-dark-muted: #a1a1a6;
  --text-on-dark-subtle: #6e6e73;
  --text-on-light: #1a1a1a;
  --text-on-light-muted: #4a4a4f;
  --surface-light: #f5f5f7;
  --surface-light-2: #ebebef;
  /* Семантика UI — переопределяется в theme-light.css */
  --header-glass: rgba(10, 10, 10, 0.55);
  --header-glass-solid: rgba(10, 10, 10, 0.88);
  --header-border: rgba(255, 255, 255, 0.06);
  --topbar-bg: rgba(10, 10, 10, 0.85);
  --footer-bg: #000000;
  --sticky-bg: rgba(10, 10, 10, 0.92);
  --sticky-border: rgba(255, 255, 255, 0.08);
  --cookie-bg: rgba(10, 10, 10, 0.95);
  --dropdown-bg: rgba(14, 14, 16, 0.98);
  --dropdown-border: rgba(255, 255, 255, 0.1);
  --dropdown-divider: rgba(255, 255, 255, 0.08);
  --dropdown-hover: rgba(255, 255, 255, 0.06);
  --btn-ghost-bg: rgba(255, 255, 255, 0.08);
  --btn-ghost-border: rgba(255, 255, 255, 0.18);
  --btn-ghost-hover-bg: rgba(255, 255, 255, 0.14);
  --btn-ghost-hover-border: rgba(255, 255, 255, 0.3);
  --grain-opacity: 0.028;
  --mobile-nav-bg: rgba(10, 10, 10, 0.97);
  --mobile-nav-shadow: none;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color-scheme: dark;
  overflow-x: clip;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: var(--lh-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}

/* Заголовки и текст на тёмном фоне */
h1, h2, h3, h4, h5, h6 { color: var(--text); }
p, li, dd, dt, blockquote { color: inherit; }

/* Поля ввода и нативные кнопки — явный контраст (не полагаться на inherit) */
button, input, textarea, select { font-family: inherit; }
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="hidden"]),
textarea,
select {
  background-color: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
}
input::placeholder,
textarea::placeholder {
  color: var(--text-tertiary);
  opacity: 1;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px var(--surface) inset;
  box-shadow: 0 0 0 1000px var(--surface) inset;
  caret-color: var(--text);
}

/* Светлая поверхность — тёмный текст */
.surface-light,
[data-surface="light"] {
  background: var(--surface-light);
  color: var(--text-on-light);
}
.surface-light :where(h1, h2, h3, h4, h5, h6, strong, .project-section__title),
[data-surface="light"] :where(h1, h2, h3, h4, h5, h6, strong, .project-section__title) {
  color: var(--text-on-light);
}
.surface-light :where(p, li, span, label, .project-section__lead),
[data-surface="light"] :where(p, li, span, label, .project-section__lead) {
  color: var(--text-on-light-muted);
}
.surface-light :where(input, textarea, select),
[data-surface="light"] :where(input, textarea, select) {
  background-color: #fff;
  border-color: #d1d1d6;
  color: var(--text-on-light);
}
.surface-light :where(input::placeholder, textarea::placeholder),
[data-surface="light"] :where(input::placeholder, textarea::placeholder) {
  color: #8e8e93;
}
.surface-light a:not([class*="btn"]),
[data-surface="light"] a:not([class*="btn"]) {
  color: #c2410c;
}

/* Кнопки-карточки в инструментах (расширения) */
.cfg-format-card,
.calc-filter,
.ai-filter,
.catalog-filter select {
  color: var(--text);
}
.material-filter { color: var(--muted); }
.material-filter--active,
.calc-filter--active,
.ai-filter--active { color: var(--text); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .grain { display: none; }
  .hero-line, .hero-accent { opacity: 1; transform: none; animation: none; }
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
.container {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  padding-left: max(clamp(20px, 5vw, 40px), env(safe-area-inset-left));
  padding-right: max(clamp(20px, 5vw, 40px), env(safe-area-inset-right));
}
.accent { color: var(--accent); }
.hp-field {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.link--accent { color: var(--accent-2); font-weight: 600; transition: color 0.2s; }
.link--accent:hover { color: var(--text); }
.link--phone { color: var(--text); font-weight: 700; letter-spacing: -0.02em; transition: color 0.2s; }
.link--phone:hover { color: #fff; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== SCROLL PROGRESS & GRAIN ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 2px; background: transparent; pointer-events: none;
}
.scroll-progress__bar {
  display: block; height: 100%; width: 0%;
  background: var(--grad-accent);
  box-shadow: 0 0 12px rgba(255, 107, 44, 0.6);
  transition: width 0.08s linear;
}
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: var(--grain-opacity); mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== HERO TITLE STAGGER ===== */
.hero-line {
  display: inline-block;
  opacity: 0; transform: translateY(24px);
  animation: heroLineIn 0.9s var(--ease-out) forwards;
}
.hero-line:nth-child(2) { animation-delay: 0.12s; }
.hero-accent {
  background: var(--grad-accent); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: heroLineIn 0.9s var(--ease-out) 0.24s forwards, shimmer 6s ease-in-out 1.2s infinite;
}
@keyframes heroLineIn { to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ===== TOPBAR TIMER ===== */
.topbar__timer {
  font-variant-numeric: tabular-nums;
  color: #fff; font-weight: 700; letter-spacing: 0.04em;
}

/* ===== NAV ACTIVE ===== */
.nav a.is-active { color: var(--text); position: relative; }
.nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent); border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 600; font-size: 17px; cursor: pointer;
  border: none; border-radius: 980px; padding: 14px 28px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
  white-space: nowrap; text-align: center; letter-spacing: -0.01em;
}
.btn--primary { background: var(--grad-accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn--primary.btn--xl { flex-direction: column; gap: 4px; line-height: 1.2; }
.btn--primary:hover { transform: scale(1.03); box-shadow: 0 20px 56px rgba(255, 107, 44, 0.5); }
.btn--call {
  background: var(--call); color: #fff;
  box-shadow: 0 12px 40px rgba(48, 209, 88, 0.35);
  flex-direction: column; gap: 2px; padding: 18px 36px; line-height: 1.2;
}
.btn--call:hover { background: #34c759; transform: scale(1.04); box-shadow: 0 16px 48px rgba(48, 209, 88, 0.45); }
.btn--call small { font-size: 12px; font-weight: 500; opacity: 0.9; }
.btn--call-pulse { animation: callPulse 2.5s ease-in-out infinite; }
@keyframes callPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(48, 209, 88, 0.35); }
  50% { box-shadow: 0 12px 40px rgba(48, 209, 88, 0.35), 0 0 0 12px rgba(48, 209, 88, 0.12); }
}
.btn--ghost {
  background: var(--btn-ghost-bg); color: var(--text);
  border: 1px solid var(--btn-ghost-border); backdrop-filter: blur(12px);
}
.btn--ghost:hover { background: var(--btn-ghost-hover-bg); border-color: var(--btn-ghost-hover-border); }
.btn--lg { padding: 16px 32px; font-size: 17px; }
.btn--xl { padding: 20px 40px; font-size: 19px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--magnetic { transition: transform 0.2s var(--ease-out), box-shadow 0.25s, background 0.25s; }

/* ===== CONCEPT CTA ===== */
.btn--concept {
  position: relative;
  overflow: hidden;
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
  border: 1px solid rgba(255, 255, 255, 0.18);
  white-space: normal;
  text-align: left;
  gap: 10px;
  padding: 12px 18px;
}
.btn--concept::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}
.btn--concept:hover::before { transform: translateX(120%); }
.btn--concept:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 56px rgba(255, 107, 44, 0.5);
}
.btn--concept:active { transform: scale(0.98); }
.btn__concept-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn__concept-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}
.btn__concept-main {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.btn__concept-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.88;
  line-height: 1.2;
}
.btn__concept-arrow {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  opacity: 0.9;
  transition: transform 0.25s var(--ease-out);
}
.btn--concept:hover .btn__concept-arrow { transform: translateX(3px); }
.btn--concept--header {
  padding: 8px 14px 8px 10px;
  gap: 8px;
}
.btn--concept--header .btn__concept-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.btn--concept--header .btn__concept-main { font-size: 13px; }
.btn--concept--header .btn__concept-sub { display: none; }
.btn--concept--sticky {
  padding: 14px 16px;
  animation: conceptPulse 3s ease-in-out infinite;
}
.btn--concept--sticky .btn__concept-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}
.btn--concept--sticky .btn__concept-main { font-size: 16px; }
.btn--concept--sticky .btn__concept-sub { font-size: 12px; }
@keyframes conceptPulse {
  0%, 100% { box-shadow: var(--shadow-accent); }
  50% { box-shadow: var(--shadow-accent), 0 0 0 6px rgba(255, 107, 44, 0.12); }
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 102;
  height: var(--topbar-h); display: flex; align-items: center;
  background: var(--topbar-bg); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 107, 44, 0.2);
  color: var(--accent-2); font-size: 12px; font-weight: 500;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 0 20px; width: 100%;
}
.topbar__promo {
  flex: 1; min-width: 0;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 8px; text-align: center;
}
.topbar__inner b { color: #fff; font-weight: 700; }
.topbar__link { color: var(--accent-2); font-weight: 600; margin-left: 4px; }
.topbar__link:hover { color: #fff; }

/* ===== HEADER (Apple glass) ===== */
.header {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 100;
  height: var(--header-h); transition: background 0.4s;
  max-width: 100%; overflow-x: clip;
}
.header::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--header-glass); backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--header-border);
  opacity: 0; transition: opacity 0.4s;
}
.header.scrolled::after { opacity: 1; background: var(--header-glass-solid); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 16px; max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  width: 100%; min-width: 0;
}
.logo {
  display: block;
  flex-shrink: 0;
  position: relative;
  width: min(140px, 38vw);
  height: 36px;
  line-height: 0;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.88; }
.logo img,
.logo__img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.logo__img--theme-light {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
[data-theme="light"] .logo__img--theme-dark {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
[data-theme="light"] .logo__img--theme-light {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.footer .logo {
  width: min(160px, 60vw);
  height: 40px;
}
.footer .logo img,
.footer .logo__img { height: 100%; max-width: 100%; }
.nav {
  display: flex; align-items: center; gap: clamp(12px, 1.6vw, 22px);
  flex: 1; justify-content: center; min-width: 0;
}
.nav > a,
.nav-dropdown__trigger {
  font-size: var(--fs-sm); color: var(--text-secondary); font-weight: 500;
  transition: color 0.2s; letter-spacing: -0.01em;
  background: none; border: 0; padding: 0; font-family: inherit; cursor: pointer;
  white-space: nowrap;
}
.nav > a:hover,
.nav-dropdown__trigger:hover { color: var(--text); }
.nav > a.nav__stack,
.nav > a .nav__stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.12;
  gap: 1px;
  white-space: normal;
  text-align: center;
  min-width: 3.2rem;
}
.nav__stack span:first-child {
  font-size: var(--fs-sm);
  font-weight: 600;
}
.nav__stack span:last-child {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-tertiary, #8a8a8e);
  letter-spacing: 0.01em;
}
.nav > a:hover .nav__stack span:last-child { color: var(--text-secondary); }
.nav > a.is-active,
.nav-dropdown__trigger.is-active { color: var(--text); }
.nav > a.nav__ai,
.nav-dropdown__trigger.nav__ai,
.nav-dropdown__link.nav__ai--featured {
  color: var(--eng-blue, #4a9eff);
  font-weight: 600;
}
.nav > a.nav__ai:hover,
.nav-dropdown__trigger.nav__ai:hover,
.nav-dropdown__link.nav__ai--featured:hover { color: var(--accent, #ff6b2c); }
.nav > a.nav__ai.is-active { color: var(--text); }
.nav-dropdown { position: relative; }
.nav-dropdown__trigger::after {
  content: ""; display: inline-block; width: 0; height: 0; margin-left: 6px;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; opacity: 0.55; vertical-align: middle;
  transition: transform 0.2s;
}
.nav-dropdown.is-open .nav-dropdown__trigger::after { transform: rotate(180deg); }
.nav-dropdown__panel[hidden] { display: none !important; }
.nav-dropdown__panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 260px; max-width: min(92vw, 320px);
  padding: 10px 12px 12px; border-radius: 14px;
  background: var(--dropdown-bg);
  border: 1px solid var(--dropdown-border);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  z-index: 120;
}
/* Невидимый «мост» между кнопкой и панелью — курсор не теряет hover */
.nav-dropdown__panel::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.nav-dropdown__section + .nav-dropdown__section {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--dropdown-divider);
}
.nav-dropdown__title {
  margin: 0 0 6px; padding: 0 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-tertiary, #8a8a8e);
}
.nav-dropdown__link {
  display: block; padding: 9px 10px; border-radius: 8px;
  font-size: var(--fs-sm); color: var(--text-secondary); font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown__link-label {
  display: block;
  font-weight: 600;
  color: var(--text);
}
.nav-dropdown__link-hint {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-tertiary, #8a8a8e);
}
.nav-dropdown__link:hover .nav-dropdown__link-hint {
  color: var(--text-secondary);
}
.nav-dropdown__link:hover {
  color: var(--text); background: var(--dropdown-hover);
}
.nav-dropdown__link.is-active {
  color: var(--text); background: rgba(255, 255, 255, 0.08);
}
.header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header__phone {
  font-weight: 600; font-size: var(--fs-sm); color: var(--text);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 980px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.02em;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.header__phone::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--call); box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.18);
  flex-shrink: 0;
}
.header__phone:hover {
  color: #fff; border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 20px; height: 1.5px; background: var(--text); border-radius: 2px; }

/* ===== CINEMATIC HERO ===== */
.hero-cinema {
  position: relative; min-height: 100dvh; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
  padding-top: calc(var(--topbar-h) + var(--header-h));
  padding-bottom: clamp(48px, 8vh, 80px);
}
.hero-cinema__media {
  position: absolute;
  top: calc(-1 * (var(--topbar-h) + var(--header-h)));
  left: 0; right: 0; bottom: 0; z-index: 0;
}
.hero-cinema__media img,
.hero-cinema__media video {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 40% 48%;
  transform: scale(1.06); transition: transform 8s var(--ease-out);
}
.hero-cinema.is-loaded .hero-cinema__media img,
.hero-cinema.is-loaded .hero-cinema__media video { transform: scale(1); }
.hero-cinema__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.5) 38%, rgba(10, 10, 10, 0.08) 100%),
    linear-gradient(to right, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.28) 45%, transparent 78%);
}
.hero-cinema__content {
  position: relative; z-index: 2; width: 100%;
  max-width: 780px;
}
/* Контент hero поверх видео — даже при сбое вложенности в HTML */
.hero-cinema > :not(.hero-cinema__media):not(.hero-cinema__scroll) {
  position: relative;
  z-index: 2;
}
.hero-cinema__trust a.link--phone {
  color: var(--text-on-media);
}
.hero-cinema__trust a.link--phone:hover {
  color: #fff;
}
.hero-cinema__proof {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: var(--fs-sm); font-weight: 500; color: var(--text-on-media);
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.hero-cinema__proof span { display: flex; align-items: center; gap: 6px; }
.hero-cinema__proof .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.hero-cinema__proof .highlight { color: var(--accent-2); font-weight: 700; }
.hero-cinema__title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(40px, 8vw, 76px); line-height: 1.02;
  letter-spacing: -0.02em; margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 48px rgba(0, 0, 0, 0.55);
}
.hero-cinema__lead {
  font-size: clamp(var(--fs-md), 2.5vw, var(--fs-lg)); color: var(--text-on-media);
  max-width: 560px; margin-bottom: 32px; font-weight: 400; line-height: 1.5;
  letter-spacing: -0.01em;
}
.hero-cinema__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.hero-cinema__trust {
  display: flex; gap: 20px; flex-wrap: wrap; list-style: none;
  font-size: var(--fs-sm); color: var(--text-on-media-muted); font-weight: 500;
}
.hero-cinema__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255, 255, 255, 0.4); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; animation: scrollBounce 2s ease-in-out infinite;
}
.hero-cinema__scroll::after {
  content: ""; width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== TRUST STRIP ===== */
.trust {
  background: var(--bg-2); border-bottom: 1px solid var(--line);
  padding: clamp(32px, 5vw, 48px) 0;
}
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.trust__item b {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 48px); font-weight: 700; line-height: 1;
  background: var(--grad-accent); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 6px;
}
.trust__item span { font-size: 14px; color: var(--muted); font-weight: 500; }
.trust__brands {
  display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line);
}
.trust__brand {
  font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--steel); letter-spacing: 0.08em; opacity: 0.7;
}
.trust__text {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; background: var(--grad-accent); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.trust__photos { margin-top: 32px; text-align: center; }
.trust__photos img { max-width: 720px; width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.trust__photos-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

/* ===== FINAL OFFER ===== */
.final-offer { background: var(--bg-2); border-top: 1px solid var(--line); }
.final-offer--photo {
  position: relative; overflow: hidden;
  padding: clamp(64px, 10vw, 96px) 0;
}
.final-offer--photo::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/home/final-offer.jpg") center/cover no-repeat;
  opacity: 0.22;
}
.final-offer--photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, rgba(10, 12, 16, 0.92) 40%, var(--bg-2) 100%);
}
.final-offer--photo .container { position: relative; z-index: 1; }
.final-offer__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.final-offer__title { font-size: clamp(24px, 4vw, 36px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.final-offer__sub { font-size: 17px; color: var(--muted); margin-bottom: 28px; line-height: 1.55; }

/* ===== STORY (Apple scrollytelling) ===== */
.story { padding: clamp(64px, 10vw, 120px) 0; }
.story__panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px);
  align-items: center; margin-bottom: clamp(64px, 10vw, 100px);
}
.story__panel:last-child { margin-bottom: 0; }
.story__panel--reverse { direction: rtl; }
.story__panel--reverse > * { direction: ltr; }
.story__visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); position: relative; box-shadow: var(--shadow);
}
.story__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.story__panel.is-visible .story__visual img { transform: scale(1.03); }
.story__visual-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 80px; background: linear-gradient(135deg, var(--surface), var(--bg-2));
}
.story__step {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.story__title {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.02em;
}
.story__text { font-size: 17px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.story__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.story__list li {
  font-size: 15px; color: var(--text); padding-left: 20px; position: relative;
}
.story__list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

/* ===== PROCESS FUNNEL ===== */
.process { background: var(--bg-2); }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative;
}
.process__line {
  position: absolute; top: 36px; left: 12%; right: 12%; height: 2px;
  background: var(--line); border-radius: 2px; overflow: hidden; z-index: 0;
}
.process__line-fill {
  display: block; height: 100%; width: 0%;
  background: var(--grad-accent);
  transition: width 0.6s var(--ease-out);
}
.process__step {
  text-align: center; padding: 24px 16px; position: relative;
  transition: opacity 0.4s;
}
.process__step.is-lit .process__num {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.12);
}
.process__num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: var(--accent);
  position: relative; z-index: 1; transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.process__step:hover .process__num { transform: scale(1.08); border-color: var(--accent); }
.process__step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.process__step p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ===== TECHNOLOGIST CARD ===== */
.technologist { padding: clamp(48px, 8vw, 80px) 0; }
.technologist__banner {
  margin: 0 0 24px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.technologist__banner img {
  display: block; width: 100%; height: auto; max-height: 300px;
  object-fit: cover; object-position: center 45%;
}
.technologist__card {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(24px, 4vw, 40px);
  align-items: center; background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px); box-shadow: var(--shadow);
}
.technologist__avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--eng-blue-dim), var(--surface-2));
  border: 2px solid rgba(74, 158, 255, 0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 22px; font-weight: 700;
  color: var(--eng-blue); flex-shrink: 0; letter-spacing: 0.05em;
}
.technologist__info h3 { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.technologist__role { font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.technologist__info p { font-size: 15px; color: var(--muted); max-width: 480px; line-height: 1.55; }
.technologist__quote {
  margin-top: 20px; padding: 16px 20px; border-left: 3px solid var(--accent);
  background: rgba(255, 107, 44, 0.06); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px; color: var(--text); line-height: 1.55; font-style: italic;
}
.technologist__quote cite {
  display: block; margin-top: 10px; font-style: normal; font-size: 12px;
  color: var(--steel); font-weight: 600;
}
.technologist__cta { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ===== FEARS ===== */
.fears { background: var(--bg-2); }
.fears__summary {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 16px 28px; margin-bottom: clamp(24px, 4vw, 36px);
  padding: clamp(18px, 3vw, 24px) clamp(20px, 4vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.06), rgba(48, 209, 88, 0.06));
}
.fears__summary-loss,
.fears__summary-audit {
  display: flex; flex-direction: column; gap: 4px; text-align: center; min-width: 140px;
}
.fears__summary-loss strong {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; color: #ff6b6b; line-height: 1;
}
.fears__summary-audit strong {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; color: var(--call); line-height: 1;
}
.fears__summary-loss span,
.fears__summary-audit span { font-size: 13px; color: var(--muted); font-weight: 500; }
.fears__summary-divider {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  padding: 6px 12px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line);
}
.fears__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px;
}
.fears__card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 26px); display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.fears__card:hover {
  border-color: rgba(255, 107, 44, 0.35); transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.fears__card--lead {
  grid-column: 1 / -1;
  border-color: rgba(255, 107, 107, 0.3);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.06), var(--surface));
  padding: clamp(22px, 3vw, 28px);
}
.fears__card-main {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(14px, 3vw, 24px);
  align-items: start;
}
.fears__body { min-width: 0; }
.fears__rank {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  color: #ff8a8a; background: rgba(255, 107, 107, 0.1); border: 1px solid rgba(255, 107, 107, 0.25);
}
.fears__rank--muted {
  color: var(--muted); background: var(--bg-2); border-color: var(--line);
}
.fears__icon { flex-shrink: 0; }
.fears__card h3 {
  font-size: clamp(17px, 2vw, 19px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 6px;
}
.fears__cause {
  font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0 0 8px;
}
.fears__fix {
  font-size: 13px; font-weight: 600; color: var(--call); line-height: 1.45; margin: 0;
}
.fears__card--lead .fears__loss {
  text-align: right; align-self: center; margin: 0; white-space: nowrap;
  font-size: clamp(18px, 2.5vw, 22px);
}
.fears__loss {
  font-size: 15px; font-weight: 700; color: #ff8a8a; margin-top: auto; padding-top: 4px;
}
.fears__loss strong { color: #ff6b6b; font-size: 1.15em; }
.fears__loss-note {
  display: block; font-size: 11px; font-weight: 500; color: var(--muted); margin-top: 2px;
}
.fears__bridge {
  text-align: center; border-color: rgba(255, 107, 44, 0.25);
  background: linear-gradient(160deg, rgba(255, 107, 44, 0.07), var(--surface));
}
.fears__bridge-kicker {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.fears__bridge-title {
  font-size: clamp(22px, 3vw, 28px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 10px;
}
.fears__bridge-text {
  font-size: 15px; color: var(--muted); line-height: 1.55;
  max-width: 560px; margin: 0 auto 24px;
}
.fears__cta {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 16px;
}
.fears__bridge-trust { font-size: 13px; color: var(--muted); margin: 0; }

/* ===== VALUE ===== */
.value { background: var(--bg); }
.value__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px;
}
.value__item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative; overflow: hidden;
}
.value__item::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-accent);
}
.value__num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--eng-blue); letter-spacing: 0.1em; margin-bottom: 16px; display: block;
}
.value__item h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.value__item p { font-size: 15px; color: var(--muted); line-height: 1.55; }
.value__cta { text-align: center; }

/* ===== CASES PREVIEW ===== */
.cases-preview { background: var(--bg-2); }
.cases-preview__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px;
}
.case-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
}
.case-card__icon { font-size: 24px; }
.case-card__risk {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
}
.case-card__problem { font-size: 16px; font-weight: 600; line-height: 1.35; }
.case-card__result { font-size: 14px; color: var(--muted); line-height: 1.5; }
.case-card--preview { padding: 0; overflow: hidden; }
.case-card__photo { width: 100%; height: 160px; object-fit: cover; object-position: center 30%; display: block; border-bottom: 1px solid var(--line); }
.case-card--preview .case-card__meta,
.case-card--preview .case-card__problem,
.case-card--preview .btn { margin-left: 20px; margin-right: 20px; }
.case-card--preview .case-card__meta { margin-top: 16px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--eng-blue); }
.case-card--preview .case-card__problem { margin-bottom: 16px; flex: 1; }
.case-card--preview .btn { margin-bottom: 20px; }
.cases-preview__cta { text-align: center; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ===== UPLOAD FORM ===== */
.upload-form input[type="text"],
.upload-form input[type="tel"],
.upload-form input[type="email"] {
  width: 100%;
  margin-bottom: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
}
.upload-form__file { display: block; cursor: pointer; }
.upload-form__file input[type="file"] {
  position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.upload-form__file-ui {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 20px 16px; border: 2px dashed var(--line); border-radius: 14px;
  background: var(--bg-2); transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.upload-form__file-ui:hover,
.upload-form__file-ui.has-file {
  border-color: rgba(255, 107, 44, 0.5); background: rgba(255, 107, 44, 0.05);
}
.upload-form__file-icon { font-size: 22px; }
.upload-form__file-text { font-size: 15px; font-weight: 600; }
.upload-form__file-hint { font-size: 12px; color: var(--muted); }
.upload-form__file--compact .upload-form__file-ui { padding: 14px 12px; }
.upload-section { scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 16px); }

/* ===== FORMATS HUB (main page) ===== */
.formats-hub { background: var(--bg-2); }
.formats-hub__links {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center;
  margin-top: 28px; text-align: center;
}
.formats-hub__links a {
  font-size: 15px; font-weight: 600; color: var(--accent); text-decoration: none;
}
.formats-hub__links a:hover { text-decoration: underline; }
.formats-hub .hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px;
}
.formats-hub .hub-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.formats-hub .hub-card:hover { border-color: rgba(255, 107, 44, 0.4); transform: translateY(-2px); }
.formats-hub .hub-card__icon { font-size: 28px; }
.formats-hub .hub-card h2 { font-size: 18px; font-weight: 700; margin: 0; }
.formats-hub .hub-card h2 a { color: inherit; }
.formats-hub .hub-card p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; flex: 1; }
.formats-hub .hub-card__link { font-size: 14px; font-weight: 600; color: var(--accent); margin-top: 4px; }
.formats-hub__more {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ===== AUDIT LANDING ===== */
.audit-page .header { top: 0; }
.audit-page__main { padding-top: calc(var(--topbar-h) + var(--header-h)); }
.audit-page .header { top: var(--topbar-h); }
.audit-hero {
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.audit-hero__inner { max-width: 720px; }
.audit-hero h1 {
  font-family: 'Oswald', sans-serif; font-size: clamp(32px, 6vw, 48px);
  font-weight: 700; line-height: 1.1; margin: 16px 0; letter-spacing: -0.02em;
}
.audit-hero__lead { font-size: 18px; color: var(--muted); line-height: 1.55; margin-bottom: 24px; }
.audit-hero__list { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 15px; }

/* ===== SECTIONS ===== */
section { padding: clamp(40px, 5.5vw, 72px) 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(24px, 4vw, 40px); }
/* Соседние секции с одним фоном — без двойного «мертвого» поля */
.cases-preview + .team,
.team + .compare,
.compare + .reviews {
  padding-top: clamp(20px, 3vw, 36px);
}
.section__tag {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--eng-blue);
  margin-bottom: 14px; padding: 4px 10px; border-radius: 6px;
  background: var(--eng-blue-dim); border: 1px solid rgba(74, 158, 255, 0.2);
}
.eng-section { position: relative; }
/* Главная: квиз и AI — одна воронка, без двойных отступов между блоками */
#quiz.eng-section { padding-bottom: clamp(16px, 3vw, 28px); }
#ai-expert.eng-section { padding-top: clamp(16px, 3vw, 28px); }
#quiz .funnel-quiz { padding: 8px 0 0; }
#ai-expert .section__head { margin-bottom: clamp(24px, 4vw, 36px); }
.eng-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image:
    linear-gradient(var(--eng-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--eng-grid) 1px, transparent 1px);
  background-size: 48px 48px;
}
.eng-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 32px);
}
.eng-panel--accent {
  border-color: rgba(74, 158, 255, 0.3);
  background: linear-gradient(145deg, rgba(74, 158, 255, 0.08), var(--surface));
}
.hero-cinema__badge {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--eng-blue);
  margin-bottom: 16px; padding: 6px 12px; border-radius: 6px;
  background: rgba(74, 158, 255, 0.15); border: 1px solid rgba(74, 158, 255, 0.25);
}
.trust__zero {
  font-family: 'Oswald', sans-serif; font-size: clamp(32px, 5vw, 48px);
  font-weight: 700; color: var(--call);
}
.btn--primary small, .btn--xl.btn--primary small {
  display: block; font-size: 12px; font-weight: 500; opacity: 0.9;
}
.section__title {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 5vw, 44px);
  font-weight: 700; line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.02em;
}
.section__sub { font-size: clamp(16px, 2vw, 18px); color: var(--muted); line-height: 1.55; }

/* ===== EQUIPMENT MINI-LANDING (home #equipment) ===== */
.equipment-landing {
  padding: 0;
  background: var(--bg);
  overflow: hidden;
}
.equipment-landing__hero {
  position: relative;
  padding: clamp(48px, 8vw, 80px) 0 clamp(40px, 6vw, 64px);
}
.equipment-landing__hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.equipment-landing__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  transform: scale(1.04);
}
.equipment-landing__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.92) 72%, var(--bg) 100%),
    linear-gradient(to right, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.45) 55%, rgba(10, 10, 10, 0.2) 100%);
}
.equipment-landing__hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: end;
}
.equipment-landing__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eng-blue);
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(74, 158, 255, 0.15);
  border: 1px solid rgba(74, 158, 255, 0.28);
}
.equipment-landing__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
  margin: 0 0 16px;
}
.equipment-landing__lead {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.55;
  color: var(--text-on-media);
  max-width: 52ch;
  margin: 0 0 24px;
}
.equipment-landing__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.equipment-landing__brands {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-on-media-muted);
  margin: 0;
}
.equipment-landing__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.equipment-landing__stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  backdrop-filter: blur(8px);
}
.equipment-landing__stat b {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
}
.equipment-landing__stat span {
  font-size: 12px;
  color: var(--text-on-media-muted);
  line-height: 1.35;
}
.equipment-landing__stat--accent {
  border-color: rgba(255, 107, 44, 0.35);
  background: rgba(255, 107, 44, 0.1);
}
.equipment-landing__stat--accent b {
  color: var(--accent-2);
}
.equipment-landing__body {
  padding: clamp(32px, 5vw, 48px) 0 clamp(40px, 5vw, 56px);
}
.equipment-landing__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0 0 clamp(40px, 6vw, 56px);
  padding: 0;
  counter-reset: none;
}
.equipment-landing__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
}
.equipment-landing__step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(255, 107, 44, 0.12);
  border: 1px solid rgba(255, 107, 44, 0.25);
}
.equipment-landing__step strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.equipment-landing__step span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.equipment-landing__section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 4vw, 36px);
}
.equipment-landing__section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 10px;
}
.equipment-landing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.equipment-landing__card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}
.equipment-landing__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 44, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.equipment-landing__card-icon {
  margin-bottom: 14px;
}
.equipment-landing__card h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}
.equipment-landing__card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1;
}
.equipment-landing__card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-2);
}
.equipment-landing__depts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: clamp(36px, 5vw, 48px);
}
.equipment-landing__dept {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.equipment-landing__dept:hover {
  border-color: rgba(255, 107, 44, 0.4);
  background: var(--surface);
}
.equipment-landing__dept--all {
  border-color: rgba(255, 107, 44, 0.35);
  color: var(--accent-2);
}
.equipment-landing__fork {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 24px);
  margin-bottom: clamp(28px, 4vw, 36px);
}
.equipment-landing__path {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
}
.equipment-landing__path--catalog {
  border-color: rgba(255, 107, 44, 0.28);
  background: linear-gradient(160deg, rgba(255, 107, 44, 0.06), var(--surface));
}
.equipment-landing__path-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eng-blue);
  margin-bottom: 12px;
}
.equipment-landing__path h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 10px;
}
.equipment-landing__path > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.equipment-landing__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  flex: 1;
}
.equipment-landing__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.45;
}
.equipment-landing__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.equipment-landing__path-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}
.equipment-landing__bridge {
  text-align: center;
  border-color: rgba(255, 107, 44, 0.25);
  background: linear-gradient(160deg, rgba(255, 107, 44, 0.07), var(--surface));
  margin-bottom: clamp(28px, 4vw, 36px);
}
.equipment-landing__bridge-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.equipment-landing__bridge-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.equipment-landing__bridge-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 58ch;
  margin: 0 auto 24px;
}
.equipment-landing__bridge-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 14px;
}
.equipment-landing__bridge-trust {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.equipment-landing__final {
  text-align: center;
}

/* ===== CATEGORIES ===== */
.categories { background: var(--bg); }
.categories__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; cursor: pointer;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}
.cat-card:hover { transform: translateY(-4px); border-color: rgba(255, 107, 44, 0.35); background: var(--surface-2); }
.cat-card__icon { font-size: 44px; margin-bottom: 16px; }
.cat-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.cat-card p { color: var(--muted); font-size: 13px; }

/* ===== SELECTOR ===== */
.selector { background: var(--bg-2); }
.selector__card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 40px); box-shadow: var(--shadow);
  max-width: 960px; margin: 0 auto;
}
.selector__form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.selector__form .field--full { grid-column: span 2; }
.selector__submit { grid-column: span 2; height: 52px; margin-top: 4px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; color: var(--muted); font-weight: 500; }
select, input[type="text"], input[type="tel"], input[type="email"] {
  background: var(--bg); border: 1px solid var(--line); color: var(--text);
  border-radius: 12px; padding: 14px 16px; font-size: 16px; font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%; min-height: 50px;
}
select:focus, input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.12); }
select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a1a1a6' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.selector__note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 16px; }

/* ===== BUDGET CALCULATOR ===== */
.calc { background: var(--bg); position: relative; overflow: hidden; }
.calc::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 50%; height: 60%;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.08), transparent 70%);
  pointer-events: none;
}
.calc__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 40px);
  align-items: stretch; max-width: 1000px; margin: 0 auto;
}
.calc__controls {
  display: flex; flex-direction: column; gap: 24px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 32px);
}
.calc__field label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.calc__field label strong { color: var(--accent-2); font-weight: 700; }
.calc__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.calc__pill {
  background: var(--bg); border: 1px solid var(--line); color: var(--text-secondary);
  border-radius: 980px; padding: 10px 18px; font-size: 14px; font-weight: 500;
  font-family: inherit; cursor: pointer; transition: all 0.2s;
}
.calc__pill:hover { border-color: rgba(255, 107, 44, 0.4); color: var(--text); }
.calc__pill.is-active {
  background: rgba(255, 107, 44, 0.12); border-color: var(--accent); color: #fff;
}
.calc__range {
  width: 100%; height: 6px; -webkit-appearance: none; appearance: none;
  background: var(--line); border-radius: 6px; outline: none; cursor: pointer;
}
.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-accent); box-shadow: 0 4px 12px rgba(255, 107, 44, 0.4);
  cursor: pointer; transition: transform 0.2s;
}
.calc__range::-webkit-slider-thumb:hover { transform: scale(1.1); }
.calc__result {
  position: relative; background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(255, 107, 44, 0.25); border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 40px); display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.calc__result-glow {
  position: absolute; inset: -1px; border-radius: inherit; z-index: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 44, 0.15), transparent 60%);
  pointer-events: none;
}
.calc__result > *:not(.calc__result-glow) { position: relative; z-index: 1; }
.calc__result-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.calc__result-price {
  font-family: 'Oswald', sans-serif; font-size: clamp(36px, 6vw, 52px);
  font-weight: 700; line-height: 1; margin-bottom: 24px;
  background: var(--grad-accent); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
  transition: opacity 0.25s;
}
.calc__result-price.is-updating { opacity: 0.4; transform: scale(0.98); }
.calc__result-meta {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.calc__result-meta li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--muted);
}
.calc__result-meta strong { color: var(--text); font-weight: 600; }
.calc__result-note { font-size: 12px; color: var(--steel); line-height: 1.5; margin-bottom: 20px; }

/* ===== COMPARE BENTO ===== */
.compare { background: var(--bg-2); }
.compare__bento {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: auto auto;
  gap: 16px;
  min-width: 0;
}
.compare__card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 32px);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
  min-width: 0;
}
.compare__card:hover { transform: translateY(-2px); }
.compare__card--win {
  grid-column: span 2;
  border-color: rgba(48, 209, 88, 0.25);
  background: linear-gradient(135deg, rgba(48, 209, 88, 0.06), var(--surface));
}
.compare__card--lose { border-color: rgba(255, 80, 80, 0.15); }
.compare__card--stat {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.compare__card--cta {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.1), var(--surface));
  border-color: rgba(255, 107, 44, 0.2);
}
.compare__badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 16px;
}
.compare__card--win .compare__badge { color: var(--call); }
.compare__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.compare__list li {
  font-size: 15px; padding-left: 28px; position: relative; line-height: 1.45;
}
.compare__list--yes li::before {
  content: "✓"; position: absolute; left: 0; color: var(--call); font-weight: 700;
}
.compare__list--no li::before {
  content: "✕"; position: absolute; left: 0; color: #ff6b6b; font-weight: 700;
}
.compare__stat { font-size: 14px; color: var(--muted); line-height: 1.5; }
.compare__stat strong { color: #ff8a8a; }
.compare__big {
  font-family: 'Oswald', sans-serif; font-size: clamp(48px, 8vw, 72px);
  font-weight: 700; line-height: 1; margin-bottom: 8px;
  background: var(--grad-accent); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.compare__card--cta h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.compare__card--cta p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.compare__mistakes { margin-top: 24px; }
.compare__mistakes-title {
  text-align: center; font-size: 13px; font-weight: 600; color: var(--muted);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em;
}
.compare__mistakes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mistake-card--compact { padding: 18px; text-align: center; }
.mistake-card--compact h3 { font-size: 14px; margin: 8px 0 4px; }
.mistake-card--compact .mistake-card__icon { font-size: 28px; }
.mistake-card--compact .mistake-card__loss { margin: 0; font-size: 13px; }

/* ===== QUOTE DOCK ===== */
.quote-dock {
  position: fixed; left: 20px; bottom: 20px; z-index: 92;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.quote-dock__toggle {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid rgba(255, 107, 44, 0.35);
  color: var(--text); border-radius: 980px; padding: 12px 20px;
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  box-shadow: var(--shadow); transition: transform 0.2s, border-color 0.2s;
}
.quote-dock__toggle:hover { transform: scale(1.03); border-color: var(--accent); }
.quote-dock__count {
  min-width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-accent); color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  animation: countPop 0.35s var(--ease-out);
}
@keyframes countPop {
  0% { transform: scale(0.5); } 70% { transform: scale(1.15); } 100% { transform: scale(1); }
}
.quote-dock__panel {
  width: min(320px, calc(100vw - 40px));
  background: rgba(26, 26, 26, 0.96); backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow);
  animation: slideUp 0.3s var(--ease-out);
}
@keyframes slideUp { from { opacity: 0; transform: translateY(12px); } }
.quote-dock__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; font-size: 14px;
}
.quote-dock__clear {
  background: none; border: none; color: var(--muted);
  font-size: 12px; cursor: pointer; font-family: inherit;
}
.quote-dock__clear:hover { color: var(--accent); }
.quote-dock__list {
  list-style: none; max-height: 180px; overflow-y: auto;
  margin-bottom: 12px; display: flex; flex-direction: column; gap: 8px;
}
.quote-dock__list li {
  font-size: 13px; padding: 8px 10px; background: var(--bg);
  border-radius: 10px; display: flex; justify-content: space-between; gap: 8px;
}
.quote-dock__list button {
  background: none; border: none; color: var(--muted); cursor: pointer; font-size: 16px; line-height: 1;
}
.quote-dock__list button:hover { color: #ff6b6b; }

/* ===== SOCIAL PROOF TOAST ===== */
.social-toast {
  position: fixed; left: 20px; top: calc(var(--topbar-h) + var(--header-h) + 16px);
  z-index: 98; display: flex; align-items: center; gap: 10px;
  background: rgba(26, 26, 26, 0.92); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 16px; max-width: min(340px, calc(100vw - 40px));
  font-size: 13px; color: var(--text-secondary);
  box-shadow: var(--shadow);
  animation: toastIn 0.5s var(--ease-out);
}
.social-toast[hidden] { display: none; }
.social-toast.is-out { animation: toastOut 0.4s var(--ease-out) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateX(-16px); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(-16px); } }
.social-toast__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--call); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.2);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; } 50% { opacity: 0.5; }
}

/* ===== ADVANTAGES ===== */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.adv-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.adv-card:hover { transform: translateY(-3px); border-color: rgba(255, 107, 44, 0.3); }
.adv-card__icon { font-size: 32px; margin-bottom: 14px; }
.adv-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.adv-card p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ===== CATALOG ===== */
.catalog__filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.filter-btn {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  border-radius: 980px; padding: 10px 20px; font-size: 14px; font-weight: 500;
  font-family: inherit; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.is-active { border-color: var(--accent); color: var(--text); background: rgba(255, 107, 44, 0.08); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out), border-color 0.3s; position: relative;
  transform-style: preserve-3d;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255, 107, 44, 0.3); }
.card.is-quoted { border-color: rgba(48, 209, 88, 0.45); }
.card.is-quoted .card__btn--quote { background: rgba(48, 209, 88, 0.15); border-color: var(--call); color: var(--call); }
.card__actions { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.card__btn--quote {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  box-shadow: none; padding: 8px 12px;
}
.card__btn--quote:hover { border-color: var(--accent); color: var(--text); background: rgba(255, 107, 44, 0.08); transform: none; }
.card__badge {
  position: absolute; top: 12px; left: 12px; background: var(--grad-accent);
  color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 980px; z-index: 2;
}
.card__img {
  height: 160px; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.06), transparent 70%);
}
.equip-icon { font-size: 56px; }
.card__body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__cat { font-size: 11px; color: var(--steel); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.card__title { font-size: 15px; font-weight: 700; line-height: 1.3; }
.card__spec { font-size: 13px; color: var(--muted); }
.card__stars { color: var(--accent); font-size: 12px; }
.card__bottom {
  margin-top: auto; display: flex; flex-direction: column;
  align-items: stretch; gap: 10px; padding-top: 10px;
}
.card__actions .card__btn { flex: 1; min-width: 0; }
.card__price { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.card__price s { font-size: 12px; color: var(--muted); font-weight: 400; margin-right: 4px; }
.card__btn { padding: 8px 14px; font-size: 13px; border-radius: 980px; }

/* ===== STATS ===== */
.stats { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b {
  display: block; font-family: 'Oswald', sans-serif; font-size: clamp(36px, 6vw, 52px);
  font-weight: 700; background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { color: var(--muted); font-size: 14px; }

/* ===== SERVICES ===== */
.services { background: var(--bg); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform 0.3s var(--ease-out);
}
.service-card:hover { transform: translateY(-3px); }
.service-card__icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; line-height: 1.55; }
.service-card__tag {
  display: inline-block; font-size: 12px; font-weight: 600; color: var(--accent);
  background: rgba(255, 107, 44, 0.1); padding: 5px 14px; border-radius: 980px;
}

/* ===== PORTFOLIO ===== */
.portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.portfolio-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.3s var(--ease-out);
}
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-card__img { height: 200px; overflow: hidden; position: relative; }
.portfolio-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.portfolio-card:hover .portfolio-card__img img { transform: scale(1.05); }
.portfolio-card__cta {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%) translateY(12px);
  opacity: 0; transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  z-index: 2; white-space: nowrap; box-shadow: var(--shadow);
}
.portfolio-card:hover .portfolio-card__cta,
.portfolio-card:focus-within .portfolio-card__cta {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.portfolio-card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75), transparent 55%);
  opacity: 0; transition: opacity 0.35s;
}
.portfolio-card:hover .portfolio-card__img::after { opacity: 1; }
.portfolio-card__img--placeholder {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 56px; background: var(--surface-2);
}
.portfolio-card__body { padding: 22px; }
.portfolio-card__type { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.portfolio-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.portfolio-card p { color: var(--muted); font-size: 14px; margin-bottom: 12px; line-height: 1.5; }
.portfolio-card__meta { display: flex; gap: 16px; font-size: 13px; color: var(--steel); font-weight: 500; }

/* ===== VIDEO SHOWCASE ===== */
.video-showcase { background: var(--bg-2); }
.video-frame {
  position: relative; max-width: 960px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  background: #000; box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
}
.video-frame__player,
.video-frame__embed {
  width: 100%; height: 100%; display: block;
  object-fit: cover; background: #000;
}
.video-frame__embed { border: none; }
.video-frame__player { opacity: 1; transition: opacity 0.4s; }
.video-frame.is-playing .video-frame__player { object-fit: contain; }
.video-frame__play {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none; cursor: pointer;
  transition: opacity 0.35s, background 0.35s;
}
.video-frame__play:hover { background: rgba(0, 0, 0, 0.45); }
.video-frame__play-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bg); font-size: 28px; padding-left: 6px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s var(--ease-out);
}
.video-frame__play:hover .video-frame__play-icon { transform: scale(1.08); }
.video-frame.is-playing .video-frame__play { opacity: 0; pointer-events: none; }
.video-frame.is-playing:hover .video-frame__play { opacity: 0; }
.video-frame__badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(8px);
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 980px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
  transition: opacity 0.3s;
}
.video-frame.is-playing .video-frame__badge { opacity: 0; }
.video-frame__hint {
  text-align: center; font-size: 13px; color: var(--muted);
  margin-top: 16px; max-width: 520px; margin-left: auto; margin-right: auto;
}
.video-frame.is-missing .video-frame__play-icon { font-size: 14px; padding: 0 8px; width: auto; min-width: 80px; border-radius: 40px; }
@media (max-width: 768px) {
  .video-frame__play-icon { width: 64px; height: 64px; font-size: 22px; }
}

/* ===== REVIEWS ===== */
.reviews { background: var(--bg-2); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ===== TEAM ===== */
.team { background: var(--bg-2); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}
.team-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  border-color: rgba(255, 107, 44, 0.28);
  box-shadow: var(--shadow);
}
.team-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 320px;
  background: linear-gradient(145deg, var(--eng-blue-dim), var(--surface-2));
  border-bottom: 1px solid var(--line);
}
.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.team-card__initials {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--eng-blue);
}
.team-card__photo--fallback .team-card__initials {
  display: flex;
}
.team-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: clamp(18px, 3vw, 24px);
  min-width: 0;
}
.team-card__tenure {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.team-card__name {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.team-card__role {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
}
.team-card__bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.team-card__tag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.team-card__quote {
  margin: 8px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 107, 44, 0.06);
  font-size: 13px;
  line-height: 1.55;
  font-style: italic;
  color: var(--text);
}
.team__trust {
  margin: clamp(24px, 4vw, 36px) 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.team__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.review__stars { margin-bottom: 14px; }
.review p { font-size: 15px; line-height: 1.6; margin-bottom: 16px; color: var(--text); }
.review footer { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ===== LEAD ===== */
.lead { background: var(--bg); }
.lead__inner {
  display: grid; grid-template-columns: 1fr 440px; gap: clamp(32px, 6vw, 64px); align-items: center;
  min-width: 0;
}
.lead__inner > * { min-width: 0; }
.lead__text, .lead__form { overflow-wrap: anywhere; }
.lead__text h2 {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.02em;
}
.lead__text p { color: var(--muted); font-size: 17px; margin-bottom: 24px; line-height: 1.55; }
.lead__visual { margin: 0 0 24px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.lead__visual img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 35%; }
.lead__visual--founder {
  max-width: 272px;
  background: linear-gradient(180deg, #ebebeb 0%, #d4d4d4 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.lead__visual--founder img {
  aspect-ratio: auto;
  max-height: none;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}
.lead__sketch-title {
  font-size: 14px; font-weight: 600; color: var(--text); margin: 0 0 8px;
}
.lead__sketch-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; color: var(--muted); margin: 0 0 20px; padding: 14px 16px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
}
.lead__sketch-list li::before { content: "→ "; color: var(--accent); }
.lead__benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 15px; margin-bottom: 28px; }
.lead__call { margin-top: 8px; }
.lead__form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow);
}
.lead__form h3 { font-size: 20px; font-weight: 700; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); cursor: pointer; }
.checkbox input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--accent); }
.checkbox a { color: var(--accent); text-decoration: underline; }
.lead__form-note { text-align: center; font-size: 12px; color: var(--muted); }

/* ===== FAQ ===== */
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 2px 24px; }
.faq__item[open] { border-color: rgba(255, 107, 44, 0.3); }
.faq__item summary {
  cursor: pointer; font-weight: 600; font-size: 16px; padding: 18px 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 22px; color: var(--accent); transition: transform 0.2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); font-size: 15px; padding: 0 0 18px; line-height: 1.6; }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--grad-accent); text-align: center; }
.final-cta__inner { color: #fff; }
.final-cta h2 {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 5vw, 44px);
  font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em;
}
.final-cta p { font-size: 18px; margin-bottom: 28px; opacity: 0.92; }
.final-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn--call { background: #fff; color: var(--call-dark); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.final-cta .btn--ghost { border-color: rgba(255,255,255,0.4); color: #fff; }

/* ===== LOCATION / MAP ===== */
.location { background: var(--bg-2); border-top: 1px solid var(--line); }
.location__grid {
  display: grid; grid-template-columns: minmax(0, 380px) 1fr;
  gap: clamp(24px, 4vw, 40px); align-items: stretch;
}
.location__info {
  display: flex; flex-direction: column; gap: 20px;
  padding: clamp(24px, 4vw, 32px);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.location__address {
  font-style: normal; line-height: var(--lh-relaxed);
  color: var(--text-secondary); font-size: var(--fs-base);
}
.location__address strong {
  display: block; font-size: var(--fs-md); color: var(--text);
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.location__meta {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  font-size: var(--fs-base);
}
.location__meta a { color: var(--text); font-weight: 600; }
.location__meta a:hover { color: var(--accent-2); }
.location__hours {
  font-size: var(--fs-sm); color: var(--text-tertiary); line-height: var(--lh-relaxed);
}
.location__map {
  min-height: 360px; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line);
  background: var(--surface);
}
.location__map iframe {
  display: block; width: 100%; height: 100%; min-height: 360px; border: 0;
}

/* ===== AUDIENCE ===== */
.audience { background: var(--bg); padding: clamp(48px, 8vw, 80px) 0; }
.audience .section__head { margin-bottom: clamp(28px, 5vw, 40px); }
.audience__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.audience__card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 28px); display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.audience__card:hover {
  border-color: rgba(255, 107, 44, 0.35); transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.audience__card--featured {
  grid-column: 1 / -1;
  border-color: rgba(255, 107, 44, 0.45);
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.08), var(--surface));
  padding: clamp(24px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  column-gap: clamp(16px, 3vw, 28px);
  align-items: start;
}
.audience__card--featured .audience__tag { grid-column: 1 / -1; }
.audience__card--featured .audience__card-main { grid-column: 1; grid-row: 2; margin-bottom: 0; }
.audience__card--featured .audience__action {
  grid-column: 2; grid-row: 2; align-self: end; margin-top: 0;
}
.audience__card--urgent { border-color: rgba(255, 138, 138, 0.25); }
.audience__card--urgent:hover { border-color: rgba(255, 138, 138, 0.45); }
.audience__tag {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  color: var(--accent-2); background: rgba(255, 107, 44, 0.12);
  border: 1px solid rgba(255, 107, 44, 0.25);
}
.audience__tag--muted {
  color: var(--muted); background: var(--bg-2); border-color: var(--line);
}
.audience__tag--urgent {
  color: #ff8a8a; background: rgba(255, 107, 107, 0.1); border-color: rgba(255, 107, 107, 0.25);
}
.audience__card-main {
  display: flex; align-items: flex-start; gap: clamp(16px, 3vw, 24px);
}
.audience__body { flex: 1; min-width: 0; }
.audience__icon { flex-shrink: 0; }
.audience__card h3 {
  font-size: clamp(17px, 2vw, 20px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 8px;
}
.audience__pain {
  font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0 0 8px;
}
.audience__outcome {
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
  line-height: 1.5; margin: 0; flex: 1;
}
.audience__card--featured .audience__outcome { color: var(--text); }
.audience__action { align-self: flex-start; margin-top: auto; }
.audience__card--featured .audience__card-main { margin-bottom: 0; }
.audience__fallback {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 20px; margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--line); text-align: center;
}
.audience__fallback p {
  font-size: 15px; color: var(--muted); margin: 0;
}

/* ===== CLIENT SEGMENTS ===== */
.clients { background: var(--bg-2); padding: clamp(48px, 8vw, 80px) 0; }
.clients__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.clients__card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.clients__card:hover { border-color: rgba(74, 158, 255, 0.3); transform: translateY(-2px); }
.clients__num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--eng-blue); letter-spacing: 0.1em;
}
.clients__card h3 { font-size: 16px; font-weight: 700; }
.clients__card p { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }

/* ===== VALUE PROPS ===== */
.value-props { background: var(--bg); padding: clamp(40px, 6vw, 64px) 0; border-top: 1px solid var(--line); }
.value-props__grid {
  list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.value-props__item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 8px;
}
.value-props__item strong { font-size: 14px; font-weight: 700; line-height: 1.3; }
.value-props__item span { font-size: 12px; color: var(--muted); line-height: 1.45; }

/* ===== DOWNLOADS ===== */
.downloads { background: var(--bg-2); padding: clamp(40px, 6vw, 64px) 0; }
.downloads__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
}
.downloads__text h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.downloads__text p { font-size: 14px; color: var(--muted); max-width: 420px; line-height: 1.5; }
.downloads__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.downloads__btn {
  display: flex; align-items: center; gap: 14px; padding: 14px 20px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  font-family: inherit; text-align: left; cursor: pointer; color: var(--text);
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.downloads__btn:hover { border-color: var(--accent); transform: translateY(-2px); }
.downloads__btn strong { display: block; font-size: 14px; font-weight: 700; }
.downloads__btn small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.downloads__icon { font-size: 24px; flex-shrink: 0; }

.portfolio { background: var(--bg); }

/* ===== PORTFOLIO STATS ===== */
.portfolio__stats {
  display: flex; justify-content: center; gap: 48px; margin-bottom: 32px; text-align: center;
}
.portfolio__stats b {
  display: block; font-family: 'Oswald', sans-serif; font-size: clamp(36px, 6vw, 48px);
  font-weight: 700; color: var(--accent); line-height: 1;
}
.portfolio__stats span { font-size: 13px; color: var(--muted); }
.portfolio__cta { text-align: center; margin-top: 28px; }

/* ===== BUDGET STRIP ===== */
.budget-strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(32px, 5vw, 48px) 0; }
.budget-strip__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.budget-strip__title { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--eng-blue); margin-bottom: 20px; }
.budget-strip__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin-bottom: 16px; }
.budget-strip__list li { display: flex; flex-direction: column; gap: 4px; padding: 12px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; min-width: 160px; }
.budget-strip__list strong { font-size: 14px; }
.budget-strip__list span { font-size: 18px; font-weight: 700; color: var(--accent-2); }
.budget-strip__note { font-size: 14px; color: var(--muted); line-height: 1.5; }
.budget-strip__note b { color: var(--text); }

/* ===== PROJECT PRICING ===== */
.project-pricing { background: var(--bg); padding: clamp(48px, 8vw, 80px) 0; }
.project-pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.pricing-path {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 36px); display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.pricing-path--featured {
  border-color: rgba(255, 107, 44, 0.35);
  background: linear-gradient(160deg, rgba(255, 107, 44, 0.08), var(--surface));
  box-shadow: var(--shadow-accent);
}
.pricing-path__badge {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); background: rgba(255, 107, 44, 0.12);
  padding: 4px 10px; border-radius: 6px;
}
.pricing-path h3 { font-size: 22px; font-weight: 700; padding-right: 100px; }
.pricing-path__lead { font-size: 15px; color: var(--muted); line-height: 1.55; }
.pricing-path__lead strong { color: var(--text); }
.pricing-path__price {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
  font-family: 'Oswald', sans-serif;
}
.pricing-path__price strong { font-size: 42px; font-weight: 700; color: var(--eng-blue); line-height: 1; }
.pricing-path__price span { font-size: 16px; color: var(--muted); }
.pricing-path__example { font-size: 14px; color: var(--steel); margin-top: -6px; }
.pricing-path__list { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pricing-path__list li {
  font-size: 14px; padding-left: 20px; position: relative; color: var(--text-secondary);
}
.pricing-path__list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--call); font-weight: 700;
}
.pricing-path--featured .pricing-path__list li::before { color: var(--accent); }
.pricing-path__hint { font-size: 13px; color: var(--steel); line-height: 1.5; }
.project-pricing__budget {
  max-width: 720px; margin: 28px auto 0; text-align: center;
  padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.project-pricing__budget-title {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--eng-blue); margin-bottom: 16px;
}
.project-pricing__footnote {
  text-align: center; font-size: 13px; color: var(--muted); line-height: 1.6;
  max-width: 640px; margin: 24px auto 0;
}

/* ===== LOSS CALCULATOR ===== */
.loss-calc { background: var(--bg-2); }
.loss-calc__grid,
.loss-calc__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.loss-calc__controls { display: flex; flex-direction: column; gap: 24px; }
.loss-calc__field { display: flex; flex-direction: column; gap: 10px; }
.loss-calc__field > span { font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.loss-calc__field input[type="range"] { width: 100%; accent-color: var(--accent); }
.loss-calc__field output { font-family: var(--font-mono); font-size: 18px; font-weight: 600; color: var(--accent); }
.loss-calc__field select {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--bg-2); color: var(--text); font-size: 15px;
}
.loss-calc__label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 8px; }
.loss-calc__total,
.loss-calc__sum {
  font-family: 'Oswald', sans-serif; font-size: clamp(36px, 6vw, 52px); font-weight: 700;
  color: #ff6b6b; line-height: 1; margin-bottom: 20px;
}
.loss-calc__breakdown { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.loss-calc__breakdown li { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); gap: 12px; }
.loss-calc__breakdown strong { color: var(--text); white-space: nowrap; }
.loss-calc__range { font-size: 14px; color: var(--muted); margin: -8px 0 16px; line-height: 1.5; }

/* ===== MISTAKE COSTS ===== */
.mistakes-cost { background: var(--bg); }
.mistakes-cost__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mistake-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: border-color 0.3s, transform 0.3s;
}
.mistake-card:hover { border-color: rgba(255, 107, 107, 0.35); transform: translateY(-2px); }
.mistake-card__icon { font-size: 32px; margin-bottom: 12px; }
.mistake-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.mistake-card__loss { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.mistake-card__loss strong { color: #ff8a8a; font-size: 18px; }
.mistake-card__desc { font-size: 13px; color: var(--steel); line-height: 1.5; }

/* ===== FLOW ===== */
.flow { background: var(--bg-2); }
.flow__wrap { max-width: 900px; margin: 0 auto; }
.flow__canvas { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px; }
.flow__svg { width: 100%; height: auto; display: block; }
.flow__zone {
  fill: rgba(74, 158, 255, 0.08); stroke: rgba(74, 158, 255, 0.35); stroke-width: 1.5;
  cursor: pointer; transition: fill 0.2s, stroke 0.2s;
}
.flow__zone:hover, .flow__zone.is-active { fill: rgba(74, 158, 255, 0.2); stroke: var(--eng-blue); }
.flow__path { fill: none; stroke-width: 2; stroke-dasharray: 6 4; }
.flow__path--product { stroke: var(--accent); }
.flow__path--staff { stroke: var(--eng-blue); }
.flow__dot--product { fill: var(--accent); }
.flow__dot--staff { fill: var(--eng-blue); }
.flow__legend { display: flex; gap: 20px; justify-content: center; margin-top: 12px; font-size: 12px; color: var(--muted); }
.flow__dot-swatch { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.flow__dot-swatch--product { background: var(--accent); }
.flow__dot-swatch--staff { background: var(--eng-blue); }
.flow__note { text-align: center; font-size: 13px; color: var(--steel); margin-bottom: 16px; }
.flow__info strong { display: block; font-size: 18px; margin-bottom: 8px; color: var(--eng-blue); }
.flow__info p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ===== DIAGNOSIS ===== */
.diagnosis { background: var(--bg); }
.diagnosis__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; align-items: start; }
.diagnosis__progress { height: 4px; background: var(--bg); border-radius: 4px; overflow: hidden; margin-bottom: 24px; }
.diagnosis__bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--eng-blue), var(--accent)); transition: width 0.35s; }
.diagnosis__q { margin-bottom: 20px; }
.diagnosis__q h4 { font-size: 16px; font-weight: 600; margin-bottom: 12px; line-height: 1.35; }
.diagnosis__opts { display: flex; flex-direction: column; gap: 8px; }
.diagnosis__opt {
  text-align: left; background: var(--bg); border: 1px solid var(--line); color: var(--text);
  border-radius: 12px; padding: 14px 16px; font-size: 14px; font-family: inherit; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.diagnosis__opt:hover { border-color: var(--eng-blue); background: var(--eng-blue-dim); }
.diagnosis__result-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.diagnosis__risk {
  font-family: 'Oswald', sans-serif; font-size: clamp(32px, 5vw, 44px); font-weight: 700;
  margin: 12px 0; line-height: 1;
}
.diagnosis__risk--low { color: var(--call); }
.diagnosis__risk--medium { color: #ffc107; }
.diagnosis__risk--high { color: var(--accent); }
.diagnosis__risk--critical { color: #ff4757; }
.diagnosis__result-text { font-size: 15px; color: var(--muted); margin-bottom: 16px; line-height: 1.55; }
.diagnosis__risks-list { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.diagnosis__risks-list li { font-size: 13px; padding-left: 16px; position: relative; color: var(--text-secondary); }
.diagnosis__risks-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }

/* ===== CASES ===== */
.cases { background: var(--bg-2); }
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case-card {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 24px;
}
.case-card__tag { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--eng-blue); }
.case-card h3 { font-size: 18px; font-weight: 700; margin: 10px 0; }
.case-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.case-card__problem strong, .case-card__fix strong { color: var(--text); }
.case-card__loss { font-size: 14px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.case-card__loss strong { color: #ff8a8a; }
.cases__grid--compact { margin-top: 24px; }
.case-card--compact { border-left-width: 2px; padding: 18px 20px; }
.case-card--compact h3 { font-size: 16px; margin: 8px 0 0; }
.case-card--compact .case-card__loss { margin: 0; padding: 0; border: none; font-size: 13px; }

/* ===== TURNKEY ===== */
.turnkey { background: var(--bg-2); }
.turnkey__proof {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px;
  margin-bottom: 28px; text-align: center;
}
.turnkey__proof-item {
  display: flex; flex-direction: column; gap: 2px; min-width: 100px;
}
.turnkey__proof-item strong {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 36px);
  font-weight: 700; color: var(--accent-2); line-height: 1;
}
.turnkey__proof-item span { font-size: 13px; color: var(--muted); font-weight: 500; }
.turnkey__progress {
  height: 3px; background: var(--line); border-radius: 999px;
  margin-bottom: 28px; overflow: hidden;
}
.turnkey__progress-fill {
  height: 100%; width: 20%; border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.45s var(--ease-out);
}
.turnkey__layout {
  display: grid; grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
  gap: clamp(16px, 3vw, 28px); align-items: start; margin-bottom: 32px;
}
.turnkey__rail {
  display: flex; flex-direction: column; gap: 8px; position: relative;
}
.turnkey__rail::before {
  content: ""; position: absolute; left: 21px; top: 28px; bottom: 28px; width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--line)); z-index: 0;
}
.turnkey__step {
  display: flex; align-items: flex-start; gap: 14px; text-align: left;
  padding: 14px 16px 14px 12px; position: relative; z-index: 1;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  font-family: inherit; color: inherit; cursor: pointer; width: 100%;
  transition: border-color 0.25s, background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.turnkey__step:hover {
  border-color: rgba(255, 107, 44, 0.35); transform: translateX(2px);
}
.turnkey__step.is-active {
  border-color: rgba(255, 107, 44, 0.55);
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.08), var(--surface));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.turnkey__step-num {
  flex-shrink: 0; width: 20px; margin-top: 12px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--muted); text-align: center;
}
.turnkey__step-icon { flex-shrink: 0; }
.turnkey__step.is-active .turnkey__step-icon {
  background: rgba(255, 107, 44, 0.15); color: var(--accent);
}
.turnkey__step-body { flex: 1; min-width: 0; }
.turnkey__step-time {
  display: inline-block; font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-2);
  margin-bottom: 4px;
}
.turnkey__step h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; line-height: 1.25; }
.turnkey__step p { font-size: 13px; color: var(--muted); line-height: 1.45; margin: 0; }
.turnkey__showcase {
  position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 20px);
  border-color: rgba(255, 107, 44, 0.2);
  background: linear-gradient(160deg, rgba(255, 107, 44, 0.06), var(--surface));
}
.turnkey__detail-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.turnkey__detail-headline {
  font-size: clamp(20px, 2.5vw, 24px); font-weight: 700; line-height: 1.3;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.turnkey__detail-avoid {
  font-size: 14px; color: var(--call); line-height: 1.5;
  padding: 10px 14px; margin-bottom: 18px; border-radius: 10px;
  background: rgba(48, 209, 88, 0.08); border: 1px solid rgba(48, 209, 88, 0.2);
}
.turnkey__detail-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px;
}
.turnkey__detail-list li {
  font-size: 14px; color: var(--text-secondary); padding-left: 22px; position: relative; line-height: 1.5;
}
.turnkey__detail-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px rgba(255, 107, 44, 0.15);
}
.turnkey__detail-time {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: var(--muted); letter-spacing: 0.04em; margin: 0;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.turnkey__footer { text-align: center; }
.turnkey__note {
  font-size: 15px; color: var(--muted); margin-bottom: 20px; line-height: 1.5;
}
.turnkey__note a { color: var(--accent); font-weight: 600; }
.turnkey__cta {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 14px;
}
.turnkey__trust { font-size: 13px; color: var(--muted); margin: 0; }

/* ===== MAP PROJECTS ===== */
.map-projects { background: var(--bg-2); }
.map-projects__layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.map-projects__map { min-height: 320px; display: flex; align-items: center; justify-content: center; padding: 16px; }
.map-projects__svg { width: 100%; max-height: 280px; }
.map-projects__region { fill: rgba(74, 158, 255, 0.06); stroke: rgba(74, 158, 255, 0.25); stroke-width: 1.5; }
.map-projects__pin {
  cursor: pointer; transition: transform 0.2s;
}
.map-projects__pin circle { fill: var(--accent); stroke: #fff; stroke-width: 2; }
.map-projects__pin.is-active circle { fill: var(--eng-blue); r: 8; }
.map-projects__pin:hover { transform: scale(1.15); }
.map-projects__detail-label { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.map-projects__detail h3 { font-size: 22px; font-weight: 700; margin: 8px 0 12px; }
.map-projects__detail-meta { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.map-projects__detail-meta li {
  font-size: 12px; padding: 4px 10px; border-radius: 6px;
  background: var(--bg); border: 1px solid var(--line); color: var(--muted);
}
.map-projects__detail p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.categories__grid--compact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.categories__grid--compact .cat-card { padding: 16px 12px; }
.categories__grid--compact .cat-card__icon { font-size: 28px; margin-bottom: 6px; }
.categories__grid--compact .cat-card h3 { font-size: 14px; }
.categories__grid--compact .cat-card p { display: none; }
.quiz__promise {
  background: var(--eng-blue-dim); border: 1px solid rgba(74, 158, 255, 0.25);
  border-radius: 12px; padding: 16px; margin-bottom: 20px;
}
.quiz__promise p { font-size: 15px; color: var(--text); line-height: 1.5; margin: 0; font-weight: 500; }

/* ===== FOOTER ===== */
.footer { background: var(--footer-bg); border-top: 1px solid var(--line); padding: 56px 0 28px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  min-width: 0;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.footer__col h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.footer__col a, .footer__col span, .footer__link-btn { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer__col a:hover, .footer__link-btn:hover { color: var(--text); }
.footer__link-btn {
  background: none; border: none; padding: 0; font-family: inherit; text-align: left; cursor: pointer;
}
.footer__brand p { color: var(--muted); font-size: 14px; max-width: 280px; margin-top: 8px; line-height: 1.5; }
.footer__legal {
  padding-top: 20px; margin-top: 8px; border-top: 1px solid var(--line);
}
.footer__legal p {
  margin: 0; color: var(--steel); font-size: 11px; line-height: 1.55; max-width: 960px;
}
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 24px; border-top: 1px solid var(--line); color: var(--steel); font-size: 12px;
}
.footer--compact .footer__bottom { padding-top: 16px; margin-top: 0; border-top: 1px solid var(--line); }
.footer__compact-nav {
  display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: center;
  padding: 20px 0 0; font-size: 14px;
}
.footer__compact-nav a { color: var(--muted); transition: color 0.2s; }
.footer__compact-nav a:hover { color: var(--accent); }

/* ===== FLOATS & STICKY ===== */
.floats { position: fixed; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 90; }
.float {
  width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 13px; color: #fff;
  box-shadow: var(--shadow); transition: transform 0.2s;
}
.float:hover { transform: scale(1.08); }
.float--wa { background: #25d366; }
.float--tg { background: #2aabee; }
.float--max {
  background: linear-gradient(145deg, #4f46e5 0%, #7c3aed 55%, #a855f7 100%);
  font-size: 10px;
  letter-spacing: 0.04em;
}
.float--call { background: var(--call); font-size: 20px; display: none; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  padding: 10px 16px; padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: var(--sticky-bg); backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--sticky-border); display: none;
}
.sticky-cta__inner {
  display: grid; grid-template-columns: auto 1fr; gap: 10px;
  max-width: var(--maxw); margin: 0 auto; align-items: stretch;
}
.sticky-cta__inner .btn--call { padding: 14px 20px; font-size: 15px; white-space: nowrap; }
.sticky-cta__inner .btn--concept--sticky { width: 100%; }

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px); }
.modal__box {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); width: 100%; max-width: 500px;
  padding: 36px; box-shadow: var(--shadow); animation: pop 0.35s var(--ease-out);
  color: var(--text);
}
@keyframes pop { from { opacity: 0; transform: translateY(24px) scale(0.96); } }
.modal__close {
  position: absolute; top: 16px; right: 18px; background: none; border: none;
  color: var(--muted); font-size: 28px; cursor: pointer; line-height: 1;
}
.modal__close:hover { color: var(--text); }
.quiz__progress { height: 4px; background: var(--bg); border-radius: 4px; overflow: hidden; margin-bottom: 28px; }
.quiz__bar { height: 100%; width: 25%; background: var(--grad-accent); transition: width 0.35s var(--ease-out); }
.quiz__step { display: none; }
.quiz__step.is-active { display: block; animation: fadeIn 0.35s var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } }
.quiz__step h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; line-height: 1.25; letter-spacing: -0.02em; }
.quiz__hint { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.quiz__options { display: flex; flex-direction: column; gap: 10px; }
.quiz__opt {
  text-align: left; background: var(--bg); border: 1px solid var(--line); color: var(--text);
  border-radius: 14px; padding: 16px 18px; font-size: 16px; font-weight: 500;
  font-family: inherit; cursor: pointer; transition: all 0.2s;
}
.quiz__opt:hover { border-color: var(--accent); background: rgba(255, 107, 44, 0.06); }
.quiz__form { display: flex; flex-direction: column; gap: 14px; }
.quiz__success { text-align: center; padding: 16px 0; }
.quiz__check {
  width: 64px; height: 64px; border-radius: 50%; background: var(--call);
  color: #fff; font-size: 32px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.quiz__success p { color: var(--muted); margin-bottom: 20px; }

/* ===== LEGAL & COOKIE ===== */
.legal { padding: clamp(40px, 7vw, 72px) 0; }
.legal__inner { max-width: 760px; }
.legal h1 { font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 38px); font-weight: 700; margin-bottom: 18px; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--accent); }
.legal p { color: var(--muted); margin-bottom: 14px; font-size: 15px; line-height: 1.6; }
.legal a { color: var(--accent); }
.legal b { color: var(--text); }
.legal__note { background: rgba(255, 107, 44, 0.08); border: 1px solid rgba(255, 107, 44, 0.2); border-radius: 12px; padding: 14px 18px; color: var(--accent-2); font-size: 14px; margin-bottom: 20px; }
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  padding: 16px; padding-bottom: max(16px, env(safe-area-inset-bottom));
  background: var(--cookie-bg); backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
}
.cookie[hidden] { display: none; }
.cookie__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie__text { flex: 1; min-width: 240px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.cookie__text a { color: var(--accent); }
.cookie__actions { display: flex; gap: 10px; }

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.theme-toggle:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(255, 107, 44, 0.08);
  transform: scale(1.04);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.theme-toggle__sun { display: none; }
.theme-toggle__moon { display: block; }
[data-theme="light"] .theme-toggle__sun { display: block; }
[data-theme="light"] .theme-toggle__moon { display: none; }
[data-theme="light"] .theme-toggle {
  border-color: rgba(255, 107, 44, 0.28);
  background: rgba(255, 107, 44, 0.08);
  color: var(--accent);
}
.theme-toggle--topbar {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-color: rgba(255, 107, 44, 0.22);
  background: rgba(255, 255, 255, 0.06);
}
.theme-toggle--topbar svg { width: 14px; height: 14px; }
.theme-toggle--topbar:hover { transform: none; }
[data-theme="light"] .theme-toggle--topbar {
  background: rgba(255, 255, 255, 0.72);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1400px) { :root { --maxw: 1280px; } }

@media (max-width: 1280px) {
  .nav > a.nav__trim { display: none; }
  .nav { gap: 10px; }
  body.catalog-page .header__phone { display: none; }
}
@media (max-width: 1180px) {
  .nav > a[href*="index.html"]:not(.logo) { display: none; }
  .btn--concept--header .btn__concept-sub { display: none; }
}
@media (max-width: 1100px) {
  body.catalog-page .btn--concept--header { display: none; }
}

@media (max-width: 900px) {
  .nav,
  .header__phone {
    display: none;
  }
  .btn--concept--header {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav.is-open {
    display: flex;
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--mobile-nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--mobile-nav-shadow);
    padding: 20px 24px;
    gap: 6px;
    max-height: calc(100dvh - var(--topbar-h) - var(--header-h));
    overflow-y: auto;
    z-index: 110;
  }
  .nav.is-open > a,
  .nav.is-open .nav-dropdown__trigger {
    font-size: 17px;
    padding: 10px 0;
    text-align: left;
  }
  .nav-dropdown__panel {
    position: static;
    transform: none;
    min-width: 0;
    max-width: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 8px 12px;
  }
  .nav-dropdown:not(.is-open) .nav-dropdown__panel { display: none; }
  .nav-dropdown.is-open .nav-dropdown__panel { display: block; }
  .nav-dropdown__link { padding: 8px 10px; font-size: 15px; }
}

@media (max-width: 1024px) {
  .cards, .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .story__panel, .story__panel--reverse { grid-template-columns: 1fr; direction: ltr; }
  .story__panel--reverse .story__visual { order: -1; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__line { display: none; }
  .calc__layout { grid-template-columns: 1fr; }
  .compare__bento { grid-template-columns: 1fr; }
  .compare__card--win, .compare__card--cta { grid-column: span 1; }
  .equipment-landing__hero-inner { grid-template-columns: 1fr; }
  .equipment-landing__title { max-width: none; }
  .equipment-landing__steps { grid-template-columns: 1fr; }
  .equipment-landing__grid { grid-template-columns: 1fr 1fr; }
  .equipment-landing__fork { grid-template-columns: 1fr; }
  .loss-calc__grid, .diagnosis__layout, .map-projects__layout { grid-template-columns: 1fr; }
  .mistakes-cost__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; }
  .fears__grid { grid-template-columns: 1fr 1fr; }
  .fears__card--lead .fears__card-main { grid-template-columns: auto 1fr; }
  .fears__card--lead .fears__loss { grid-column: 1 / -1; text-align: left; margin-top: 8px; white-space: normal; }
  .value__grid { grid-template-columns: 1fr; }
  .cases-preview__grid { grid-template-columns: 1fr 1fr; }
  .formats-hub .hub-grid { grid-template-columns: 1fr 1fr; }
  .compare__mistakes-grid { grid-template-columns: 1fr; }
  .turnkey__layout { grid-template-columns: 1fr; }
  .turnkey__showcase { position: static; }
  .turnkey__rail::before { display: none; }
  .downloads__inner { flex-direction: column; align-items: stretch; }
  .project-pricing__grid { grid-template-columns: 1fr; }
  .pricing-path h3 { padding-right: 0; }
  .cases__grid { grid-template-columns: 1fr; }
  .quote-dock { left: 16px; bottom: 88px; }
  .social-toast { left: 16px; right: 16px; max-width: none; }
  .technologist__card { grid-template-columns: 1fr; text-align: center; }
  .technologist__avatar { margin: 0 auto; }
  .technologist__cta { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .hero-cinema { align-items: flex-end; min-height: 92dvh; }
  .hero-cinema__media img,
  .hero-cinema__media video { object-position: 48% 42%; }
  .hero-cinema__title { font-size: clamp(36px, 10vw, 52px); }
  .hero-cinema__actions { flex-direction: column; width: 100%; }
  .hero-cinema__actions .btn { width: 100%; }
  .equipment-landing__hero-actions { flex-direction: column; width: 100%; }
  .equipment-landing__hero-actions .btn { width: 100%; }
  .equipment-landing__grid { grid-template-columns: 1fr; }
  .hero-cinema__scroll { display: none; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .adv-grid, .reviews__grid, .services__grid, .portfolio__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .team__cta { flex-direction: column; align-items: stretch; }
  .team__cta .btn { width: 100%; justify-content: center; }
  .cards, .categories__grid { grid-template-columns: 1fr; }
  .selector__form { grid-template-columns: 1fr; }
  .selector__submit, .selector__form .field--full { grid-column: span 1; }
  .lead__inner { grid-template-columns: 1fr; }
  .lead__visual--founder { max-width: min(272px, 72vw); margin-left: auto; margin-right: auto; }
  .location__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { display: block; box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4); }
  .mistakes-cost__grid { grid-template-columns: 1fr; }
  .categories__grid--compact { grid-template-columns: repeat(2, 1fr); }
  .fears__grid { grid-template-columns: 1fr; }
  .fears__card--lead .fears__card-main { grid-template-columns: 1fr; }
  .fears__summary { flex-direction: column; }
  .fears__summary-divider { order: -1; }
  .fears__cta { flex-direction: column; align-items: stretch; }
  .fears__cta .btn { width: 100%; }
  .audience__grid { grid-template-columns: 1fr; }
  .audience__card--featured { grid-template-columns: 1fr; grid-template-rows: auto; }
  .audience__card--featured .audience__card-main { grid-column: 1; grid-row: auto; flex-direction: column; }
  .audience__card--featured .audience__action { grid-column: 1; grid-row: auto; align-self: stretch; width: 100%; justify-content: center; }
  .audience__fallback { flex-direction: column; }
  .cases-preview__grid { grid-template-columns: 1fr; }
  .formats-hub .hub-grid { grid-template-columns: 1fr; }
  .floats { bottom: calc(100px + env(safe-area-inset-bottom)); }
  body.has-sticky .floats { bottom: calc(112px + env(safe-area-inset-bottom)); }
  .float--call { display: flex; }
  .final-cta__actions { flex-direction: column; align-items: center; }
  .final-cta__actions .btn { width: 100%; max-width: 360px; }
  .turnkey__cta { flex-direction: column; align-items: stretch; }
  .turnkey__cta .btn { width: 100%; }
  .turnkey__proof { gap: 16px 24px; }
  body.has-sticky {
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
    scroll-padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .header__inner {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    gap: 10px;
  }
  .topbar__inner {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
  .topbar { font-size: 11px; }
  .topbar__promo { gap: 4px; }
  .btn--xl {
    white-space: normal;
    text-align: center;
    max-width: 100%;
    padding: 16px 18px;
    font-size: 16px;
  }
  .compare__bento,
  .equipment-landing__fork,
  .equipment-landing__path {
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; }
  .hero-cinema__title { font-size: clamp(28px, 9vw, 36px); }
  .topbar__link[href*="lead-magnet"] { display: none; }
}

@media (hover: none) {
  .card:hover, .cat-card:hover, .adv-card:hover, .portfolio-card:hover { transform: none; }
  .portfolio-card__cta { opacity: 1; transform: translateX(-50%) translateY(0); }
  .portfolio-card__img::after { opacity: 1; }
  .btn, .quiz__opt, .nav > a, .nav-dropdown__trigger, .nav-dropdown__link { min-height: 44px; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero-cinema { min-height: auto; padding-bottom: 40px; }
  .modal__box { max-height: 90vh; overflow-y: auto; }
}
