/* ADfollowers — публичный лендинг.
   Токены совпадают с приложением (app/lib/ui/theme.dart) и генератором ассетов
   (app/tool/gen_assets.py): цвет, радиусы и ритм меняются в одном месте. */

:root {
  --brand-a: #ff6a39;
  --brand-c: #ffa53d;
  --brand-b: #22c55e;
  --warn: #ffb547;
  --danger: #ff5c7a;

  --bg: #06070b;
  --card: #0f131d;
  --raised: #171c2a;
  --ink: #edf1fa;
  --ink-2: #98a2bd;
  --ink-3: #626c87;
  --hair: rgba(255, 255, 255, 0.08);
  --hair-strong: rgba(255, 255, 255, 0.15);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --glow: 0 0 40px rgba(255, 106, 57, 0.35);
  --grain-opacity: 0.35;

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --gutter: clamp(16px, 4vw, 28px);
  --maxw: 1180px;
}

/* Светлая тема (по умолчанию): те же фирменные цвета, но зелёный темнее — иначе не читается на белом. */
[data-theme='light'] {
  --brand-b: #16a34a;
  --bg: #f6f7fb;
  --card: #ffffff;
  --raised: #f1f3f9;
  --ink: #0d1120;
  --ink-2: #4c5568;
  --ink-3: #7a8399;
  --hair: rgba(13, 17, 32, 0.1);
  --hair-strong: rgba(13, 17, 32, 0.18);
  --shadow: 0 16px 44px rgba(18, 24, 48, 0.1);
  --glow: 0 0 40px rgba(255, 106, 57, 0.25);
  --grain-opacity: 0.12;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, 'Noto Sans Armenian', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(100% - var(--gutter) * 2, var(--maxw)); margin-inline: auto; }

h1, h2, h3 { margin: 0; letter-spacing: -0.03em; line-height: 1.1; font-weight: 800; }
h1 { font-size: clamp(34px, 6vw, 62px); }
h2 { font-size: clamp(26px, 4vw, 42px); }
h3 { font-size: clamp(17px, 2vw, 21px); letter-spacing: -0.02em; }
p { margin: 0; }

.grad-text {
  background: linear-gradient(100deg, var(--brand-a), var(--brand-c) 45%, var(--brand-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: var(--ink-2); }
.small { font-size: 13.5px; }
.tiny { font-size: 12px; color: var(--ink-3); }

/* ---------------------------------------------------------------- фон */

.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}
.aurora .b1 { width: 52vw; height: 52vw; left: -12vw; top: -14vw; background: var(--brand-a); animation: drift 24s ease-in-out infinite; }
.aurora .b2 { width: 40vw; height: 40vw; right: -10vw; top: 22vh; background: var(--brand-c); opacity: 0.38; animation: drift 30s ease-in-out infinite reverse; }
.aurora .b3 { width: 46vw; height: 46vw; left: 40vw; bottom: -18vw; background: var(--brand-b); opacity: 0.3; animation: drift 27s ease-in-out infinite; }
[data-theme='light'] .aurora span { opacity: 0.22; filter: blur(110px); }

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4vw, 5vh, 0) scale(1.1); }
}

/* Плёночное зерно поверх фона — убирает банды на больших градиентах. */
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('assets/grain.png');
  opacity: var(--grain-opacity);
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ---------------------------------------------------------------- шапка */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* На notch-устройствах и особенно в fullscreen-режиме Telegram Mini App контент
     рисуется под системной строкой — без этого отступа шапка наезжает на неё. */
  padding-top: env(safe-area-inset-top, 0px);
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
header.stuck { border-bottom-color: var(--hair); }
header .bar { display: flex; align-items: center; gap: 14px; height: 68px; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: -0.03em; }
.logo img { width: 32px; height: 32px; }

nav.links { display: flex; gap: 4px; margin-inline: auto; }
nav.links a {
  padding: 8px 13px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 0.2s, color 0.2s;
}
nav.links a:hover { background: var(--raised); color: var(--ink); }

.icon-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 99px;
  border: 1px solid var(--hair);
  background: var(--card);
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.icon-btn:hover { border-color: var(--hair-strong); color: var(--ink); transform: translateY(-1px); }
.icon-btn svg { width: 18px; height: 18px; }
.sun { display: none; }
[data-theme='light'] .sun { display: block; }
[data-theme='light'] .moon { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font: inherit;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s, box-shadow 0.25s, background 0.2s, border-color 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: linear-gradient(100deg, var(--brand-a), var(--brand-b)); color: #fff; box-shadow: 0 6px 20px rgba(124, 92, 255, 0.28); }
.btn-primary:hover { box-shadow: 0 10px 32px rgba(124, 92, 255, 0.45); transform: translateY(-2px); }
.btn-ghost { background: var(--card); border-color: var(--hair); color: var(--ink); }
.btn-ghost:hover { border-color: var(--hair-strong); transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ---------------------------------------------------------------- секции */

section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.head { max-width: 680px; margin-bottom: clamp(32px, 4vw, 52px); }
.head h2 { margin-bottom: 14px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 99px;
  border: 1px solid var(--hair);
  background: var(--card);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-b); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-b) 25%, transparent); }

.card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 24px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--hair-strong); box-shadow: var(--shadow); }

.grid { display: grid; gap: 16px; }
.g3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.g2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: color-mix(in srgb, var(--brand-a) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-a) 22%, transparent);
  color: var(--brand-a);
}
.ico svg { width: 21px; height: 21px; }
.ico.mint { background: color-mix(in srgb, var(--brand-b) 14%, transparent); border-color: color-mix(in srgb, var(--brand-b) 22%, transparent); color: var(--brand-b); }
.ico.blue { background: color-mix(in srgb, var(--brand-c) 14%, transparent); border-color: color-mix(in srgb, var(--brand-c) 22%, transparent); color: var(--brand-c); }
.ico.amber { background: color-mix(in srgb, var(--warn) 14%, transparent); border-color: color-mix(in srgb, var(--warn) 22%, transparent); color: var(--warn); }

/* ---------------------------------------------------------------- появление при скролле */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .aurora span { animation: none; }
  .float { animation: none !important; }
}

/* ---------------------------------------------------------------- герой */

.hero { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 90px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: 20px; }
.hero .lede { font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-2); max-width: 540px; margin-bottom: 30px; }
.hero .cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }

.badges { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-2); }
.badge svg { width: 16px; height: 16px; color: var(--brand-b); flex: none; }

.hero-art { position: relative; }
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------------------------------------------------------------- калькулятор */

.calc { padding: 22px; }
.calc .row { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.calc label { font-size: 12.5px; font-weight: 600; color: var(--ink-3); display: block; margin-bottom: 7px; }

.seg { display: inline-flex; padding: 3px; gap: 3px; background: var(--raised); border: 1px solid var(--hair); border-radius: 12px; }
.seg button {
  padding: 7px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.seg button[aria-pressed='true'] { background: var(--brand-a); color: #fff; }

.field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: var(--raised);
  border: 1px solid var(--hair);
  border-radius: var(--r-sm);
  transition: border-color 0.2s;
}
.field:focus-within { border-color: var(--brand-a); }
.field input {
  flex: 1;
  min-width: 0;
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 19px;
  font-weight: 700;
  outline: none;
}
.field .cur { font-size: 14px; font-weight: 700; color: var(--ink-3); }

.plat-pick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.plat-pick button {
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 11px 6px;
  border-radius: 12px;
  border: 1px solid var(--hair);
  background: var(--raised);
  color: var(--ink-2);
  font: inherit;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.plat-pick button svg { width: 20px; height: 20px; }
.plat-pick button:hover { transform: translateY(-2px); }
.plat-pick button[aria-pressed='true'] { border-color: var(--brand-a); background: color-mix(in srgb, var(--brand-a) 12%, transparent); color: var(--ink); }

.calc-out { margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--hair); display: grid; gap: 12px; }
.calc-out .line { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.calc-out .big { font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -0.03em; }

/* ---------------------------------------------------------------- цифры */

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.stat .n { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }

/* ---------------------------------------------------------------- как это работает (скролл) */

.scrub { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: start; }
@media (max-width: 940px) { .scrub { grid-template-columns: 1fr; } }

.scrub-steps { display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--hair);
  background: var(--card);
  opacity: 0.45;
  transform: scale(0.985);
  transition: opacity 0.4s, transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.step.active { opacity: 1; transform: none; border-color: color-mix(in srgb, var(--brand-a) 45%, transparent); box-shadow: var(--shadow); }
.step .num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--raised);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink-3);
  transition: background 0.4s, color 0.4s;
}
.step.active .num { background: linear-gradient(120deg, var(--brand-a), var(--brand-b)); color: #fff; }

.scrub-visual { position: sticky; top: 110px; }
.scrub-visual .frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  border: 1px solid var(--hair);
  overflow: hidden;
  background: var(--raised);
}
.scrub-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.6s, transform 1.2s;
}
.scrub-visual img.on { opacity: 1; transform: scale(1); }
.progress-line { height: 3px; border-radius: 99px; background: var(--hair); margin-top: 18px; overflow: hidden; }
.progress-line i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--brand-a), var(--brand-b)); transition: width 0.2s linear; }

/* ---------------------------------------------------------------- цены */

.price-card { display: grid; gap: 4px; }
.price-card .p { font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; letter-spacing: -0.03em; }
.price-card .head-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.price-card .head-row svg { width: 24px; height: 24px; }
.feat { display: grid; gap: 9px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--hair); }
.feat li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); }
.feat svg { width: 15px; height: 15px; color: var(--brand-b); flex: none; margin-top: 3px; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------- сравнение */

.compare { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.compare th, .compare td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--hair); }
.compare thead th { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-3); font-weight: 700; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare .us { background: color-mix(in srgb, var(--brand-b) 7%, transparent); font-weight: 700; }
.compare .yes { color: var(--brand-b); font-weight: 700; }
.compare .no { color: var(--ink-3); }
.table-wrap { overflow-x: auto; border: 1px solid var(--hair); border-radius: var(--r-md); background: var(--card); }

/* ---------------------------------------------------------------- отзывы */

.rating-hero { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 30px; }
.rating-hero .score { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 17px; height: 17px; color: var(--warn); }
.stars svg.off { color: var(--hair-strong); }

.review { display: grid; gap: 12px; }
.review .who { display: flex; align-items: center; gap: 11px; }
.review .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  flex: none;
}
.review q { font-style: normal; quotes: none; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }

.placeholder-note {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px dashed var(--warn);
  background: color-mix(in srgb, var(--warn) 9%, transparent);
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.placeholder-note svg { width: 17px; height: 17px; color: var(--warn); flex: none; margin-top: 2px; }

/* ---------------------------------------------------------------- гайд */

.tabs { display: inline-flex; padding: 4px; gap: 4px; background: var(--raised); border: 1px solid var(--hair); border-radius: 14px; margin-bottom: 26px; }
.tabs button {
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.tabs button[aria-selected='true'] { background: var(--card); color: var(--ink); box-shadow: var(--shadow); }
.guide-panel[hidden] { display: none; }

.guide-step { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding-bottom: 26px; position: relative; }
.guide-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--hair-strong), transparent);
}
.guide-step .bullet {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  background: var(--card);
  border: 1px solid var(--hair);
  color: var(--brand-a);
  z-index: 1;
}

/* ---------------------------------------------------------------- FAQ */

details {
  border: 1px solid var(--hair);
  border-radius: var(--r-sm);
  background: var(--card);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
details[open] { border-color: var(--hair-strong); }
summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 21px; font-weight: 400; color: var(--ink-3); transition: transform 0.25s; }
details[open] summary::after { transform: rotate(45deg); }
details .body { padding: 0 20px 18px; color: var(--ink-2); font-size: 14.5px; }

/* ---------------------------------------------------------------- финал и футер */

.final {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: clamp(36px, 6vw, 68px);
  text-align: center;
  background: linear-gradient(120deg, var(--brand-a), var(--brand-c) 50%, var(--brand-b));
  color: #fff;
  box-shadow: 0 24px 60px rgba(124, 92, 255, 0.3);
}
.final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/grain.png');
  opacity: 0.25;
  mix-blend-mode: overlay;
}
.final > * { position: relative; z-index: 1; }
.final h2 { margin-bottom: 14px; }
.final p { color: rgba(255, 255, 255, 0.88); max-width: 520px; margin: 0 auto 26px; }
.final .btn-ghost { background: #fff; color: #1b1240; border-color: transparent; }

footer { border-top: 1px solid var(--hair); padding: 44px 0 56px; }
.foot { display: flex; gap: 30px; justify-content: space-between; flex-wrap: wrap; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a { font-size: 14px; color: var(--ink-2); transition: color 0.2s; }
.foot-links a:hover { color: var(--ink); }

.disclaimer { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--hair); font-size: 12px; color: var(--ink-3); line-height: 1.6; }

@media (max-width: 760px) {
  nav.links { display: none; }
  .plat-pick { grid-template-columns: repeat(2, 1fr); }
  .scrub-visual { position: static; }
}

/* ---------------------------------------------------------------- фото и сравнение */

.hero-photo {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow);
  margin-bottom: -46px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* Три колонки сравнения: у нашей — фирменная рамка и подсветка. */
.vs .card { display: flex; flex-direction: column; }
.vs-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 99px;
  background: var(--raised);
  border: 1px solid var(--hair);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.vs-tag.win { background: color-mix(in srgb, var(--brand-b) 16%, transparent); border-color: color-mix(in srgb, var(--brand-b) 40%, transparent); color: var(--brand-b); }
.vs-n { font-size: clamp(32px, 4.5vw, 44px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; }
.vs .winner { border-color: color-mix(in srgb, var(--brand-b) 45%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--brand-b) 25%, transparent), var(--shadow); }
.feat li.bad { color: var(--ink-3); }
.feat li.bad span { color: var(--danger); font-weight: 700; width: 15px; flex: none; text-align: center; }

/* Разбивка цены одной полосой — видно пропорции без чтения цифр. */
.breakdown .bd-bar { display: flex; height: 16px; border-radius: 99px; overflow: hidden; gap: 2px; }
.bd-bar span { display: block; }
.bd-a { background: linear-gradient(90deg, var(--brand-a), var(--brand-c)); }
.bd-b { background: var(--brand-b); }
.bd-c { background: var(--hair-strong); }
.bd-key { display: flex; align-items: center; gap: 9px; font-size: 14px; }
.bd-key i { width: 12px; height: 12px; border-radius: 4px; flex: none; }

@media (max-width: 940px) { .hero-photo { margin-bottom: 18px; } }
