/* =====================================================
   Блум — /products/blum/ — CDO Global
   Дизайн-токены строго по разделу 7 ТЗ
   ===================================================== */

:root {
  /* Палитра */
  --bg-0: #0A0A0F;
  --bg-1: #12121A;
  --bg-2: #16161F;
  --bg-3: #1E1E2A;

  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);

  --text-0: #FFFFFF;
  --text-1: rgba(255, 255, 255, 0.78);
  --text-2: rgba(255, 255, 255, 0.55);
  --text-3: rgba(255, 255, 255, 0.38);

  --lime: #B4FF00;
  --lime-soft: rgba(180, 255, 0, 0.12);
  --lime-line: rgba(180, 255, 0, 0.35);

  --bad: rgba(255, 80, 80, 0.85);
  --bad-soft: rgba(255, 80, 80, 0.06);

  /* Типографика — Manrope */
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --fs-hero: clamp(36px, 4.6vw, 56px);
  --fs-h2: clamp(28px, 3.2vw, 40px);
  --fs-h3: clamp(20px, 1.8vw, 26px);
  --fs-lead: clamp(17px, 1.4vw, 19px);
  --fs-body: 17px;
  --fs-sm: 14.5px;
  --fs-xs: 13px;

  /* Радиусы и отступы */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 22px;

  --pad-section: clamp(56px, 8vw, 120px);
  --pad-section-tight: clamp(40px, 6vw, 80px);

  --container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text-1);
  background: var(--bg-0);
  background-image:
    radial-gradient(1200px 700px at 80% -10%, rgba(180, 255, 0, 0.06), transparent 60%),
    radial-gradient(900px 600px at 0% 30%, rgba(120, 80, 255, 0.05), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  background-attachment: fixed;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4 { color: var(--text-0); margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: var(--fs-hero); line-height: 1.05; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: var(--fs-h2); line-height: 1.1; }
h3 { font-size: var(--fs-h3); line-height: 1.2; }
p { margin: 0 0 .8em; }

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

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 15.5px;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--lime); color: #000;
  box-shadow: 0 8px 24px rgba(180, 255, 0, 0.18);
}
.btn--primary:hover { background: #c8ff36; box-shadow: 0 10px 28px rgba(180, 255, 0, 0.28); }
.btn--ghost {
  background: transparent; color: var(--text-0); border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }

.lime { color: var(--lime); }

/* === Top bar === */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 64px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text-0); font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
}
.logo:hover { text-decoration: none; }
.logo strong { color: var(--lime); font-weight: 800; }
.logo img { display: block; height: 28px; width: auto; }
.logo--footer img { height: 30px; }
/* --- Main menu (mirror of cdo-global.ru) --- */
.topbar__nav { flex: 1; display: flex; justify-content: center; }
.mainmenu { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.mainmenu__item { position: relative; }
.mainmenu__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 8px 0;
  color: var(--text-1); font: inherit; font-size: 14.5px; font-weight: 500;
  border-bottom: 2px solid transparent; cursor: pointer;
  text-decoration: none;
}
.mainmenu__btn:hover, .mainmenu__btn:focus-visible { color: var(--lime); border-bottom-color: var(--lime); outline: none; }
.mainmenu__btn[aria-current="page"] { color: var(--text-0); border-bottom-color: var(--lime); }
.mainmenu__btn .chev { transition: transform .25s ease; }
.mainmenu__item.is-open > .mainmenu__btn .chev { transform: rotate(180deg); }
.mainmenu__item.is-open > .mainmenu__btn { color: var(--lime); border-bottom-color: var(--lime); }

.submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  padding-top: 14px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 70;
}
.mainmenu__item.is-open > .submenu,
.mainmenu__item:focus-within > .submenu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.submenu__inner {
  background: rgba(11, 15, 12, 0.96);
  border: 1px solid rgba(180, 255, 0, 0.22);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: grid; gap: 6px;
}
.submenu--wide .submenu__inner { width: 720px; grid-template-columns: 1fr 1fr; }
.submenu--narrow .submenu__inner { width: 260px; }
.submenu__inner--col { display: flex; flex-direction: column; gap: 2px; }

.submenu__card {
  display: block; padding: 14px 16px;
  border: 1px solid transparent; border-radius: 16px;
  color: var(--text-0); text-decoration: none;
  transition: background .18s, border-color .18s;
}
.submenu__card:hover { background: rgba(255,255,255,0.05); border-color: rgba(180,255,0,0.35); text-decoration: none; }
.submenu__card--active { border-color: rgba(180,255,0,0.5); background: rgba(180,255,0,0.06); }
.submenu__title { display: inline-block; font-size: 14px; font-weight: 600; color: var(--text-0); }
.submenu__card:hover .submenu__title { color: var(--lime); }
.submenu__desc { display: block; margin-top: 4px; font-size: 12px; line-height: 1.5; color: var(--text-1); }

.submenu__row {
  display: block; padding: 10px 14px; border-radius: 12px;
  color: var(--text-0); text-decoration: none; font-size: 14px; font-weight: 500;
}
.submenu__row:hover { background: rgba(255,255,255,0.05); color: var(--lime); text-decoration: none; }

/* Tail (lang + CTA + burger) */
.topbar__tail { display: flex; align-items: center; gap: 14px; }
.langswitch { display: inline-flex; gap: 2px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang {
  background: none; border: 0; cursor: pointer;
  padding: 5px 10px; border-radius: 999px;
  font: inherit; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-1);
}
.lang:hover { color: var(--lime); }
.lang--active { background: rgba(180,255,0,0.12); color: var(--lime); }

.burger {
  display: none;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); cursor: pointer;
  align-items: center; justify-content: center; gap: 4px; flex-direction: column;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--text-0); border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu panel */
.mobilemenu { display: none; border-top: 1px solid var(--line); background: rgba(10,10,15,0.98); backdrop-filter: blur(18px); }
.mobilemenu[hidden] { display: none !important; }
.mobilemenu__inner { padding: 16px 0 22px; display: flex; flex-direction: column; gap: 4px; }
.mm-group > summary { list-style: none; cursor: pointer; padding: 12px 4px; font-size: 15px; font-weight: 600; color: var(--text-0); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.mm-group > summary::-webkit-details-marker { display: none; }
.mm-group > summary::after { content: "+"; color: var(--lime); font-size: 18px; }
.mm-group[open] > summary::after { content: "–"; }
.mm-group a { display: block; padding: 10px 4px; color: var(--text-1); font-size: 14px; text-decoration: none; }
.mm-group a[aria-current="page"] { color: var(--lime); }
.mm-link { padding: 12px 4px; color: var(--text-0); font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--line); text-decoration: none; }
.mm-tail { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; }

@media (max-width: 1180px) {
  .mainmenu { gap: 18px; }
  .submenu--wide .submenu__inner { width: 560px; }
}
@media (max-width: 1000px) {
  .topbar__nav { display: none; }
  .langswitch { display: none; }
  .topbar__cta { display: none; }
  .burger { display: inline-flex; }
  .mobilemenu.is-open { display: block; }
}


/* === Breadcrumbs === */
.breadcrumbs { padding: 18px 0 0; }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0;
  font-size: var(--fs-xs); color: var(--text-3);
}
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--text-3); }
.breadcrumbs a { color: var(--text-2); }
.breadcrumbs a:hover { color: var(--lime); }
.breadcrumbs [aria-current="page"] { color: var(--text-1); }

/* === Hero === */
.hero { position: relative; padding: 56px 0 80px; overflow: hidden; }
.hero__inner { position: relative; max-width: 880px; text-align: left; }
.hero__icon { margin-bottom: 24px; }
.hero__h1 { margin: 0 0 18px; }
.hero__sub {
  font-size: var(--fs-lead); color: var(--text-1); max-width: 720px; margin: 0 0 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 18px 22px; padding: 0; list-style: none;
  font-size: var(--fs-sm); color: var(--text-2);
}
.hero__badges li { position: relative; padding-left: 18px; }
.hero__badges li::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 8px; height: 8px;
  border-radius: 999px; background: var(--lime); transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(180, 255, 0, 0.5);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background-image:
    linear-gradient(var(--text-0) 1px, transparent 1px),
    linear-gradient(90deg, var(--text-0) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}
.hero__glow {
  position: absolute; top: -10%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180, 255, 0, 0.18), transparent 60%);
  filter: blur(20px); pointer-events: none;
}

/* === Sticky anchor nav === */
.anchornav {
  position: sticky; top: 64px; z-index: 50;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.anchornav__list {
  display: flex; gap: 8px; list-style: none; padding: 10px 0; margin: 0;
  overflow-x: auto; scrollbar-width: none;
}
.anchornav__list::-webkit-scrollbar { display: none; }
.anchornav__list a {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  font-size: 13.5px; color: var(--text-1); white-space: nowrap;
  border: 1px solid var(--line);
}
.anchornav__list a:hover { color: var(--lime); border-color: var(--lime-line); text-decoration: none; }

/* === Section heads === */
.section-head { max-width: 760px; margin: 0 0 40px; }
.eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime); padding: 6px 10px; border: 1px solid var(--lime-line); border-radius: 999px;
  margin-bottom: 16px; font-weight: 600;
}
.eyebrow--alert { color: #ffb84d; border-color: rgba(255, 184, 77, 0.4); }
.section-lead { font-size: var(--fs-lead); color: var(--text-1); margin: 0; max-width: 720px; }

/* === Answer-First === */
.answer-first { padding: 24px 0 var(--pad-section-tight); }
.answer-first p {
  font-size: var(--fs-lead); line-height: 1.65; color: var(--text-1);
  padding: 28px 30px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
  position: relative;
}
.answer-first p::before {
  content: ""; position: absolute; left: 0; top: 14%; bottom: 14%; width: 3px;
  background: var(--lime); border-radius: 3px;
}
.answer-first strong { color: var(--text-0); font-weight: 600; }

/* sr-only — для скрин-ридеров */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === VS === */
.vs { padding: var(--pad-section-tight) 0; }
.vs-neq {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.15em; height: 1.15em; margin: 0 .15em; vertical-align: -0.05em;
  border-radius: 8px; background: var(--lime); color: #000;
  font-weight: 800; font-size: 0.75em; line-height: 1;
}
.vs__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
@media (max-width: 820px) { .vs__grid { grid-template-columns: 1fr; } }
.vs__card {
  padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025); backdrop-filter: blur(8px);
}
.vs__card--gen { background: var(--bad-soft); }
.vs__card--bloom { background: rgba(180, 255, 0, 0.04); border-color: var(--lime-line); box-shadow: 0 16px 60px rgba(180, 255, 0, 0.08); }
.vs__badge {
  display: inline-block; padding: 6px 12px; border-radius: 999px; font-size: 12px;
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(255, 80, 80, 0.12); color: #ff9b9b; margin-bottom: 18px;
}
.vs__badge--lime { background: var(--lime-soft); color: var(--lime); }
.vs__card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.vs__card li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; }
.vs__card--gen li { color: var(--text-2); }
.vs__card--gen li span:last-child { text-decoration: line-through; text-decoration-color: rgba(255, 255, 255, 0.15); }
.vs__card--bloom li { color: var(--text-0); }
.vs__mark {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; margin-top: 1px;
}
.vs__mark--bad { background: rgba(255, 80, 80, 0.15); color: var(--bad); }
.vs__mark--good { background: var(--lime); color: #000; }

/* === Directions === */
.directions { padding: var(--pad-section-tight) 0; }
.directions__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 1024px) { .directions__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .directions__grid { grid-template-columns: 1fr; } }
.dir-card {
  padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025); backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, border-color .25s ease;
}
.dir-card:hover { transform: translateY(-3px); border-color: var(--lime-line); }
.dir-card__head { display: flex; flex-direction: column; gap: 6px; }
.dir-card__num {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; color: var(--lime);
}
.dir-card__lead { color: var(--text-2); font-size: var(--fs-sm); margin: 0; }
.dir-card h3 { margin: 0; }
.dir-card > p { color: var(--text-1); font-size: 15.5px; margin: 0; }
.dir-card__list {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px;
  font-size: 14.5px; color: var(--text-1);
}
.dir-card__list li {
  position: relative; padding-left: 18px;
}
.dir-card__list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 2px; background: var(--lime); border-radius: 2px;
}

/* === Features grid === */
.features { padding: var(--pad-section) 0; }
.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 1024px) { .features__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 660px) { .features__grid { grid-template-columns: 1fr; } }

.feat-card {
  padding: 26px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.025); backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-top: 2px solid var(--lime-line);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s ease, border-color .25s ease, background .25s ease;
}
.feat-card:hover { transform: translateY(-3px); border-color: var(--lime); }
.feat-card--accent { background: rgba(180, 255, 0, 0.04); border-color: var(--lime-line); }
.feat-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--lime-soft); display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--lime-line);
}
.feat-card h3 { font-size: 18.5px; margin: 0; }
.feat-card > p { color: var(--text-1); font-size: 15px; margin: 0; }
.feat-card ul {
  list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 7px;
  font-size: 14px; color: var(--text-2);
}
.feat-card ul li { position: relative; padding-left: 16px; }
.feat-card ul li::before {
  content: "→"; position: absolute; left: 0; top: 0; color: var(--lime); font-weight: 700;
}

/* === Timeline === */
.how { padding: var(--pad-section-tight) 0; }
.timeline {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; top: 26px; left: 4%; right: 4%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime-line), transparent);
}
.timeline__step {
  position: relative; padding-top: 60px;
}
.timeline__num {
  position: absolute; top: 0; left: 0;
  width: 52px; height: 52px; border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--lime-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-weight: 800; font-size: 14px; letter-spacing: 0.06em;
  box-shadow: 0 0 0 4px var(--bg-0), 0 0 24px rgba(180, 255, 0, 0.15);
}
.timeline__step h3 { font-size: 16.5px; margin: 0 0 6px; }
.timeline__step p { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.5; }
@media (max-width: 1100px) { .timeline { grid-template-columns: repeat(3, 1fr); } .timeline::before { display: none; } }
@media (max-width: 640px) { .timeline { grid-template-columns: 1fr; } }

/* === Guarantee === */
.guarantee { padding: var(--pad-section-tight) 0; }
.guarantee__card {
  padding: clamp(28px, 4vw, 48px); border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(180, 255, 0, 0.08), rgba(180, 255, 0, 0.02));
  border: 1px solid var(--lime-line);
  border-left: 4px solid var(--lime);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(180, 255, 0, 0.08);
}
.guarantee__head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.guarantee__head h2 { margin: 0; }
.guarantee__check {
  width: 44px; height: 44px; border-radius: 12px; background: var(--lime);
  display: inline-flex; align-items: center; justify-content: center;
}
.guarantee__lead { font-size: var(--fs-lead); color: var(--text-0); margin: 0 0 28px; max-width: 680px; }
.guarantee__lead strong { color: var(--lime); }
.guarantee__split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
@media (max-width: 720px) { .guarantee__split { grid-template-columns: 1fr; gap: 20px; } }
.guarantee__sub { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime); margin: 0 0 12px; font-weight: 700; }
.guarantee__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.guarantee__list li { position: relative; padding-left: 22px; color: var(--text-0); }
.guarantee__list li::before {
  content: "→"; position: absolute; left: 0; color: var(--lime); font-weight: 700;
}

/* === Sources === */
.sources { padding: var(--pad-section-tight) 0; }
.sources__grid {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.02); overflow: hidden;
}
.src-row {
  display: grid; grid-template-columns: minmax(180px, 1fr) 2fr; gap: 18px;
  padding: 16px 22px; border-bottom: 1px solid var(--line);
  align-items: center;
}
.src-row:last-child { border-bottom: 0; }
.src-row__name { color: var(--text-0); font-weight: 600; font-size: 15px; }
.src-row__desc { color: var(--text-2); font-size: 14.5px; }
.src-row--accent { background: var(--lime-soft); }
.src-row--accent .src-row__name { color: var(--lime); }
@media (max-width: 640px) { .src-row { grid-template-columns: 1fr; gap: 4px; } }

/* === Order 270 === */
.order270 { padding: var(--pad-section-tight) 0; }
.order270__card {
  border: 1px solid rgba(255, 184, 77, 0.25);
  background: linear-gradient(135deg, rgba(255, 184, 77, 0.06), rgba(255, 184, 77, 0.01));
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px;
}
@media (max-width: 820px) { .order270__card { grid-template-columns: 1fr; gap: 22px; } }
.order270__col h2 { font-size: clamp(24px, 2.6vw, 32px); margin: 0 0 16px; }
.order270__col p { color: var(--text-1); font-size: 15.5px; }
.order270__col p strong { color: var(--text-0); }
.order270__sub { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: #ffb84d; margin: 0 0 12px; }
.order270__list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--text-0); }
.order270__list li { position: relative; padding-left: 22px; }
.order270__list li::before { content: "→"; position: absolute; left: 0; color: #ffb84d; font-weight: 700; }

/* === Audience table === */
.audience { padding: var(--pad-section-tight) 0; }
.audience__table {
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.audience__row {
  display: grid; grid-template-columns: 1.1fr 1.4fr 1.4fr; gap: 20px;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--text-1);
}
.audience__row:last-child { border-bottom: 0; }
.audience__row strong { color: var(--text-0); }
.audience__row--head {
  background: rgba(255, 255, 255, 0.04); color: var(--lime);
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
@media (max-width: 820px) {
  .audience__row { grid-template-columns: 1fr; gap: 4px; padding: 16px 18px; }
  .audience__row--head { display: none; }
  .audience__row > div:first-child { color: var(--lime); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
}

/* === Cases === */
.cases { padding: var(--pad-section-tight) 0; }
.cases__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 1024px) { .cases__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 660px) { .cases__grid { grid-template-columns: 1fr; } }
.case-card {
  padding: 26px; border-radius: var(--r-lg); border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s ease, border-color .25s ease;
}
.case-card:hover { transform: translateY(-3px); border-color: var(--lime-line); }
.case-card__logo {
  font-weight: 700; font-size: 15px; color: var(--text-0); letter-spacing: -0.01em;
  padding: 10px 14px; background: rgba(255, 255, 255, 0.04); border-radius: 10px;
  border: 1px solid var(--line); align-self: flex-start;
}
.case-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.case-card__tags span {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: var(--lime-soft); color: var(--lime); border: 1px solid var(--lime-line);
}
.case-card h3 { font-size: 18px; margin: 4px 0 0; }
.case-card p { font-size: 14.5px; color: var(--text-2); margin: 0; }
.case-card__result { color: var(--text-0) !important; font-weight: 600; padding-top: 8px; border-top: 1px dashed var(--line); }

/* === Trust bar === */
.trustbar { padding: var(--pad-section-tight) 0; }
.trustbar__list {
  list-style: none; padding: 22px; margin: 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.02);
}
.trustbar__list li {
  display: flex; flex-direction: column; gap: 4px; padding: 10px;
  border-right: 1px solid var(--line);
}
.trustbar__list li:last-child { border-right: 0; }
.trustbar__num { color: var(--lime); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }
.trustbar__txt { color: var(--text-2); font-size: 13px; line-height: 1.4; }
.trustbar__foot { color: var(--text-3); font-size: 13px; margin-top: 14px; text-align: center; }
@media (max-width: 1024px) { .trustbar__list { grid-template-columns: repeat(3, 1fr); } .trustbar__list li:nth-child(3n) { border-right: 0; } }
@media (max-width: 560px) { .trustbar__list { grid-template-columns: 1fr 1fr; } .trustbar__list li { border-right: 0 !important; border-bottom: 1px solid var(--line); padding-bottom: 12px; } }

/* === CTA === */
.cta { padding: var(--pad-section) 0; }
.cta__inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 36px; align-items: start;
}
@media (max-width: 920px) { .cta__inner { grid-template-columns: 1fr; gap: 28px; } }
.cta__copy h2 { font-size: clamp(28px, 3vw, 38px); margin: 0 0 16px; }
.cta__copy p { color: var(--text-1); font-size: var(--fs-lead); margin: 0 0 18px; max-width: 560px; }
.cta__points {
  list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px;
}
.cta__points li {
  position: relative; padding-left: 28px; color: var(--text-0); font-size: 15.5px;
}
.cta__points li::before {
  content: "✓"; position: absolute; left: 0; color: #000; background: var(--lime);
  width: 20px; height: 20px; border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; top: 1px;
}
.cta__contacts { font-size: 16px; color: var(--text-1); }
.cta__contacts a { color: var(--text-0); font-weight: 600; }
.cta__contacts a:hover { color: var(--lime); }
.cta__contacts span { margin: 0 8px; color: var(--text-3); }

.cta__form {
  padding: 28px; border-radius: var(--r-lg);
  border: 1px solid var(--lime-line);
  background: rgba(180, 255, 0, 0.025);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.cta__form-title { color: var(--text-0); font-size: 20px; margin: 0 0 4px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: 13px; color: var(--text-1); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--text-0);
  background: rgba(0, 0, 0, 0.3); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 14px; transition: border-color .15s ease, background .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--lime); background: rgba(0, 0, 0, 0.5);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-2); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--lime); flex-shrink: 0; }
.checkbox a { color: var(--lime); }
.cta__form-note { color: var(--text-3); font-size: 12.5px; margin: 0; text-align: center; }

/* === FAQ === */
.faq { padding: var(--pad-section-tight) 0 var(--pad-section); }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__group-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 24px 0 4px;
  font-weight: 700;
}
.faq__group-title:first-child { margin-top: 0; }
.faq__item {
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color .2s ease, background .2s ease;
  overflow: hidden;
}
.faq__item[open] {
  border-color: var(--lime-line);
  border-left: 3px solid var(--lime);
  background: rgba(180, 255, 0, 0.025);
}
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 56px 18px 22px;
  color: var(--text-0); font-weight: 600; font-size: 16px;
  position: relative; line-height: 1.4;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--lime); line-height: 1; transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  padding: 0 22px 20px; margin: 0; color: var(--text-1); font-size: 15.5px; line-height: 1.6;
}

.faq__crosslinks { margin-top: 40px; padding: 22px 26px; border: 1px solid var(--line); border-radius: var(--r-lg); }
.faq__crosslinks p { font-size: 13px; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 12px; }
.faq__crosslinks ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px 24px; }
.faq__crosslinks a { color: var(--text-0); font-weight: 600; border-bottom: 1px solid var(--lime-line); padding-bottom: 2px; }
.faq__crosslinks a:hover { color: var(--lime); text-decoration: none; }

/* === Footer === */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
}
.footer__inner {
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) { .footer__inner { grid-template-columns: 1fr; gap: 28px; } }
.footer__brand p { font-size: 13.5px; color: var(--text-3); margin: 14px 0 0; max-width: 360px; }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 560px) { .footer__nav { grid-template-columns: 1fr; } }
.footer__nav h4 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); margin: 0 0 14px; }
.footer__nav a { display: block; color: var(--text-1); font-size: 14px; padding: 4px 0; }
.footer__nav a:hover { color: var(--lime); text-decoration: none; }
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 16px 24px; padding-top: 24px;
  font-size: 13px; color: var(--text-3);
}
.footer__legal a { color: var(--text-2); }
.footer__legal a:hover { color: var(--lime); text-decoration: none; }

/* === Motion === */
@media (prefers-reduced-motion: no-preference) {
  .vs__card, .dir-card, .feat-card, .case-card, .timeline__step, .guarantee__card, .order270__card, .answer-first p, .cta__form, .hero__h1, .hero__sub, .hero__cta, .hero__badges {
    animation: fadeUp .55s cubic-bezier(.16,1,.3,1) both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
}

/* Accessibility focus */
:focus-visible {
  outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 6px;
}

/* === Audience subtext === */
.audience__sub {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-3);
  font-style: italic;
}

/* === Voice of Customer === */
.voc { padding: var(--pad-section) 0 var(--pad-section-tight); background: linear-gradient(180deg, transparent 0%, rgba(180,255,0,0.025) 100%); }
.voc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.voc__card {
  background: rgba(180,255,0,0.04);
  border: 1px solid rgba(180,255,0,0.18);
  border-radius: 14px;
  padding: 24px;
  margin: 0;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.voc__card:hover { border-color: var(--lime); transform: translateY(-2px); }
.voc__card blockquote {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-1);
  font-style: italic;
}
.voc__card figcaption {
  font-size: 13px;
  color: var(--lime);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============ Pricing ============ */
.pricing { padding: 96px 0; }
.pricing__switch {
  display: inline-flex; gap: 4px; padding: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 28px 0 36px;
  flex-wrap: wrap;
}
.psw {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 0; cursor: pointer;
  padding: 9px 18px; border-radius: 999px;
  font: inherit; font-size: 14px; font-weight: 600;
  color: var(--text-1);
  transition: background .18s, color .18s;
}
.psw:hover { color: var(--text-0); }
.psw--active, .psw[aria-selected="true"] { background: var(--lime); color: #0A0A0F; }
.psw__save { display: inline-block; background: rgba(10,10,15,0.18); color: inherit; font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 999px; }
.psw:not(.psw--active):not([aria-selected="true"]) .psw__save { background: rgba(180,255,0,0.15); color: var(--lime); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.plan {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  transition: border-color .25s, transform .25s, background .25s;
}
.plan:hover { border-color: rgba(180,255,0,0.35); transform: translateY(-3px); }
.plan--accent {
  background: linear-gradient(180deg, rgba(180,255,0,0.10) 0%, rgba(180,255,0,0.02) 60%, rgba(255,255,255,0.025) 100%);
  border-color: rgba(180,255,0,0.45);
  box-shadow: 0 30px 60px -25px rgba(180,255,0,0.25);
}
.plan__head { margin-bottom: 20px; }
.plan__badge {
  display: inline-block; padding: 5px 12px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 12px;
}
.plan__badge--accent { background: var(--lime); border-color: var(--lime); color: #0A0A0F; }
.plan__title { font-size: 22px; font-weight: 700; line-height: 1.25; margin: 0 0 8px; color: var(--text-0); }
.plan__desc { font-size: 13.5px; line-height: 1.55; color: var(--text-1); margin: 0; }

.plan__price {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  margin: 8px 0 6px;
}
.plan__amount { font-size: 36px; font-weight: 800; color: var(--text-0); letter-spacing: -0.02em; line-height: 1.1; }
.plan--accent .plan__amount { color: var(--lime); }
.plan__unit { font-size: 14px; color: var(--text-1); font-weight: 500; }
.plan__note { font-size: 12.5px; color: var(--text-2, var(--text-1)); margin: 0 0 18px; min-height: 18px; }

.plan__list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 9px; }
.plan__list li {
  position: relative; padding-left: 22px;
  font-size: 13.5px; line-height: 1.55; color: var(--text-1);
}
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M4 10.5 8.5 15 16 6' stroke='%23B4FF00' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.plan__cta { margin-top: auto; align-self: stretch; text-align: center; }

/* What is included */
.pricing__incl {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 32px;
  margin-bottom: 22px;
}
.pricing__incl-title { font-size: 18px; font-weight: 700; margin: 0 0 16px; color: var(--text-0); }
.pricing__incl-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px;
}
.pricing__incl-list li {
  position: relative; padding-left: 22px;
  font-size: 14px; line-height: 1.55; color: var(--text-1);
}
.pricing__incl-list li strong { color: var(--text-0); font-weight: 600; }
.pricing__incl-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
}

.pricing__answer {
  font-size: 14px; line-height: 1.65; color: var(--text-1);
  padding: 18px 22px;
  background: rgba(180,255,0,0.04);
  border-left: 3px solid var(--lime);
  border-radius: 10px;
}
.pricing__answer strong { color: var(--text-0); }

@media (max-width: 980px) {
  .pricing__grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing__incl-list { grid-template-columns: 1fr; }
  .plan__amount { font-size: 32px; }
}
