:root {
  --bg: #060608;
  --bg-elevated: #0c0c0f;
  --surface: #12121a;
  --border: rgba(255, 255, 255, 0.06);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --accent: #38bdf8;
  --accent-2: #a78bfa;
  --radius: 14px;
  --radius-lg: 22px;
  --font: "Onest", system-ui, -apple-system, sans-serif;
  --font-display: "Syne", var(--font);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --amber: #fbbf24;
  --green: #4ade80;
  --secure: #34d399;
  --secure-2: #2dd4bf;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  z-index: 9999;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(6, 6, 8, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.header--scrolled {
  background: rgba(6, 6, 8, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.75);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  line-height: 1;
  flex-shrink: 1;
  min-width: 0;
}

@media (max-width: 520px) {
  .logo {
    max-width: calc(100% - 5.5rem);
  }
}

.logo__suffix {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted-2);
  line-height: 1;
  white-space: nowrap;
}

.logo--footer .logo__suffix {
  display: none;
}

.nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.nav a:hover {
  color: var(--text);
}

.header__cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, border-color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #020617;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 8px 32px -8px rgba(56, 189, 248, 0.55);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient--secure {
  background: linear-gradient(90deg, var(--secure), var(--secure-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead strong {
  color: #e4e4e7;
  font-weight: 600;
}

.hero__lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
}

.hero__stack li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  margin: 0;
  padding: 0;
}

.hero__stats--inline div {
  display: flex;
  align-items: baseline;
  gap: .4rem;
}

.hero__stats div {
  margin: 0;
}

.hero__stats dt {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(180deg, #fff, #a1a1aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__stats--inline dt {
  font-size: 1.3rem;
}

.hero__stats dd {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.hero__stats--inline dd {
  margin: 0;
  font-size: 0.82rem;
}

.hero__visual {
  position: relative;
  z-index: 0;
  min-height: 320px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: stretch;
}

.orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.orb--1 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 10%;
  right: 20%;
}

.orb--2 {
  width: 160px;
  height: 160px;
  background: var(--accent-2);
  bottom: 15%;
  right: 5%;
}

/* Hero terminal */
.hero-console {
  --console-bg: #0d1117;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  align-self: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(22, 27, 34, 0.97), rgba(13, 17, 23, 0.99));
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 28px 70px -24px rgba(0, 0, 0, 0.85),
    0 0 80px -40px rgba(56, 189, 248, 0.12);
  overflow: hidden;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  backdrop-filter: blur(12px);
}

.hero-console__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-console__led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-console__led--r {
  background: #ff5f57;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.25);
}

.hero-console__led--y {
  background: #febc2e;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.hero-console__led--g {
  background: #28c840;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.hero-console__chrome-title {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

.hero-console__screen {
  position: relative;
  min-height: 236px;
  max-height: 260px;
  background: var(--console-bg);
}

.hero-console__scan {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 4px
  );
  opacity: 0.35;
}

.hero-console__lines {
  position: relative;
  z-index: 1;
  min-height: 236px;
  max-height: 236px;
  overflow: hidden;
  padding: 0.6rem 0.75rem 0.55rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.22rem;
  font-size: 0.7rem;
  line-height: 1.45;
}

.hero-console__line {
  flex-shrink: 0;
  opacity: 0;
  animation: hero-console-line 0.4s var(--ease) forwards;
  word-break: break-word;
}

@keyframes hero-console-line {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-console__line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-console__line--ok {
  color: #56d364;
}

.hero-console__line--cdn {
  color: #79c0ff;
}

.hero-console__line--api {
  color: #ffa657;
}

.hero-console__line--db {
  color: #d2a8ff;
}

.hero-console__line--ci {
  color: #a5d6ff;
}

.hero-console__line--sec {
  color: #56d364;
}

.hero-console__line--warn {
  color: #e3b341;
}

.hero-console__line--metric {
  color: #8b949e;
}

.hero-console__line--pay {
  color: #ff7b72;
}

.hero-console__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.45rem 0.75rem;
  background: rgba(22, 27, 34, 0.98);
  border-top: 1px solid rgba(48, 54, 61, 0.9);
  font-size: 0.58rem;
}

.hero-console__bar-k {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}

.hero-console__integrations {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-console__integrations::-webkit-scrollbar {
  display: none;
}

.hero-console__pill {
  display: inline-block;
  padding: 0.22rem 0.5rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  animation: hero-pill-in 0.35s var(--ease);
}

@keyframes hero-pill-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-console__pill {
    animation: none;
  }
}

.hero-console__pill--cf {
  background: rgba(243, 128, 32, 0.2);
  color: #ffa657;
  border: 1px solid rgba(243, 128, 32, 0.35);
}

.hero-console__pill--stripe {
  background: rgba(99, 91, 255, 0.18);
  color: #a5b4fc;
  border: 1px solid rgba(129, 140, 248, 0.35);
}

.hero-console__pill--s3 {
  background: rgba(232, 168, 124, 0.15);
  color: #fdba74;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.hero-console__pill--yc {
  background: rgba(252, 213, 53, 0.12);
  color: #fde047;
  border: 1px solid rgba(253, 224, 71, 0.28);
}

.hero-console__pill--tg {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.hero-console__pill--maps {
  color: #fb7185;
  background: rgba(251, 113, 133, 0.12);
  border: 1px solid rgba(251, 113, 133, 0.28);
}

.hero-console__pill--smtp {
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.hero-console__pill--pg {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.hero-console__pill--redis {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.28);
}

.hero-console__bar-stat {
  color: #6e7681;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: right;
  justify-self: end;
}

.hero-console__input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  padding: 0.5rem 0.75rem 0.6rem;
  background: #010409;
  border-top: 1px solid rgba(48, 54, 61, 0.85);
  font-size: 0.64rem;
}

.hero-console__host {
  color: #56d364;
  font-weight: 600;
}

.hero-console__cwd {
  color: #79c0ff;
}

.hero-console__dollar {
  color: #8b949e;
  margin-left: 0.15rem;
}

.hero-console__caret {
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 1px;
  background: #58a6ff;
  vertical-align: text-bottom;
  animation: hero-caret-blink 1s step-end infinite;
}

@keyframes hero-caret-blink {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-console__caret {
    animation: none;
    opacity: 0.75;
  }
}

@media (max-width: 900px) {
  .hero__visual {
    min-height: 0;
    margin-top: 1.25rem;
    justify-content: center;
  }

  .hero-console {
    max-width: min(100%, 520px);
    margin-inline: auto;
  }

  .orb--1,
  .orb--2 {
    opacity: 0.35;
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 5.5rem) 0;
}

.section--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section__head {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__subtitle--wide {
  max-width: 42rem;
}

.integrations-block {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.integrations-block__title {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.integrations-block__chips {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.45rem;
}

.integrations-block__chips li {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(167, 139, 250, 0.08));
  color: #e4e4e7;
  letter-spacing: 0.02em;
}

.integrations-block__edge {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 46rem;
}

.integrations-block__edge strong {
  color: #fbbf24;
  font-weight: 700;
}

.section__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.section--interfaces .section__head {
  max-width: none;
}

.section__title--display {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section--interfaces {
  position: relative;
  border-block: 1px solid var(--border);
  background:
    radial-gradient(ellipse 90% 55% at 80% -15%, rgba(167, 139, 250, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 100%, rgba(56, 189, 248, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(251, 191, 36, 0.04), transparent),
    var(--bg);
}

.section--security {
  position: relative;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 45% at 70% 0%, rgba(52, 211, 153, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(45, 212, 191, 0.06), transparent),
    var(--bg);
}

.security-hero {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 34%);
  gap: 0 clamp(1.75rem, 4vw, 3rem);
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.security-hero .section__head {
  max-width: none;
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .security-hero {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Блок «Ущерб от атак» — три факта */
.security-stats {
  position: relative;
  padding: 0.15rem 0 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

@media (min-width: 961px) {
  .security-stats {
    padding: 0.35rem 0 0 clamp(1.25rem, 2.5vw, 2rem);
    border-left: 1px solid rgba(52, 211, 153, 0.14);
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.04) 0%, transparent 42%);
  }

  .security-stats.security-stats--damage {
    border-left-color: rgba(255, 255, 255, 0.06);
    background: transparent;
  }
}

@media (max-width: 960px) {
  .security-stats {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.05), transparent 55%);
  }

  .security-stats.security-stats--damage {
    border-top-color: rgba(255, 255, 255, 0.06);
    background: transparent;
  }
}

.security-stats__panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 18, 0.55);
  box-shadow: 0 18px 48px -32px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}

.security-stats__panel--facts {
  padding: 0.15rem 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.security-stats__title--facts-min {
  margin: 0 0 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a1a1aa;
}

.security-facts--min {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security-facts--min .security-fact {
  margin: 0;
  padding: 0;
  border: none;
}

.security-fact__text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  font-weight: 400;
  color: #a1a1aa;
}

.security-fact__lead {
  font-weight: 600;
  color: #f87171;
}

.security-fact__cite {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  color: #71717a;
}

.security-fact__cite::before {
  content: " ";
}

.security-stats__note {
  margin: 1.15rem 0 0;
  padding: 0;
  border: none;
  font-size: 0.65rem;
  line-height: 1.5;
  color: #71717a;
  text-align: left;
  max-width: none;
}

.security-stats__note--facts {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 420px) {
  .security-fact__text {
    font-size: 0.76rem;
  }
}

.section__kicker--secure {
  color: var(--secure);
}

.security-pitch {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.65rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(52, 211, 153, 0.2);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.08), rgba(18, 18, 26, 0.9));
}

.security-pitch__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--secure);
}

.security-pitch__text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #d4d4d8;
}

.security-pitch__text strong {
  color: var(--text);
}

.security-foot {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted-2);
  max-width: 48rem;
}

.security-foot strong {
  color: var(--muted);
}

/* Bento + interface mocks */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.bento__cell {
  grid-column: span 12;
  padding: 1.35rem 1.35rem 1.15rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.bento__cell:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 50px -28px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* без общей «подложки» — только два окна на фоне секции */
.bento__cell--1c {
  background: transparent;
  border: none;
  box-shadow: none;
}

.bento__cell--1c:hover {
  border-color: transparent;
  box-shadow: none;
}

@media (min-width: 960px) {
  .bento__cell--1c {
    grid-column: 1 / -1;
  }
}

.bento__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.bento__hint {
  margin-left: auto;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.bento__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}

.bento__dot--violet {
  background: var(--accent-2);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.45);
}

.bento__dot--amber {
  background: var(--amber);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.35);
}

.bento__dot--green {
  background: var(--green);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.35);
}

.bento__cap {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

/* 1C · два окна (витрина + учёт) */
.d1c {
  flex: 1;
  min-height: 0;
}

.d1c__pair {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 720px) {
  .d1c__pair {
    flex-direction: row;
    align-items: stretch;
    gap: 1.25rem;
  }
}

.d1c__win {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--surface);
}

.d1c__win--shop {
  --shop-line: rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  border: 1px solid var(--shop-line);
  background:
    radial-gradient(120% 90% at 100% -15%, rgba(14, 165, 233, 0.14), transparent 42%),
    radial-gradient(90% 70% at 0% 100%, rgba(13, 148, 136, 0.1), transparent 48%),
    linear-gradient(165deg, #f4f7fb 0%, #ffffff 55%);
  box-shadow:
    0 26px 60px -34px rgba(15, 23, 42, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.d1c__shop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 0.65rem 0.85rem 0.72rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.55));
  backdrop-filter: blur(10px);
}

.d1c__shop-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.d1c__shop-logo {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #0d9488);
  box-shadow:
    0 10px 24px -10px rgba(14, 165, 233, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.d1c__shop-logo-svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  filter: drop-shadow(0 1px 0 rgba(15, 23, 42, 0.12));
}

.d1c__shop-brandtext {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.d1c__shop-name {
  font-family: var(--font-display), system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.1;
}

.d1c__shop-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.05em;
}

.d1c__shop-headmeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.d1c__shop-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.85);
  color: #475569;
  letter-spacing: 0.02em;
}

.d1c__shop-pill--live {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(135deg, rgba(209, 250, 229, 0.95), rgba(240, 253, 250, 0.98));
  color: #047857;
}

.d1c__shop-pill--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  flex-shrink: 0;
}

.d1c__win--erp {
  --1c-form: #fffff0;
  --1c-title-a: #1f6fc4;
  --1c-title-b: #0d4a8c;
  --1c-menu: #ece9d8;
  --1c-edge: #8b8b7a;
  --1c-line: #a7a394;
  --1c-head: #e6e3d8;
  --1c-row-alt: #f7f6f0;
  background: var(--1c-form);
  border: 1px solid var(--1c-edge);
  border-radius: 3px;
  box-shadow: 2px 3px 16px rgba(0, 0, 0, 0.28);
  font-family: Tahoma, "Segoe UI", Roboto, sans-serif;
}

.d1c__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

.d1c__bar--erp {
  gap: 0.45rem;
  padding: 0.3rem 0.45rem 0.32rem;
  border-bottom: 1px solid #062a52;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--1c-title-a) 0%, var(--1c-title-b) 100%);
  color: #fff;
  min-height: 1.75rem;
}

.d1c__erp-logo {
  flex-shrink: 0;
  width: 1.38rem;
  height: 1.38rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(145deg, #ffe082, #fbc02d);
  color: #b71c1c;
  font-size: 0.52rem;
  font-weight: 900;
  line-height: 1.36rem;
  text-align: center;
  letter-spacing: -0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.d1c__erp-headtext {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.15;
}

.d1c__erp-headtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.d1c__erp-headsub {
  font-size: 0.52rem;
  font-weight: 600;
  opacity: 0.9;
}

.d1c__erp-winbtns {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
  align-items: center;
}

.d1c__erp-winbtn {
  width: 0.95rem;
  height: 0.88rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.d1c__erp-winbtn--max {
  width: 1.05rem;
}

.d1c__erp-winbtn--close {
  border-color: rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #ef9a9a, #c62828);
}

.d1c__erp-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem 0.85rem;
  margin: 0;
  padding: 0.2rem 0.5rem 0.22rem;
  border-bottom: 1px solid #8a9099;
  background: var(--1c-menu);
  font-size: 0.58rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.02em;
}

.d1c__erp-menu span {
  cursor: default;
  user-select: none;
}

.d1c__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.d1c__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e2e8f0;
}

.d1c__dots span:nth-child(1) {
  background: #fca5a5;
}
.d1c__dots span:nth-child(2) {
  background: #fde047;
}
.d1c__dots span:nth-child(3) {
  background: #86efac;
}

.d1c__bar-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.d1c__body {
  padding: 0.65rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.d1c__body--erp {
  padding: 0.45rem 0.5rem 0.5rem;
  gap: 0.38rem;
  background: var(--1c-form, #fffff0);
}

.d1c__url {
  margin: 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  color: #64748b;
}

.d1c__body--shop {
  padding: 0.65rem 0.85rem 0.9rem;
  gap: 0.65rem;
  font-family: var(--font);
}

.d1c__body--shop .d1c__url {
  margin: 0 0 0.15rem;
  display: inline-block;
  padding: 0.24rem 0.48rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.6rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.02em;
}

.d1c__storebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.45rem 0.55rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 4px 18px -12px rgba(15, 23, 42, 0.12);
}

.d1c__crumbs {
  font-size: 0.68rem;
  color: #64748b;
}

.d1c__crumb-sep {
  margin: 0 0.2em;
  opacity: 0.45;
}

.d1c__storebar-tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.d1c__fake-search,
.d1c__fake-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  line-height: 1;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.d1c__fake-search {
  flex: 1 1 7rem;
  min-width: 0;
  max-width: 9rem;
  padding: 0.3rem 0.48rem;
  font-size: 0.64rem;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.d1c__fake-cart {
  padding: 0.3rem 0.5rem 0.3rem 0.42rem;
  font-size: 0.68rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #0f172a;
}

.d1c__ico {
  flex-shrink: 0;
  opacity: 0.62;
}

.d1c__body--shop .d1c__ico {
  opacity: 0.72;
}

.d1c__store-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.65rem 0.85rem;
  margin: 0.05rem 0 0.1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 36px -24px rgba(15, 23, 42, 0.2);
}

.d1c__store-hero-copy {
  flex: 1 1 12rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.d1c__store-eyebrow {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d9488;
}

.d1c__store-cat {
  margin: 0;
  font-family: var(--font-display), system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0f172a;
}

.d1c__store-lead {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.55;
  color: #64748b;
  max-width: 32ch;
}

.d1c__pgrid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
}

.d1c__pitem {
  display: flex;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem 0.58rem 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
  box-shadow: 0 8px 28px -18px rgba(15, 23, 42, 0.22);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.d1c__pitem:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.22);
  box-shadow: 0 16px 40px -20px rgba(15, 23, 42, 0.24);
}

.d1c__pthumb {
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafc, #fff);
  box-shadow: 0 2px 8px -4px rgba(15, 23, 42, 0.12);
}

.d1c__pimg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.d1c__pitem[data-sku="b1120"] .d1c__pimg {
  object-fit: contain;
  background: #fff;
}

.d1c__pitem-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.d1c__pname {
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.32;
  color: #0f172a;
  letter-spacing: -0.015em;
}

.d1c__pitem-row {
  display: grid;
  grid-template-columns: minmax(3.75rem, auto) 1fr auto;
  gap: 0.38rem 0.48rem;
  align-items: center;
}

.d1c__pprice {
  font-family: var(--font), system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: #0f172a;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.d1c__pstock {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  color: #475569;
  justify-self: end;
  text-align: right;
  line-height: 1.25;
  min-width: 0;
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  background: #f1f5f9;
}

.d1c__pstock--low {
  color: #c2410c;
  font-weight: 700;
  background: rgba(254, 243, 199, 0.55);
}

.d1c__pstock--few {
  padding: 0.16rem 0.46rem;
  border-radius: 999px;
  border: 1px solid rgba(234, 88, 12, 0.28);
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(254, 243, 199, 0.35));
  color: #c2410c;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.64rem;
}

.d1c__patc {
  appearance: none;
  border: none;
  margin: 0;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  line-height: 1;
  box-shadow:
    0 6px 16px -8px rgba(14, 165, 233, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), filter 0.18s;
}

.d1c__patc:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 10px 22px -10px rgba(14, 165, 233, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.d1c__patc:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

.d1c__win--erp .d1c__qtywrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  padding-right: 0.05rem;
}

.d1c__win--erp .d1c__qtylbl {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c5c5c;
}

.d1c__win--erp .d1c__qty {
  width: 3.15rem;
  height: 1.42rem;
  padding: 0.1rem 0.28rem;
  border-radius: 0;
  border: 1px solid #7a9ebe;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 0.6rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
  outline: none;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 rgba(0, 0, 0, 0.06);
}

.d1c__win--erp .d1c__qty:focus-visible {
  border-color: #0d47a1;
  box-shadow: inset 1px 1px 0 #fff, 0 0 0 2px rgba(13, 71, 161, 0.2);
}

.d1c__win--erp .d1c__qty::-webkit-outer-spin-button,
.d1c__win--erp .d1c__qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.d1c__win--erp .d1c__qty[type="number"] {
  -moz-appearance: textfield;
}

.d1c__win--erp .d1c__pricewrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  min-width: 0;
}

.d1c__win--erp .d1c__pricelbl {
  font-size: 0.52rem;
  font-weight: 700;
  color: #5c5c5c;
}

.d1c__win--erp .d1c__price {
  width: 100%;
  max-width: 4.85rem;
  height: 1.42rem;
  padding: 0.1rem 0.26rem;
  border-radius: 0;
  border: 1px solid #7a9ebe;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 0.6rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
  outline: none;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 rgba(0, 0, 0, 0.06);
}

.d1c__win--erp .d1c__price:focus-visible {
  border-color: #0d47a1;
  box-shadow: inset 1px 1px 0 #fff, 0 0 0 2px rgba(13, 71, 161, 0.2);
}

.d1c__win--erp .d1c__price::-webkit-outer-spin-button,
.d1c__win--erp .d1c__price::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.d1c__win--erp .d1c__price[type="number"] {
  -moz-appearance: textfield;
}

.d1c__win--erp .d1c__sub {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: 0;
}

.d1c__win--erp .d1c__desc {
  margin: 0;
  font-size: 0.58rem;
  line-height: 1.45;
  color: #3a3a3a;
}

.d1c__win--erp .d1c__sheet {
  border-radius: 0;
  border: 1px solid var(--1c-edge, #8b8b7a);
  overflow: hidden;
  background: #fff;
}

.d1c__win--erp .d1c__sheet--scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.d1c__win--erp .d1c__sheet-inner {
  min-width: 19.5rem;
}

.d1c__win--erp .d1c__head {
  display: grid;
  grid-template-columns:
    minmax(5.5rem, 1.15fr)
    minmax(3.75rem, 4.35rem)
    minmax(3.95rem, 4.45rem)
    minmax(3.35rem, 3.85rem)
    minmax(2.15rem, 2.45rem)
    minmax(3.6rem, 4.15rem)
    minmax(4.15rem, 4.85rem);
  gap: 0.28rem 0.32rem;
  padding: 0.3rem 0.42rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #000;
  border-bottom: 1px solid var(--1c-line, #a7a394);
  background: var(--1c-head, #e6e3d8);
}

.d1c__win--erp .d1c__head span:nth-child(4),
.d1c__win--erp .d1c__head span:nth-child(7) {
  text-align: right;
}

.d1c__win--erp .d1c__head span:nth-child(5) {
  text-align: center;
}

.d1c__win--erp .d1c__rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.d1c__win--erp .d1c__rows li {
  display: grid;
  grid-template-columns:
    minmax(5.5rem, 1.15fr)
    minmax(3.75rem, 4.35rem)
    minmax(3.95rem, 4.45rem)
    minmax(3.35rem, 3.85rem)
    minmax(2.15rem, 2.45rem)
    minmax(3.6rem, 4.15rem)
    minmax(4.15rem, 4.85rem);
  gap: 0.28rem 0.32rem;
  padding: 0.28rem 0.42rem;
  border-bottom: 1px solid #c8c4b8;
  font-size: 0.58rem;
  background: #fff;
  align-items: center;
}

.d1c__win--erp .d1c__rows li > .d1c__qtywrap,
.d1c__win--erp .d1c__rows li > .d1c__pricewrap {
  justify-self: end;
}

.d1c__win--erp .d1c__rows li:nth-child(even) {
  background: var(--1c-row-alt, #f7f6f0);
}

.d1c__win--erp .d1c__rows li:last-child {
  border-bottom: none;
}

.d1c__win--erp .d1c__cell {
  color: #000;
  min-width: 0;
  line-height: 1.35;
}

.d1c__win--erp .d1c__cell--num {
  font-family: Tahoma, "Segoe UI", sans-serif;
  font-size: 0.58rem;
  font-variant-numeric: tabular-nums;
  color: #000;
  text-align: right;
}

.d1c__win--erp .d1c__cell--internal {
  color: #5c4a3a;
  font-weight: 600;
}

.d1c__win--erp .d1c__cell--code {
  font-family: "JetBrains Mono", ui-monospace, Consolas, monospace;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a237e;
}

.d1c__win--erp .d1c__cell--vat {
  text-align: center;
  font-size: 0.52rem;
  font-weight: 700;
  color: #37474f;
}

.d1c__win--erp .d1c__cell--ean {
  font-family: "JetBrains Mono", ui-monospace, Consolas, monospace;
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #424242;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.d1c__win--erp .d1c__foot {
  margin: 0.35rem 0 0;
  padding: 0.32rem 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.55rem;
  color: #2b2b2b;
  font-family: Tahoma, "Segoe UI", sans-serif;
  border: 1px solid var(--1c-edge, #8b8b7a);
  border-radius: 1px;
  background: var(--1c-menu, #ece9d8);
}

.d1c__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: d1c-pulse 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .d1c__pulse {
    animation: none;
  }
}

@keyframes d1c-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

/* Growth / services (analytics & sales) */
.section--growth {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.04) 0%, transparent 42%), var(--bg);
  border-block: 1px solid var(--border);
}

.growth-head {
  margin-bottom: 1.85rem;
}

.growth-head__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 56rem;
}

.growth-head__copy {
  min-width: 0;
}

.growth-head__3d-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  transition: opacity 0.35s ease, visibility 0.35s ease;
  max-width: 14rem;
  padding: 0 0.5rem;
}

.growth-head__3d--ready .growth-head__3d-overlay {
  opacity: 0;
  visibility: hidden;
}

.growth-head__3d--error .growth-head__3d-overlay {
  color: #fca5a5;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0 0.75rem;
  text-align: center;
  line-height: 1.35;
}

.growth-3d {
  margin: 1.75rem auto 0;
  max-width: 78rem;
}

.growth-3d__stage {
  position: relative;
  width: min(100%, 1140px);
  min-height: 570px;
  aspect-ratio: 16 / 10;
  margin: 0 auto;
  /* Чтобы модель не перекрывала подпись/текст ниже */
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
}

.growth-3d__stage::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 46% 44%, rgba(56, 189, 248, 0.14), transparent 62%),
    radial-gradient(closest-side at 62% 62%, rgba(74, 222, 128, 0.09), transparent 64%);
  filter: blur(10px);
  opacity: 0.95;
}

.growth-3d__cap {
  margin: 0.9rem auto 0;
  max-width: 52ch;
  text-align: center;
  color: var(--muted);
}

/* Десктоп-раскладка: 3D слева, текст справа */
@media (min-width: 980px) {
  .growth-3d {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 26rem);
    gap: clamp(1.25rem, 3vw, 2.2rem);
    align-items: center;
  }

  .growth-3d__stage {
    width: 100%;
    min-height: 600px;
    aspect-ratio: 16 / 11;
    margin: 0;
  }

  .growth-3d__cap {
    margin: 0;
    max-width: none;
    text-align: left;
  }

  .value-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.growth-3d__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #f4f4f5;
}

.growth-3d__title--lead {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.growth-3d__title-em {
  font-weight: 800;
  color: #f4f4f5;
  position: relative;
  white-space: nowrap;
}

.growth-3d__title-em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.45), rgba(74, 222, 128, 0.45));
  border-radius: 999px;
  z-index: -1;
  opacity: 0.6;
}

.growth-3d__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.growth-3d__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px dashed rgba(56, 189, 248, 0.28);
  background: rgba(56, 189, 248, 0.05);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: #93c5fd;
}

.growth-3d__hint-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
  animation: vc-hint-pulse 1.6s ease-in-out infinite;
}

@keyframes vc-hint-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.04); }
}

/* «Спецификация → что значит на простом языке» */
.value-cards {
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  text-align: left;
}

.vc {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0.7rem 0.85rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  background: rgba(56, 189, 248, 0.05);
  color: #e4e4e7;
  font: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    transform 0.22s var(--ease),
    box-shadow 0.25s var(--ease);
}

.vc:nth-child(3n) {
  border-color: rgba(74, 222, 128, 0.22);
  background: rgba(74, 222, 128, 0.05);
}

.vc:hover,
.vc:focus-visible,
.vc[aria-expanded="true"] {
  border-color: rgba(56, 189, 248, 0.55);
  background: linear-gradient(165deg, rgba(56, 189, 248, 0.16), rgba(12, 12, 18, 0.4));
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -22px rgba(56, 189, 248, 0.55);
  outline: none;
}

.vc:nth-child(3n):hover,
.vc:nth-child(3n):focus-visible,
.vc:nth-child(3n)[aria-expanded="true"] {
  border-color: rgba(74, 222, 128, 0.55);
  background: linear-gradient(165deg, rgba(74, 222, 128, 0.16), rgba(12, 12, 18, 0.4));
  box-shadow: 0 18px 38px -22px rgba(74, 222, 128, 0.55);
}

.vc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.vc__spec {
  font-size: 0.86rem;
  font-weight: 600;
  color: #f4f4f5;
  letter-spacing: 0.01em;
}

.vc__spec-key {
  color: var(--muted-2);
  font-weight: 500;
  margin-right: 0.15rem;
}

.vc__cta {
  flex: none;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3fc;
  white-space: nowrap;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.vc__cta::after {
  content: " →";
  display: inline;
  transition: transform 0.25s var(--ease);
}

.vc:nth-child(3n) .vc__cta { color: #86efac; }

.vc:hover .vc__cta::after,
.vc:focus-visible .vc__cta::after,
.vc[aria-expanded="true"] .vc__cta::after {
  transform: translateX(2px);
}

.vc[aria-expanded="true"] .vc__cta {
  opacity: 0.45;
}

.vc__reveal {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.vc__reveal > span {
  overflow: hidden;
  display: block;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #d4d4d8;
  padding-top: 0;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.25s ease, transform 0.25s ease, padding-top 0.25s ease;
}

.vc:hover .vc__reveal,
.vc:focus-visible .vc__reveal,
.vc[aria-expanded="true"] .vc__reveal {
  grid-template-rows: 1fr;
}

.vc:hover .vc__reveal > span,
.vc:focus-visible .vc__reveal > span,
.vc[aria-expanded="true"] .vc__reveal > span {
  opacity: 1;
  transform: translateY(0);
  padding-top: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .vc, .vc__reveal, .vc__reveal > span, .vc__cta::after { transition: none; }
}

.growth-3d__stage canvas {
  position: relative;
  z-index: 1;
  opacity: 0.9;
  transition: opacity 0.45s ease;
  /* Разрешаем скролл страницы на тач-устройствах */
  touch-action: pan-y;
  cursor: grab;
}

.growth-head__3d--ready canvas,
.growth-3d__stage.growth-head__3d--ready canvas {
  opacity: 1;
}

.growth-3d__stage canvas:active {
  cursor: grabbing;
}

.growth-3d__inline-msg {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 3;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(252, 165, 165, 0.35);
  background: rgba(20, 6, 6, 0.7);
  color: #fca5a5;
  font-size: 0.78rem;
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

/* Компактный лоадер для 3D — показывается, если глобальный лоадер уже скрыт,
   а модель ещё догружается (видно при медленном мобильном). */
.growth-3d__inline-loader {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  z-index: 4;
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.85rem 0.45rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(6, 8, 12, 0.82);
  backdrop-filter: blur(6px);
  color: #d4d4d8;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.35s ease;
}

.growth-3d__inline-loader.is-active {
  display: inline-flex;
}

.growth-3d__inline-loader.is-fade {
  opacity: 0;
}

.growth-3d__inline-loader-spinner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.25);
  border-top-color: #38bdf8;
  animation: g3d-spin 0.9s linear infinite;
}

@keyframes g3d-spin {
  to { transform: rotate(360deg); }
}

.growth-3d__inline-bar {
  width: 90px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.growth-3d__inline-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #38bdf8, #4ade80);
  border-radius: inherit;
  transition: width 0.2s linear;
}

.growth-3d__inline-loader-text {
  font-weight: 600;
  color: #f4f4f5;
}

@media (prefers-reduced-motion: reduce) {
  .growth-3d__inline-loader-spinner { animation: none; }
}

@media (min-width: 900px) {
  .growth-head__layout {
    gap: clamp(1.5rem, 4vw, 2.75rem);
    max-width: none;
  }
}

.growth-head__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.growth-head__title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  line-height: 1.15;
}

.growth-head__title--sell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f4f4f5;
}

.growth-head__title-line {
  display: block;
  line-height: 1.12;
}

.growth-head__title-will {
  display: inline;
  background: linear-gradient(105deg, #4ade80 0%, #22d3ee 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.growth-head__title-tagline {
  display: block;
  max-width: 26ch;
  font-size: clamp(0.95rem, 2.1vw, 1.2rem);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #a5b4fc;
}

.growth-head__lead {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #e4e4e7;
}

.growth-head__lead--solo {
  font-size: 1.05rem;
  line-height: 1.68;
}

.growth-head__lead strong {
  color: #f4f4f5;
  font-weight: 600;
}

.growth-head__note {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-left: 3px solid var(--accent);
  background: rgba(56, 189, 248, 0.06);
}

.growth-examples {
  margin-bottom: 2.25rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(24, 24, 32, 0.95), rgba(12, 12, 18, 0.98));
  box-shadow: 0 24px 48px -32px rgba(0, 0, 0, 0.65);
}

.growth-examples__head {
  margin-bottom: 1.15rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 40rem;
}

.growth-examples__title {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.25;
}

.growth-examples__usp {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: #a1a1aa;
  font-weight: 500;
}

.growth-examples__usp strong {
  color: #e4e4e7;
  font-weight: 600;
}

.growth-examples__usp em {
  font-style: normal;
  color: #7dd3fc;
  font-weight: 600;
}

.growth-examples__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

/* ============================================================
   BI-дашборд (мокап) — превью «такое мы вам и построим»
   ============================================================ */
.dash {
  margin-top: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0c14;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.85);
}

.dash__tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.dash__dots { display: inline-flex; gap: 0.32rem; margin-right: 0.55rem; }
.dash__dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.dash__dots span:nth-child(1) { background: #ef4444; }
.dash__dots span:nth-child(2) { background: #f59e0b; }
.dash__dots span:nth-child(3) { background: #4ade80; }

.dash__path {
  font-family: "JetBrains Mono", ui-monospace, "Cascadia Code", monospace;
  font-size: 0.74rem;
  color: var(--muted-2);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dash__path b { color: #e4e4e7; font-weight: 500; }

.dash__chip {
  padding: 0.18rem 0.5rem;
  border-radius: 6px;
  background: rgba(74, 222, 128, 0.12);
  color: #86efac;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.dash__chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
}

.dash__grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 480px;
}

@media (max-width: 760px) {
  .dash__grid { grid-template-columns: 1fr; }
  .dash__side { display: none; }
}

.dash__side {
  padding: 1rem 0.9rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.dash__side-title {
  margin: 0 0 0.7rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted-2);
}

.dash__nav {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.dash__nav li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.dash__nav li.is-active {
  background: rgba(56, 189, 248, 0.1);
  color: #f4f4f5;
  border: 1px solid rgba(56, 189, 248, 0.22);
}

.dash__ico {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.dash__nav li.is-active .dash__ico {
  background: linear-gradient(135deg, #38bdf8, #4ade80);
}

.dash__hint {
  margin-top: 1rem;
  padding: 0.7rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted-2);
}
.dash__hint strong { color: #f4f4f5; font-weight: 600; }

.dash__main {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.dash__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.dash__h {
  margin: 0;
  font-family: "Syne", "Onest", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f4f4f5;
}

.dash__period {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
  color: var(--muted);
}
.dash__period::after {
  content: "▾";
  opacity: 0.5;
  font-size: 0.7rem;
}

.dash__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.55rem;
}

.dash__tile {
  padding: 0.65rem 0.75rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}
.dash__tile-label {
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  text-transform: uppercase;
  font-weight: 700;
}
.dash__tile-value {
  font-family: "Onest", system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: #f4f4f5;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin: 0;
}
.dash__tile-delta { font-size: 0.74rem; font-weight: 600; }
.dash__tile-delta--up { color: #4ade80; }
.dash__tile-delta--down { color: #fca5a5; }

.dash__chart {
  padding: 0.85rem 0.85rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}
.dash__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}
.dash__chart-title {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #e4e4e7;
}
.dash__chart-legend {
  font-size: 0.7rem;
  color: var(--muted-2);
}
.dash__chart-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.3rem;
}
.dash__chart-legend i:nth-child(1) { background: #38bdf8; }
.dash__chart-legend i:nth-child(2) { background: #4ade80; margin-left: 0.55rem; }
.dash__chart svg { display: block; width: 100%; height: 130px; }

.dash__table {
  border-radius: 10px;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}
.dash__row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 70px 80px 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  align-items: center;
  font-size: 0.84rem;
}
.dash__row + .dash__row {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.dash__row--head {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
}
.dash__bar {
  position: relative;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.dash__bar i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, #38bdf8, #4ade80);
  border-radius: 99px;
}
.dash__num {
  font-variant-numeric: tabular-nums;
  color: #e4e4e7;
}
.dash__src {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f4f4f5;
}
.dash__src i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
}
.dash__src--2 i { background: #a5b4fc; }
.dash__src--3 i { background: #4ade80; }
.dash__src--4 i { background: #f59e0b; }

@media (max-width: 540px) {
  .dash__row {
    grid-template-columns: minmax(0, 1.4fr) 50px 60px;
  }
  .dash__row span:nth-child(4) { display: none; }
}

@media (min-width: 640px) {
  .growth-examples__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 1100px) {
  .growth-examples__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.growth-sample {
  margin: 0;
  padding: 1rem 0.95rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 9, 12, 0.55);
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.growth-sample:hover {
  border-color: rgba(56, 189, 248, 0.22);
  box-shadow: 0 12px 36px -24px rgba(0, 0, 0, 0.55);
}

.growth-sample__kind {
  margin: 0 0 0.55rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #94a3b8;
}

/* Infographics inside growth samples */
.growth-viz {
  margin: 0 0 0.7rem;
  padding: 0.65rem 0.65rem 0.6rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.055);
}

/* 1 — доля заявок по каналам */
.growth-viz--channels {
  padding-bottom: 0.45rem;
}

.growth-viz__stack {
  display: flex;
  height: 10px;
  border-radius: 6px;
  overflow: hidden;
  gap: 2px;
  margin-bottom: 0.45rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.growth-viz__stack-seg {
  display: block;
  height: 100%;
  border-radius: 2px;
  min-width: 4px;
}

.growth-viz__stack-seg--cyan {
  background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.growth-viz__stack-seg--violet {
  background: linear-gradient(90deg, #6d28d9, #a78bfa);
}

.growth-viz__stack-seg--green {
  background: linear-gradient(90deg, #15803d, #4ade80);
}

.growth-viz__stack-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 500;
  color: #94a3b8;
  font-family: var(--font), system-ui, sans-serif;
  margin-bottom: 0.38rem;
}

.growth-viz__stack-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.growth-viz__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.growth-viz__dot--cyan {
  background: #38bdf8;
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.35);
}

.growth-viz__dot--violet {
  background: #a78bfa;
  box-shadow: 0 0 6px rgba(167, 139, 250, 0.3);
}

.growth-viz__dot--green {
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.3);
}

.growth-viz__ch-legend {
  font-size: 0.58rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.02em;
}

/* 2 — воронка */
.growth-viz--funnel {
  padding: 0.5rem 0.45rem 0.4rem;
}

.growth-viz__fun-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.28rem;
}

.growth-viz__fun-row--warn .growth-viz__fun-pct {
  color: #fb923c;
  font-weight: 700;
}

.growth-viz__fun-track {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.growth-viz__fun-fill {
  display: block;
  height: 100%;
  min-width: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, #0369a1, #38bdf8);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
}

.growth-viz__fun-fill--2 {
  background: linear-gradient(90deg, #5b21b6, #a78bfa);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.3);
}

.growth-viz__fun-fill--3 {
  background: linear-gradient(90deg, #a16207, #eab308);
  box-shadow: 0 0 12px rgba(234, 179, 8, 0.25);
}

.growth-viz__fun-fill--4 {
  background: linear-gradient(90deg, #c2410c, #fb923c);
  box-shadow: 0 0 12px rgba(251, 146, 60, 0.35);
}

.growth-viz__fun-pct {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 700;
  color: #e2e8f0;
  min-width: 2.5rem;
  text-align: right;
}

.growth-viz__fun-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.15rem;
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.48rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  text-align: center;
}

/* 3 — сравнение недель */
.growth-viz--compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 0.35rem 0.5rem;
  padding: 0.55rem 0.45rem 0.45rem;
}

.growth-viz__cmp-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.growth-viz__cmp-title {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.growth-viz__cmp-bar {
  width: 100%;
  max-width: 52px;
  height: 56px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3px;
}

.growth-viz__cmp-bar span {
  display: block;
  width: calc(100% - 2px);
  border-radius: 4px;
  background: linear-gradient(180deg, #64748b, #475569);
  min-height: 18%;
}

.growth-viz__cmp-bar--accent span {
  background: linear-gradient(180deg, #38bdf8, #0284c7);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.35);
}

.growth-viz__cmp-n {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f1f5f9;
}

.growth-viz__cmp-col--now .growth-viz__cmp-n {
  color: #7dd3fc;
}

.growth-viz__cmp-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding-bottom: 0.5rem;
}

.growth-viz__cmp-arrow {
  font-size: 1.15rem;
  line-height: 1;
  color: #4ade80;
  text-shadow: 0 0 14px rgba(74, 222, 128, 0.45);
}

.growth-viz__cmp-badge {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #bbf7d0;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.35);
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

.growth-viz__cmp-foot {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.52rem;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* 4 — события */
.growth-viz--events {
  padding: 0.45rem 0.45rem 0.4rem;
}

.growth-viz__ev-row {
  display: grid;
  grid-template-columns: 52px 1fr 36px;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.32rem;
}

.growth-viz__ev-row:last-child {
  margin-bottom: 0;
}

.growth-viz__ev-name {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted-2);
}

.growth-viz__ev-track {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.growth-viz__ev-track span {
  display: block;
  height: 100%;
  border-radius: 4px;
  min-width: 6px;
  background: linear-gradient(90deg, #7c3aed, #c4b5fd);
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.35);
}

.growth-viz__ev-row:nth-child(2) .growth-viz__ev-track span {
  background: linear-gradient(90deg, #0369a1, #38bdf8);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.growth-viz__ev-row:nth-child(3) .growth-viz__ev-track span {
  background: linear-gradient(90deg, #15803d, #86efac);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.28);
}

.growth-viz__ev-n {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  color: #e2e8f0;
  text-align: right;
}

/* 5 — CRM */
.growth-viz--crm {
  padding: 0.55rem 0.5rem 0.5rem;
}

.growth-viz__crm-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.growth-viz__crm-node {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #bae6fd;
}

.growth-viz__crm-node--crm {
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.4);
  color: #fef08a;
}

.growth-viz__crm-line {
  flex: 1;
  max-width: 36px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.2), rgba(250, 204, 21, 0.9), rgba(250, 204, 21, 0.2));
}

.growth-viz__crm-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.growth-viz__crm-pill {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.growth-viz__crm-pill--ok {
  color: #bbf7d0;
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.1);
}

.growth-viz__crm-pill--warn {
  color: #fed7aa;
  border-color: rgba(251, 146, 60, 0.45);
  background: rgba(251, 146, 60, 0.1);
}

/* 6 — sparkline */
.growth-viz--spark {
  padding: 0.35rem 0.35rem 0.3rem;
}

.growth-viz__svg {
  display: block;
  width: 100%;
  height: 44px;
  margin-bottom: 0.35rem;
}

.growth-viz__spark-line {
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.45));
}

.growth-viz__spark-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 600;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: #94a3b8;
}

.growth-viz__spark-tags span {
  padding: 0.12rem 0.38rem;
  border-radius: 4px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.18);
  color: #bae6fd;
}

@media (prefers-reduced-motion: reduce) {
  .growth-viz__spark-line {
    filter: none;
  }
}

.growth-sample__metric {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #d4d4d8;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.growth-sample__metric strong {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.growth-sample__meta {
  margin: 0;
  margin-top: auto;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #71717a;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .growth-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

.growth-card {
  padding: 1.35rem 1.4rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
}

.growth-card:hover {
  border-color: rgba(56, 189, 248, 0.22);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.75);
}

.growth-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.growth-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.22);
}

.growth-card:nth-child(2) .growth-card__icon {
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.22);
}

.growth-card:nth-child(3) .growth-card__icon {
  color: #fde047;
  background: rgba(250, 204, 21, 0.1);
  border-color: rgba(250, 204, 21, 0.22);
}

.growth-card:nth-child(4) .growth-card__icon {
  color: #86efac;
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.22);
}

.growth-card__step {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.growth-card:nth-child(2) .growth-card__step {
  color: #c4b5fd;
}

.growth-card:nth-child(3) .growth-card__step {
  color: #fde047;
}

.growth-card:nth-child(4) .growth-card__step {
  color: var(--green);
}

.growth-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
}

.growth-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.growth-card__list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.growth-card__list li:last-child {
  margin-bottom: 0;
}

.growth-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
}

.growth-card:nth-child(2) .growth-card__list li::before {
  background: #a78bfa;
}

.growth-card:nth-child(3) .growth-card__list li::before {
  background: #eab308;
}

.growth-card:nth-child(4) .growth-card__list li::before {
  background: var(--green);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.card:hover {
  border-color: rgba(56, 189, 248, 0.25);
  transform: translateY(-2px);
}

.card__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.5rem 0 0.65rem;
  letter-spacing: -0.01em;
}

.card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Process: интерактивный таймлайн */
.process-timeline {
  margin: 0 auto 0.5rem;
  max-width: 48rem;
}

.process-timeline__hint {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted-2);
}

.pt-rail {
  margin: 0 0 1.75rem;
}

.pt-rail__nodes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  padding: 0 0.1rem;
  gap: 0.35rem;
  position: relative;
  z-index: 1;
}

.pt-node {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted-2);
  font-weight: 800;
  font-size: 0.88rem;
  font-family: var(--font-ui, system-ui, sans-serif);
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.25s,
    transform 0.2s;
}

.pt-node:hover {
  color: #f4f4f5;
  border-color: rgba(56, 189, 248, 0.45);
  transform: translateY(-1px);
}

.pt-node:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.pt-node--past {
  color: #7dd3fc;
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.08);
}

.pt-node--active {
  color: #f4f4f5;
  border-color: #38bdf8;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.2), rgba(12, 12, 18, 0.95));
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.35);
}

.pt-node--upcoming {
  opacity: 0.75;
}

.pt-rail__track {
  position: relative;
  height: 5px;
  border-radius: 99px;
  overflow: hidden;
  margin: 0 0.35rem 0 0.35rem;
}

.pt-rail__bg {
  position: absolute;
  inset: 0;
  background: var(--border);
  opacity: 0.9;
  border-radius: 99px;
}

.pt-rail__fill {
  position: absolute;
  inset: 0;
  transform: scaleX(var(--pt, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, #22d3ee 0%, #4ade80 100%);
  border-radius: 99px;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.48, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .pt-rail__fill,
  .pt-node {
    transition: none;
  }
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.step--timeline {
  cursor: default;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease);
}

.step--timeline .step__index,
.step--timeline .step__title {
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.step--current {
  position: relative;
  border-radius: var(--radius);
  margin-inline: -0.35rem;
  padding-left: 1.15rem;
  border-left: 2px solid rgba(56, 189, 248, 0.55);
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.05), transparent 60%);
}

.step--current .step__index {
  background: rgba(56, 189, 248, 0.18);
  color: #7dd3fc;
}

.step--current .step__title {
  color: #f4f4f5;
}

@media (min-width: 768px) {
  .step--current {
    margin-inline: 0;
    padding-left: 0;
    border-left: none;
    /* Мягкий tint, без подброса/тяжёлой тени */
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.22);
    padding: 1.1rem 1rem 1.2rem;
    box-shadow: none;
    transform: none;
  }
}

.step {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  /* Чтобы scrollIntoView не прятал заголовок этапа под фиксированным header */
  scroll-margin-top: clamp(4.5rem, 10vh, 6.75rem);
}

@media (min-width: 768px) {
  .step {
    flex-direction: column;
    padding: 0;
    border: none;
  }

  /* Резервируем место под бордер/фон, чтобы при наведении не было layout shift */
  .step--timeline {
    padding: 1.1rem 1rem 1.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
  }
}

.step__index {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.step__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.step__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Process Guarantees */
.process-guarantees {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}
.process-guarantees__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin: 0 0 1.2rem;
}
.process-guarantees__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.process-guarantees__item {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
}
.process-guarantees__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}
.process-guarantees__item strong {
  color: var(--text);
}
.process-guarantees__icon {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

/* Audience Cards */
.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.pain-card {
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pain-card__pain {
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  padding-left: 0.8rem;
  border-left: 2px solid var(--accent);
}
.pain-card__fix {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.pain-card__fix strong {
  color: var(--green);
}

/* Chat bubbles */
.chat {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.chat__pair {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.chat__msg {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.chat__msg--client {
  justify-content: flex-start;
}

.chat__msg--us {
  justify-content: flex-end;
}

.chat__avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.chat__avatar--client {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.2);
}

.chat__avatar--us {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  font-family: var(--font-display);
}

.chat__bubble {
  max-width: 80%;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.chat__bubble--client {
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.12);
  border-bottom-left-radius: 4px;
  color: var(--text);
  font-style: italic;
}

.chat__bubble--us {
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom-right-radius: 4px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .chat__bubble {
    max-width: 88%;
  }
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq__item {
  padding: 0;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq__q {
  padding: 1rem 1.3rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q::after {
  content: "+";
  float: right;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--muted-2);
  transition: transform 0.2s;
}
.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}
.faq__a {
  margin: 0;
  padding: 0 1.3rem 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA */
.cta {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.cta__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0.8rem 0 0.7rem;
  letter-spacing: -0.03em;
}

.cta__text {
  margin: 0 auto;
  color: var(--muted);
  max-width: 560px;
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.6;
}

.cta__loss {
  font-style: italic;
  color: #f59e0b;
  font-size: 0.85rem;
  margin: 0.8rem auto 0;
  max-width: 560px;
  opacity: 0.85;
}

/* Quiz card with glow border */
.cta__card {
  position: relative;
  max-width: 560px;
  margin: 0 auto 2rem;
  padding: 2rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(56, 189, 248, 0.12);
  box-shadow: 0 0 60px -20px rgba(56, 189, 248, 0.08);
}

.cta__card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(167, 139, 250, 0.1), rgba(56, 189, 248, 0.05));
  z-index: -1;
  filter: blur(1px);
  opacity: 0.6;
}

/* Contact buttons — horizontal row */
.cta__contacts {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 0.65rem;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .cta__contacts {
    grid-template-columns: 1fr;
  }
}

.cta__contacts .contact-btn {
  padding: 0.7rem 0.85rem;
  gap: 0.6rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.cta__contacts .contact-btn__body {
  display: flex;
  flex-direction: column;
}

.cta__contacts .contact-btn__title {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.cta__contacts .contact-btn__sub {
  font-size: 0.72rem;
  margin-top: 0.1rem;
  white-space: nowrap;
}

.cta__contacts .contact-btn__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

/* Divider — centered */
.cta__divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 560px;
  margin: 1.5rem auto;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.cta__divider::before,
.cta__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.cta__hint {
  margin: 1.2rem 0 0;
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
}

.cta__legal {
  margin: 0.5rem 0 0;
  font-size: 0.7rem;
  color: var(--muted-2);
  text-align: center;
  line-height: 1.45;
}
.cta__legal a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.18s var(--ease);
}
.cta__legal a:hover { color: #f4f4f5; }

/* Badge */
.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
}

.cta__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
  top: -0.5px;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Contact buttons base */
.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 22, 0.55);
  color: #e4e4e7;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.18s var(--ease), border-color 0.2s var(--ease), background 0.22s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-btn:hover {
  transform: translateY(-2px);
  background: rgba(20, 22, 32, 0.7);
}
.contact-btn:active { transform: translateY(0); }

.contact-btn--tg:hover {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 14px 36px -22px rgba(56, 189, 248, 0.55);
}
.contact-btn--wa:hover {
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 14px 36px -22px rgba(74, 222, 128, 0.5);
}
.contact-btn--phone:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-btn__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-btn--tg .contact-btn__icon {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.10);
  border-color: rgba(56, 189, 248, 0.20);
}
.contact-btn--wa .contact-btn__icon {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.10);
  border-color: rgba(74, 222, 128, 0.20);
}
.contact-btn--phone .contact-btn__icon {
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}

.contact-btn__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}

.contact-btn__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #f4f4f5;
}

.contact-btn__sub {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Footer */
.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__tag {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.footer__requisites {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted-2);
  max-width: 22rem;
}

.footer__contact {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
}

.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: rgba(56, 189, 248, 0.07);
  color: #e0f2fe;
  font-family: "Syne", "Onest", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.footer__phone::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
}

.footer__phone:hover {
  background: rgba(56, 189, 248, 0.14);
  border-color: rgba(56, 189, 248, 0.5);
  color: #fff;
}

.footer__legal {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted-2);
}

.footer__legal-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

@media (max-width: 720px) {
  .footer__legal-wrap {
    align-items: flex-start;
    width: 100%;
  }
}

/* «сделано в UNITY · Web Студия» — минималистичный текстовый credit без плашки. */
.footer__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0;
  border: none;
  background: transparent;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--muted-2, #71717a);
  transition: color 0.18s var(--ease);
}

.footer__badge-prefix {
  letter-spacing: 0.1em;
}

.footer__badge-brand {
  font-weight: 600;
  color: #d4d4d8;
  letter-spacing: 0.04em;
  transition: color 0.18s var(--ease);
}

.footer__badge-arrow {
  font-size: 0.78em;
  opacity: 0.55;
  transition: transform 0.18s var(--ease), opacity 0.18s var(--ease);
}

.footer__badge:hover .footer__badge-brand,
.footer__badge:focus-visible .footer__badge-brand {
  color: #f4f4f5;
}

.footer__badge:hover .footer__badge-arrow,
.footer__badge:focus-visible .footer__badge-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.footer__badge:focus-visible {
  outline: 1px dashed rgba(56, 189, 248, 0.5);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: 0.08s;
}

.reveal--delay-2 {
  transition-delay: 0.16s;
}

.reveal--delay-3 {
  transition-delay: 0.24s;
}

.reveal--delay-4 {
  transition-delay: 0.32s;
}

/* Скрываем nav__footer на десктопе — он только для мобильного fullscreen меню */
.nav__footer { display: none; }

/* Body lock: когда меню открыто, фиксируем body на месте через JS
   (position: fixed + сохранение scrollY). На iOS Safari это убирает
   «протекающий» скролл, который не лечится одним overflow:hidden. */
body.nav-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

/* Mobile nav — fullscreen панель сверху, с blur-фоном, ESC/tap-outside для закрытия */
@media (max-width: 880px) {
  .header__cta { display: none; }

  .burger {
    display: flex;
    margin-left: auto;
    /* Бургер всегда выше меню — повторный тап надёжно закрывает */
    position: relative;
    z-index: 101;
  }

  .nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    /* Контентная зона по центру с боковыми полями для безопасной зоны */
    padding-top: max(5rem, calc(env(safe-area-inset-top) + 4.4rem));
    padding-right: max(1.75rem, env(safe-area-inset-right));
    padding-bottom: max(2rem, calc(env(safe-area-inset-bottom) + 1.5rem));
    padding-left: max(1.75rem, env(safe-area-inset-left));
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: rgba(8, 8, 12, 0.96);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: none;
    transform: translateY(-100%);
    transition: transform 0.42s var(--ease), opacity 0.30s var(--ease), visibility 0.30s var(--ease);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Главное: предотвращает «протекание» скролла на body (iOS 16+/Chrome 63+) */
    overscroll-behavior: contain;
    overscroll-behavior-y: contain;
    /* На сенсорах не даём системному pull-to-refresh /  bounce срабатывать у меню */
    touch-action: pan-y;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Внутренний контейнер с одинаковой типографикой и нормальной шириной */
  .nav a {
    display: block;
    padding: 0.95rem 0;
    font-family: "Syne", "Onest", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f4f4f5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s var(--ease);
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--accent);
    outline: none;
  }

  /* Чистая верхняя граница — выглядит ровнее */
  .nav a:first-of-type { border-top: 1px solid rgba(255, 255, 255, 0.06); }

  /* Footer-блок меню: контакты + подпись */
  .nav__footer {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1.6rem;
  }
  .nav__footer-label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-2);
  }
  .nav__footer-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav__contact {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(20, 22, 32, 0.55);
    color: #e4e4e7;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: border-color 0.2s var(--ease), background 0.22s var(--ease);
  }
  .nav__contact--tg { color: #7dd3fc; }
  .nav__contact--phone { font-variant-numeric: tabular-nums; white-space: nowrap; }
  .nav__contact:hover,
  .nav__contact:focus-visible {
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(20, 22, 32, 0.85);
    outline: none;
  }
  .nav__footer-hint {
    margin: 0;
    font-size: 0.76rem;
    color: var(--muted-2);
  }

  body.nav-open::after { display: none; } /* fullscreen меню само закрывает фон */
}

/* ============================================================
   МОБИЛЬНЫЕ ОПТИМИЗАЦИИ — финальные патчи поверх всех стилей
   ============================================================ */

/* 1) Глобальные правила: нет горизонтального скролла, safe-area, tap-highlight */
html { -webkit-text-size-adjust: 100%; }

html, body {
  overflow-x: clip;
}

@supports (-webkit-touch-callout: none) {
  /* iOS Safari: убираем подсветку при тапе */
  a, button { -webkit-tap-highlight-color: transparent; }
}

/* Учёт «челки» / safe-area на iPhone X+ */
@supports (padding: env(safe-area-inset-left)) {
  .container {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
    width: min(1120px, 100% - max(2.5rem, env(safe-area-inset-left) + env(safe-area-inset-right)));
  }
  .footer__inner {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* Loader — учёт URL-бара iOS Safari (100dvh) */
@supports (height: 100dvh) {
  .site-loader { min-height: 100dvh; }
}

/* 2) Header — компактнее на мобильных + учёт «челки»/Dynamic Island.
   На iPhone safe-area-inset-top сдвигает контент шапки ниже статус-бара. */
@media (max-width: 720px) {
  .header {
    padding-top: max(0.55rem, env(safe-area-inset-top));
    padding-bottom: 0.55rem;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .header__inner { gap: 0.75rem; }
  .logo { font-size: 1.2rem; }
  .burger { width: 42px; height: 42px; }
}

/* Hero на мобильных: сдвигаем верхний padding ниже, учитывая выросшую шапку
   из-за safe-area-inset-top. Ровно на величину инсета. */
@media (max-width: 720px) {
  .hero {
    padding-top: calc(clamp(5rem, 18vw, 6.5rem) + env(safe-area-inset-top, 0px));
  }
}

/* 3) Hero — приземлённее, без слишком огромных отступов под фиксированной шапкой */
@media (max-width: 720px) {
  .hero { padding: clamp(5rem, 18vw, 6.5rem) 0 clamp(2.5rem, 8vw, 4rem); }
  .eyebrow { font-size: 0.72rem; margin-bottom: 0.7rem; }
  .hero__title { font-size: clamp(1.85rem, 8vw, 2.6rem); margin-bottom: 0.95rem; }
}

/* 4) Section padding — менее агрессивный на мобильных */
@media (max-width: 720px) {
  .section { padding: clamp(2.5rem, 7vw, 4rem) 0; }
}

/* 5) 3D-сцена — заметно ниже десктопа, но без излишнего ужатия (модель должна
   уверенно помещаться + поза/камера должны успевать инициализироваться). */
@media (max-width: 720px) {
  .growth-3d__stage {
    min-height: clamp(420px, 70vh, 540px);
    /* aspect-ratio наследуется (16/10) — не переопределяем, чтобы не сбить fit камеры */
  }
  .growth-3d__title--lead {
    font-size: clamp(1.15rem, 5.5vw, 1.5rem);
  }
}

/* 6) Дашборд — горизонтальный скролл таблицы и более узкая компоновка */
@media (max-width: 720px) {
  /* Убираем «подложку под подложкой»: внешний контейнер growth-examples
     не должен дублировать рамку/фон, у дашборда уже свой фрейм. */
  .growth-examples {
    margin-bottom: 1.5rem;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }
  .growth-examples__head {
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
  }

  .dash__main { padding: 0.85rem 0.85rem 1rem; }
  .dash__tiles {
    /* Принудительно 2×2 на мобильных: auto-fit с min 140px не помещался в 2 колонки */
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .dash__tile { padding: 0.55rem 0.7rem 0.65rem; }
  .dash__tile-value { font-size: 1.2rem; }
  .dash__chart svg { height: 110px; }
  .dash__path { font-size: 0.66rem; }
  .dash__h { font-size: 0.98rem; }
}

@media (max-width: 540px) {
  /* Таблицу источников оставляем 3 колонки (без «Доли»), как уже задано выше */
  .dash__row { padding: 0.5rem 0.7rem; font-size: 0.78rem; }
  .dash__row--head { font-size: 0.6rem; letter-spacing: 0.08em; }
}

/* 7) Process timeline — на мобильных вместо горизонтального рейла делаем
   вертикальную «нитку» слева от блоков с точками-маркерами. */
@media (max-width: 720px) {
  /* Скрываем горизонтальный рейл целиком — на мобильных он не нужен. */
  .pt-rail { display: none; }
  .process-timeline__hint { font-size: 0.78rem; line-height: 1.5; max-width: 60ch; }

  /* Контейнер шагов получает левый отступ для линии и точек. */
  .process-timeline__steps {
    position: relative;
    padding-left: 2.4rem;
  }

  /* Сама вертикальная нитка. */
  .process-timeline__steps::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(56,189,248,0.55), rgba(74,222,128,0.55));
    border-radius: 2px;
    opacity: 0.55;
  }

  /* Точка-маркер на каждой ступени. */
  .step--timeline {
    position: relative;
  }
  .step--timeline::before {
    content: "";
    position: absolute;
    left: -2.4rem;
    top: 1.55rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0c0c12;
    border: 2px solid rgba(56,189,248,0.45);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  }
  /* Подсветка точки активного шага. */
  .step--current::before {
    background: linear-gradient(135deg, #38bdf8, #4ade80);
    border-color: rgba(56,189,248,0.85);
    transform: scale(1.15);
  }
}

/* 8) CTA-блок — стек контактных кнопок на узких мобильных, читаемые подписи */
@media (max-width: 720px) {
  .cta__inner { gap: 1.5rem; }
  .cta__title { font-size: clamp(1.45rem, 6vw, 1.95rem); }
  .cta__quote { font-size: 0.9rem; }
  .contact-btn { padding: 0.95rem 1rem; }
  .contact-btn__title { font-size: 0.96rem; }
  .contact-btn__sub { font-size: 0.74rem; }
}

@media (max-width: 480px) {
  /* На очень узких — TG-сабтекст укорачиваем (всё-таки 30 минут не критично) */
  .contact-btn__sub { white-space: normal; }
  .contact-btn-row .contact-btn { padding: 0.7rem 0.9rem; }
}

/* 9) Footer — аккуратный stack, бейдж не уезжает */
@media (max-width: 720px) {
  .footer { padding: 1.5rem 0 2rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .footer__brand { width: 100%; }
  .footer__legal-wrap { align-items: flex-start; width: 100%; }
}

/* 10) Cards / grids общие фиксы переноса (предотвращаем overflow от длинных слов и URL) */
.section, .container, main, body {
  overflow-wrap: anywhere;
}
code, pre, .v2-tabs__path, .dash__path {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* 11) Снижаем тяжесть фоновой сетки и шума на маленьких экранах */
@media (max-width: 720px) {
  body { background-size: 48px 48px; }
  .noise { opacity: 0.025; }
}

/* 12) Tap-friendly cursor: на тач-экранах не показываем grab у canvas (это десктопный паттерн) */
@media (hover: none) and (pointer: coarse) {
  .growth-3d__stage canvas { cursor: default; }
  .growth-3d__stage canvas:active { cursor: default; }
  /* На тачах hover-эффекты не «залипают» */
  .vc:hover .vc__reveal { grid-template-rows: 0fr; }
  .vc:hover .vc__reveal > span { opacity: 0; padding-top: 0; }
  .vc[aria-expanded="true"] .vc__reveal { grid-template-rows: 1fr; }
  .vc[aria-expanded="true"] .vc__reveal > span { opacity: 1; padding-top: 0.5rem; }
}

/* 13) Process на тачах — тоже только клик, без замирания после mouseleave */
@media (hover: none) and (pointer: coarse) {
  .step--timeline:hover { background: transparent; border-color: transparent; }
}

/* 14) Лоадер — bigger margins from edges на мобильных */
@media (max-width: 480px) {
  .site-loader { padding: 1rem; }
  .site-loader__brand { font-size: 0.7rem; letter-spacing: 0.24em; }
  .site-loader__pct { font-size: clamp(2.8rem, 13vw, 4rem); }
  .site-loader__msg { font-size: 0.86rem; }
  .site-loader__hint { font-size: 0.66rem; }
}

/* 15) Пульсирующая анимация на «бесплатный аудит» в CTA — чтобы притягивала взгляд */
.cta__title .text-gradient {
  background-size: 200% 100%;
  animation: cta-shimmer 3.6s ease-in-out infinite, cta-glow 2.6s ease-in-out infinite;
  display: inline-block; /* нужно для filter */
  position: relative;
}

@keyframes cta-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes cta-glow {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(56, 189, 248, 0));
    transform: translateZ(0) scale(1);
  }
  50% {
    filter: drop-shadow(0 0 24px rgba(56, 189, 248, 0.45));
    transform: translateZ(0) scale(1.018);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta__title .text-gradient {
    animation: none;
  }
}

/* 17) CTA «бесплатный аудит» — сделать самым заметным элементом сайта.
       Состоит из: бейджа «Бесплатно · старт за 1 день», большого заголовка,
       анимированной цветной обводки секции, и hero-кнопки с пульсом. */

/* Бейдж над заголовком CTA */
.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.10) 0%, rgba(74, 222, 128, 0.10) 100%);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3fc;
}
.cta__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
  animation: cta-badge-pulse 1.6s ease-in-out infinite;
}
@keyframes cta-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18); }
  50%      { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0.04); }
}

/* Анимированная цветная подложка-glow за CTA-секцией */
.cta__inner { position: relative; }
.cta__glow {
  position: absolute;
  inset: -28px;
  border-radius: 32px;
  background:
    radial-gradient(60% 80% at 18% 0%,  rgba(56, 189, 248, 0.18), transparent 70%),
    radial-gradient(60% 80% at 100% 100%, rgba(74, 222, 128, 0.16), transparent 70%);
  filter: blur(40px);
  opacity: 0.85;
  pointer-events: none;
  z-index: -1;
  animation: cta-glow-shift 7s ease-in-out infinite;
}
@keyframes cta-glow-shift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(2%, -1%) scale(1.04); }
}

/* Hero-кнопка «Получить бесплатный аудит» — с пульсирующим ободком и стрелкой */
.btn--audit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem 0.95rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  overflow: hidden;
  isolation: isolate;
}
.btn--audit .btn__arrow {
  font-size: 1.1em;
  font-weight: 800;
  transition: transform 0.22s var(--ease);
}
.btn--audit:hover .btn__arrow { transform: translateX(3px); }
.btn--audit .btn__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.55);
  animation: btn-audit-pulse 2.4s ease-out infinite;
}
@keyframes btn-audit-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(56, 189, 248, 0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0   rgba(56, 189, 248, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .cta__badge-dot,
  .cta__glow,
  .btn--audit .btn__pulse { animation: none; }
}

/* Cookie-баннер: появляется внизу при первом заходе.
   Скрывается после клика «Хорошо» (флаг в localStorage). */
.cookie-banner {
  position: fixed;
  z-index: 95;
  left: max(1rem, env(safe-area-inset-left));
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, calc(env(safe-area-inset-bottom) + 0.4rem));
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(8, 10, 16, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #d4d4d8;
  box-shadow: 0 18px 48px -22px rgba(0, 0, 0, 0.7);
  transform: translateY(140%);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
}
.cookie-banner__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #d4d4d8;
}
.cookie-banner__text a {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.4rem;
}
.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.cookie-banner__btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: #d4d4d8;
}
.cookie-banner__btn--ghost:hover { border-color: rgba(255, 255, 255, 0.25); }
.cookie-banner__btn--primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #04111c;
  border-color: transparent;
  font-weight: 700;
}
.cookie-banner__btn--primary:hover { filter: brightness(1.08); }

/* Когда виден cookie-баннер, поднимаем audit-pill, чтобы они не накладывались */
.cookie-banner.is-visible ~ .audit-pill {
  bottom: max(5.5rem, calc(env(safe-area-inset-bottom) + 5rem));
}

/* Footer ссылки на политику */
.footer__links {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted-2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.footer__links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer__links a:hover { color: #f4f4f5; }
.footer__links span { opacity: 0.5; }

/* Sticky-pill «Бесплатный аудит» — всегда видим внизу экрана.
   Скрывается, когда CTA-секция в видимости (нет смысла дублировать). */
.audit-pill {
  position: fixed;
  z-index: 90;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.05rem 0.7rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.42);
  background: linear-gradient(135deg, #0ea5e9 0%, #1f9bff 100%);
  color: #ffffff;
  font-family: "Onest", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 16px 40px -16px rgba(14, 165, 233, 0.55), 0 4px 12px -4px rgba(0,0,0,0.4);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.32s var(--ease), opacity 0.28s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.audit-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}
.audit-pill__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.55);
  animation: audit-pill-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes audit-pill-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(56, 189, 248, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0   rgba(56, 189, 248, 0); }
}
.audit-pill__arrow {
  font-weight: 800;
  transition: transform 0.18s var(--ease);
}
.audit-pill:hover .audit-pill__arrow { transform: translateX(2px); }

/* Когда CTA-секция в видимости — пилл-плашка прячется (через JS-класс) */
.audit-pill.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
/* На совсем малых экранах кратко: только текст «Аудит» */
@media (max-width: 380px) {
  .audit-pill__text { display: none; }
  .audit-pill { padding: 0.7rem 0.95rem; }
}
@media (prefers-reduced-motion: reduce) {
  .audit-pill__pulse { animation: none; }
}

/* 18) Мобильная компоновка 1С-таблицы (секция «Интерфейсы»):
   на узких экранах учётные колонки (Себестоимость/НДС/Штрихкод) скрываются,
   чтобы Наименование/Артикул/Остаток/Цена остались крупными и читаемыми. */
@media (max-width: 720px) {
  /* Скрываем «лишние» учётные колонки в шапке: 4 (Себест.), 5 (НДС), 6 (Штрихкод) */
  .d1c__win--erp .d1c__head span:nth-child(4),
  .d1c__win--erp .d1c__head span:nth-child(5),
  .d1c__win--erp .d1c__head span:nth-child(6) {
    display: none !important;
  }
  /* И эти же ячейки в каждой строке: --internal, --vat, --ean */
  .d1c__win--erp .d1c__rows li > .d1c__cell--internal,
  .d1c__win--erp .d1c__rows li > .d1c__cell--vat,
  .d1c__win--erp .d1c__rows li > .d1c__cell--ean {
    display: none !important;
  }
  /* Перестраиваем сетку под 4 колонки: Наименование · Артикул · Остаток · Цена */
  .d1c__win--erp .d1c__head,
  .d1c__win--erp .d1c__rows li {
    grid-template-columns:
      minmax(0, 1.5fr)
      minmax(4.5rem, 5.5rem)
      minmax(2.8rem, 3.4rem)
      minmax(0, 1fr);
    gap: 0.35rem 0.5rem;
    padding: 0.45rem 0.55rem;
  }
  .d1c__win--erp .d1c__head { font-size: 0.66rem; }
  .d1c__win--erp .d1c__rows li { font-size: 0.74rem; }
  .d1c__win--erp .d1c__cell { font-size: 0.74rem; }
  .d1c__win--erp .d1c__cell--code { font-size: 0.62rem; }
  .d1c__win--erp .d1c__cell--num { font-size: 0.74rem; }
  .d1c__win--erp .d1c__sheet-inner { min-width: 100%; }
  .d1c__win--erp .d1c__qty,
  .d1c__win--erp .d1c__price { font-size: 0.74rem; }
  .d1c__win--erp .d1c__sub { font-size: 0.78rem; }
  .d1c__win--erp .d1c__desc { font-size: 0.78rem; line-height: 1.5; }
  .d1c__win--erp .d1c__foot { font-size: 0.7rem; }
}

/* Витрина-mock (товары с фото) — компактнее на мобильных, чтобы не «куксилась» */
@media (max-width: 720px) {
  .d1c__win--shop .d1c__shop-tagline,
  .d1c__win--shop .d1c__shop-pill:nth-child(2) {
    display: none; /* на узком оставляем только «витрина онлайн» */
  }
  .d1c__win--shop .d1c__shop-name { font-size: 0.95rem; }
  .d1c__win--shop .d1c__url { font-size: 0.7rem; }
  .d1c__win--shop .d1c__crumbs { font-size: 0.7rem; }
}

/* Карточки товаров на мобильных: бэйджик «остатка» переносился по буквам
   («1 / 2 / ш / т.») когда колонка становилась узкой. Не даём ему сжиматься
   и принудительно держим в одну строку. */
@media (max-width: 720px) {
  .d1c__pitem-row {
    grid-template-columns: minmax(3.5rem, auto) auto;
    gap: 0.4rem 0.5rem;
  }
  .d1c__pstock {
    display: none; /* на узких экранах остаток скрываем — не критично для демо */
  }
  .d1c__patc {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    padding: 0.45rem 0.7rem;
    font-size: 0.66rem;
  }
}

/* CTA Form */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.cta-form__input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}
.cta-form__input:focus {
  border-color: var(--accent);
}
.cta-form__input::placeholder {
  color: var(--muted-2);
}
.cta-form__input--textarea {
  resize: vertical;
  min-height: 4.5rem;
}
.cta-form__submit {
  width: 100%;
  margin-top: 0.2rem;
}
.cta-form__status {
  margin: 0;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  text-align: center;
}
.cta-form__status--ok {
  background: rgba(74, 222, 128, 0.12);
  color: var(--green);
}
.cta-form__status--err {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
}
.cta__divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.4rem 0;
  color: var(--muted-2);
  font-size: 0.78rem;
}
.cta__divider::before,
.cta__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ===== Hero Floating Dashboards ===== */
#hero-dashboards {
  perspective: 1200px;
  min-height: 420px;
}

.hero-dash-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hd {
  position: absolute;
  z-index: 2;
  padding: .85rem 1rem;
  border-radius: 14px;
  background: rgba(14, 14, 22, .88);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 12px 50px rgba(0, 0, 0, .7),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  min-width: 155px;
  transition: transform .06s linear;
  will-change: transform;
}

.hd--mini { min-width: 130px; }
.hd--mini .hd__mv { font-size: 1rem; }

.hd[data-accent="cyan"] {
  border-color: rgba(56, 189, 248, .18);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .7), 0 0 25px rgba(56, 189, 248, .04), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.hd[data-accent="green"] {
  border-color: rgba(74, 222, 128, .18);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .7), 0 0 25px rgba(74, 222, 128, .04), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.hd[data-accent="purple"] {
  border-color: rgba(167, 139, 250, .18);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .7), 0 0 25px rgba(167, 139, 250, .04), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.hd[data-accent="amber"] {
  border-color: rgba(251, 191, 36, .18);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .7), 0 0 25px rgba(251, 191, 36, .04), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.hd::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
}

.hd__t {
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: .45rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.hd__live {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, .8);
  animation: hd-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes hd-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}

.hd__ms {
  display: flex;
  gap: .6rem;
}

.hd__m {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.hd__ml {
  font-size: .44rem;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hd__mv {
  font-family: "Syne", "Onest", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f4f4f5;
  line-height: 1.1;
}

.hd__md {
  font-size: .5rem;
  font-weight: 600;
  color: #4ade80;
}
.hd__md.neg { color: #f87171; }

/* Mini charts */
.hd__chart--spark {
  margin-top: .4rem;
  height: 20px;
}
.hd__chart--spark svg {
  width: 100%;
  height: 100%;
}

.hd__chart--bars {
  margin-top: .4rem;
  height: 24px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.hd__chart--bars span {
  flex: 1;
  border-radius: 2px;
  background: rgba(251, 191, 36, .5);
  transition: height .6s ease;
}

.hd__chart--progress {
  margin-top: .4rem;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}
.hd__pfill {
  height: 100%;
  width: var(--pw, 0%);
  border-radius: 2px;
  background: linear-gradient(90deg, #a78bfa, #38bdf8);
  transition: width 2s ease-out;
}

@media (max-width: 900px) {
  #hero-dashboards { min-height: 340px; }
  .hd { padding: .65rem .75rem; min-width: 120px; border-radius: 10px; }
  .hd__mv { font-size: .9rem; }
  .hd__ml { font-size: .4rem; }
  .hd__t { font-size: .46rem; }
  .hd--mini { min-width: 100px; }
  .hd--mini .hd__mv { font-size: .8rem; }
}

@media (max-width: 600px) {
  #hero-dashboards {
    min-height: 280px;
    margin-top: 2rem;
  }
  .hd {
    padding: .5rem .6rem;
    min-width: 100px;
    border-radius: 8px;
    transform: none !important;
  }
  .hd__mv { font-size: .8rem; }
  .hd__ml { font-size: .36rem; }
  .hd__t { font-size: .42rem; }
  .hd__md { font-size: .42rem; }
  .hd__chart--spark { height: 14px; }
  .hd__chart--bars { height: 16px; }
  .hd--mini { min-width: 85px; }
  .hd--mini .hd__mv { font-size: .7rem; }
  /* Reposition cards for mobile to avoid overlap */
  .hd:nth-child(2) { left: 2% !important; top: 5% !important; }
  .hd:nth-child(3) { left: 52% !important; top: 2% !important; }
  .hd:nth-child(4) { left: 2% !important; top: 38% !important; }
  .hd:nth-child(5) { left: 50% !important; top: 36% !important; }
  .hd:nth-child(6) { left: 2% !important; top: 68% !important; }
  .hd:nth-child(7) { left: 50% !important; top: 68% !important; }
  .hero-dash-bg { display: none; }
}

/* ===== Growth Pain Cards ===== */
.growth-pain {
  margin-top: 4rem;
}

.growth-pain__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.6rem;
}

.growth-pain__sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.growth-pain__bottom {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 2rem auto 0;
}

.growth-pain__bottom strong {
  color: var(--accent);
}

.growth-pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .growth-pain__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .growth-pain__grid {
    grid-template-columns: 1fr;
  }
}

.growth-pain__card {
  padding: 1.4rem 1.3rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.growth-pain__card:hover {
  border-color: rgba(56, 189, 248, 0.2);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.06);
}

.growth-pain__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: #fff;
}

.growth-pain__icon--target {
  background: linear-gradient(135deg, rgba(248, 113, 113, .15), rgba(248, 113, 113, .05));
  border: 1px solid rgba(248, 113, 113, .25);
  color: #f87171;
}
.growth-pain__icon--chart {
  background: linear-gradient(135deg, rgba(56, 189, 248, .15), rgba(56, 189, 248, .05));
  border: 1px solid rgba(56, 189, 248, .25);
  color: #38bdf8;
}
.growth-pain__icon--funnel {
  background: linear-gradient(135deg, rgba(251, 191, 36, .15), rgba(251, 191, 36, .05));
  border: 1px solid rgba(251, 191, 36, .25);
  color: #fbbf24;
}
.growth-pain__icon--money {
  background: linear-gradient(135deg, rgba(74, 222, 128, .15), rgba(74, 222, 128, .05));
  border: 1px solid rgba(74, 222, 128, .25);
  color: #4ade80;
}
.growth-pain__icon--speed {
  background: linear-gradient(135deg, rgba(167, 139, 250, .15), rgba(167, 139, 250, .05));
  border: 1px solid rgba(167, 139, 250, .25);
  color: #a78bfa;
}
.growth-pain__icon--mobile {
  background: linear-gradient(135deg, rgba(244, 114, 182, .15), rgba(244, 114, 182, .05));
  border: 1px solid rgba(244, 114, 182, .25);
  color: #f472b6;
}

.growth-pain__problem {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #f87171;
}

.growth-pain__fix {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

/* CTA form contact tabs */
.cta-form__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0.6rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
}

.cta-form__tab {
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cta-form__tab.is-active {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
}

.cta-form__tab:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

/* Section intermediate CTAs */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Mobile tap targets for form tabs */
@media (max-width: 600px) {
  .cta-form__tab {
    padding: 0.6rem 1.2rem;
    font-size: 0.82rem;
    min-height: 44px;
  }
}

/* ===== Checklist Section ===== */
.section--checklist {
  padding: 4rem 0;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.checklist__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.checklist__item:hover {
  border-color: rgba(56, 189, 248, 0.2);
}

.checklist__check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checklist__box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.checklist__check:checked ~ .checklist__box {
  background: #38bdf8;
  border-color: #38bdf8;
}

.checklist__check:checked ~ .checklist__box::after {
  content: "✓";
  color: #060608;
  font-size: 14px;
  font-weight: 700;
}

.checklist__text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}

.checklist__result {
  text-align: center;
  margin-top: 2rem;
  animation: fadeUp 0.4s ease;
}

.checklist__verdict {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.btn--audit {
  position: relative;
  overflow: visible;
}

.btn__pulse {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: rgba(56, 189, 248, 0.2);
  animation: pulseGlow 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.04); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .checklist {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA Quiz ===== */
.cta-quiz {
  padding: 1.5rem;
}

.cta-quiz__title {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.cta-quiz__step {
  display: none;
}

.cta-quiz__step.is-active {
  display: block;
  animation: fadeUp 0.3s ease;
}

.cta-quiz__q {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-quiz__opts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cta-quiz__opt {
  padding: 0.7rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text);
  font-size: 0.88rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}

.cta-quiz__opt:hover {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.06);
}

.cta-quiz__opt.is-selected {
  background: rgba(56, 189, 248, 0.15);
  border-color: #38bdf8;
  color: #38bdf8;
}

.cta-quiz__progress {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.cta-quiz__bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.cta-quiz__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #38bdf8;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.cta-quiz__counter {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ===== CTA Founder ===== */
.cta__founder {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta__founder-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.cta__founder-role {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.15rem 0 0;
}

/* ===== CTA Loss Text ===== */
.cta__loss {
  font-style: italic;
  color: #f59e0b;
  font-size: 0.88rem;
  margin-top: 1rem;
  opacity: 0.9;
}
