/* ============================================================
   NevaAI — landing styles. Brand tokens (07_BRAND), mobile-first.
   Conversion-optimized: single primary CTA, trust, low friction.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* brand palette */
  --c-primary:   #1B4DCC;  /* Нева blue        */
  --c-accent:    #22C3E6;  /* cyan, поток      */
  --c-dark:      #0A1A3F;  /* navy text/hero   */
  --c-white:     #FFFFFF;
  --c-section:   #F4F7FB;  /* section bg/cards */

  /* derived */
  --c-ink:       #0A1A3F;
  --c-muted:     #45546F;  /* secondary text (darkened for mobile contrast) */
  --c-border:    #E2E8F2;
  --c-danger:    #E5484D;
  --c-success:   #16A34A;
  --grad:        linear-gradient(135deg, #1B4DCC 0%, #22C3E6 100%);
  --grad-soft:   linear-gradient(135deg, rgba(27,77,204,.08), rgba(34,195,230,.08));

  /* type */
  --f-head: "Manrope", "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Inter", "Golos Text", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* spacing / radius / shadow */
  --maxw: 1120px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --sh-sm: 0 2px 8px rgba(10,26,63,.06);
  --sh-md: 0 8px 28px rgba(10,26,63,.10);
  --sh-lg: 0 20px 60px rgba(27,77,204,.22);
  --ring: 0 0 0 3px rgba(34,195,230,.45);
  --t: 200ms cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--f-head); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
a { color: var(--c-primary); text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section--alt { background: var(--c-section); }
.eyebrow {
  display: inline-block; font-family: var(--f-head); font-weight: 700;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-primary); margin-bottom: 12px;
}
.h2 { font-size: clamp(26px, 6vw, 40px); font-weight: 800; }
.lead { font-size: clamp(17px, 2.4vw, 20px); color: var(--c-muted); }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-head); font-weight: 700; font-size: 16px; line-height: 1;
  padding: 16px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  text-align: center; white-space: nowrap; user-select: none;
}
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn--primary { background: var(--grad); background-origin: border-box; color: #fff; box-shadow: var(--sh-md); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn--primary:active { transform: translateY(0); }
.btn--secondary { background: #fff; color: var(--c-primary); border-color: var(--c-border); }
.btn--secondary:hover { border-color: var(--c-accent); color: var(--c-dark); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.2); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 30px; font-size: 17px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-head); font-weight: 800; font-size: 20px; color: var(--c-dark); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand b { color: var(--c-dark); }
.brand span { color: var(--c-accent); }
.nav { display: none; gap: 28px; }
.nav a { color: var(--c-muted); font-weight: 600; font-size: 15px; transition: color var(--t); }
.nav a:hover { color: var(--c-primary); }
.header .btn { padding: 11px 20px; font-size: 15px; }
.header__cta { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; background: var(--c-dark); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(34,195,230,.35), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(27,77,204,.5), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; padding-top: 52px; padding-bottom: 64px; display: grid; gap: 36px; }
.hero h1 { font-size: clamp(31px, 8.2vw, 56px); line-height: 1.18; font-weight: 800; color: #fff; }
.hero h1 .grad-text { background: linear-gradient(120deg,#7FE6FF,#22C3E6 60%,#8FB4FF); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.sub { font-size: clamp(17px, 2.7vw, 21px); line-height: 1.6; color: #DCE6FA; max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }

/* v2: product-clarity badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-head); font-weight: 700; font-size: 13px; letter-spacing: .02em;
  color: #C9F4FF; background: rgba(34,195,230,.12);
  border: 1px solid rgba(34,195,230,.38);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #2BD46A; flex: none;
  box-shadow: 0 0 0 0 rgba(43,212,106,.6); animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(43,212,106,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(43,212,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,212,106,0); }
}

/* v2: loss calculator (#calc) */
.calc { display: grid; gap: 18px; margin-top: 28px; }
.calc__fields { background:#fff; border:1px solid var(--c-border); border-radius:var(--r-lg); padding:24px; box-shadow:var(--sh-sm); display:flex; flex-direction:column; gap:18px; }
.calc__row { display:flex; flex-direction:column; gap:8px; }
.calc__row label { font-weight:600; font-size:14px; color:var(--c-dark); display:flex; justify-content:space-between; align-items:center; gap:10px; }
.calc__row output { font-family:var(--f-head); font-weight:800; color:var(--c-primary); font-size:16px; }
.calc__row input[type="number"] { width:100%; font-family:var(--f-body); font-size:18px; font-weight:600; padding:13px 15px; border:1.5px solid var(--c-border); border-radius:var(--r-sm); color:var(--c-ink); background:#fff; }
.calc__row input[type="number"]:focus { outline:none; border-color:var(--c-accent); box-shadow:var(--ring); }
.calc__row input[type="range"] { width:100%; accent-color:var(--c-primary); height:28px; }
.calc__result { position:relative; overflow:hidden; background:var(--c-dark); color:#fff; border-radius:var(--r-lg); padding:28px 24px; text-align:center; box-shadow:var(--sh-md); }
.calc__result::before { content:""; position:absolute; inset:0; background:radial-gradient(600px 300px at 80% -20%, rgba(34,195,230,.35), transparent 60%); pointer-events:none; }
.calc__label { position:relative; margin:0 0 6px; color:#9FB2D8; font-size:14px; }
.calc__big { position:relative; margin:0; font-family:var(--f-head); font-weight:800; line-height:1.05; font-size:clamp(38px, 12vw, 62px); }
.calc__big #q-amount { background:linear-gradient(120deg,#7FE6FF,#22C3E6 55%,#8FB4FF); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.calc__per { font-size:22px; color:#C8D5F0; }
.calc__sub { position:relative; margin:6px 0 18px; color:#C8D5F0; font-size:15px; }
.calc__result .btn { position:relative; }
@media (min-width:720px){ .calc { grid-template-columns:1fr 1fr; align-items:stretch; } }

/* v2: animated hero chat feed */
.chatcard__feed { min-height: 296px; }
.msg.msg--in { animation: msgIn .3s ease both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.typing-bubble { padding: 14px 16px; }
.typing { display: inline-flex; align-items: center; gap: 5px; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: #fff; opacity: .55; animation: typingBlink 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .18s; }
.typing span:nth-child(3) { animation-delay: .36s; }
@keyframes typingBlink { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }

/* v2: honest social-proof band */
.proofband { background: var(--c-section); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding: 22px 0; }
.proofband__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; }
.proof { display: flex; align-items: center; gap: 12px; }
.proof svg { width: 30px; height: 30px; flex: none; color: var(--c-primary); }
.proof b { display: block; font-family: var(--f-head); font-weight: 800; font-size: 18px; color: var(--c-dark); line-height: 1.1; }
.proof span { font-size: 13px; color: var(--c-muted); }
@media (min-width: 760px) { .proofband__row { grid-template-columns: repeat(4, 1fr); } }

/* v2: setup steps */
.steps { display: grid; gap: 16px; margin: 30px auto 0; max-width: 760px; padding: 0; list-style: none; }
.step { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 20px 22px; box-shadow: var(--sh-sm); }
.step__n { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; font-family: var(--f-head); font-weight: 800; font-size: 18px; }
.step h3 { font-size: 18px; font-weight: 800; margin: 2px 0 4px; }
.step p { margin: 0; color: var(--c-muted); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } .step { flex-direction: column; } }

/* v2: scroll reveal + soft CTA glow */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes ctaGlow { 0%, 100% { box-shadow: var(--sh-md); } 50% { box-shadow: 0 10px 34px rgba(34, 195, 230, .45); } }
.hero__cta .btn--primary { animation: ctaGlow 2.8s ease-in-out infinite; }

/* chat mock in hero */
.chatcard {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg); padding: 18px; box-shadow: var(--sh-lg);
  backdrop-filter: blur(6px);
}
.chatcard__head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
.chatcard__dot { width: 10px; height: 10px; border-radius: 50%; background: #2BD46A; box-shadow: 0 0 0 4px rgba(43,212,106,.18); }
.chatcard__title { font-family: var(--f-head); font-weight: 700; font-size: 14px; color: #fff; }
.chatcard__title small { display: block; font-weight: 500; color: #9FB2D8; font-size: 12px; }
.msg { max-width: 82%; padding: 11px 15px; border-radius: 14px; font-size: 14.5px; line-height: 1.5; margin-bottom: 10px; }
.msg--client { background: #fff; color: var(--c-ink); border-bottom-right-radius: 4px; margin-left: auto; }
.msg--ai { background: var(--grad); color: #fff; border-bottom-left-radius: 4px; }
.msg--ai b { font-weight: 700; }

/* ---------- Pain ---------- */
.pain__grid { display: grid; gap: 14px; margin-top: 26px; }
.pain__item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--c-border); border-left: 4px solid var(--c-danger);
  border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--sh-sm);
}
.pain__x { flex: none; width: 26px; height: 26px; color: var(--c-danger); }
.pain__item p { margin: 0; font-weight: 500; }
.pain__sum {
  margin-top: 26px; text-align: center; font-family: var(--f-head); font-weight: 800;
  font-size: clamp(20px, 4.4vw, 28px); color: var(--c-dark);
}
.pain__sum b { color: var(--c-danger); }

/* ---------- How (solution) ---------- */
.how__grid { display: grid; gap: 18px; margin-top: 30px; }
.how__card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: 28px 24px; box-shadow: var(--sh-sm); transition: transform var(--t), box-shadow var(--t);
}
.how__card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.how__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--c-primary); margin-bottom: 16px;
}
.how__icon svg { width: 30px; height: 30px; }
.how__card h3 { font-size: 20px; font-weight: 800; }
.how__card p { margin: 0; color: var(--c-muted); }

/* ---------- Demo dialog ---------- */
.demo__wrap { max-width: 620px; margin: 30px auto 0; }
.demo__phone {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); overflow: hidden;
}
.demo__bar { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: var(--c-dark); color: #fff; }
.demo__bar .brand__mark { width: 26px; height: 26px; }
.demo__bar b { font-family: var(--f-head); font-size: 15px; }
.demo__bar small { color: #2BD46A; font-size: 12px; display: flex; align-items: center; gap: 6px; }
.demo__bar small::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2BD46A; }
.demo__body { padding: 20px 18px; background: var(--c-section); display: flex; flex-direction: column; gap: 12px; }
.bubble { max-width: 84%; padding: 11px 15px; border-radius: 16px; font-size: 15px; line-height: 1.5; box-shadow: var(--sh-sm); }
.bubble--client { background: #fff; color: var(--c-ink); align-self: flex-end; border-bottom-right-radius: 5px; }
.bubble--ai { background: var(--grad); color: #fff; align-self: flex-start; border-bottom-left-radius: 5px; }
.bubble small { display: block; font-size: 11px; opacity: .7; margin-bottom: 3px; font-weight: 600; }

/* ---------- Pricing ---------- */
.price__grid { display: grid; gap: 18px; margin-top: 30px; }
.price__card {
  position: relative; background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
}
.price__card--featured { border: 2px solid var(--c-primary); box-shadow: var(--sh-md); }
.price__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-family: var(--f-head); font-weight: 700;
  font-size: 12px; letter-spacing: .04em; padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.price__name { font-family: var(--f-head); font-weight: 700; font-size: 18px; color: var(--c-muted); }
.price__amount { font-family: var(--f-head); font-weight: 800; font-size: 34px; color: var(--c-dark); margin: 8px 0 2px; }
.price__amount span { font-size: 16px; font-weight: 600; color: var(--c-muted); }
.price__feat { color: var(--c-muted); margin: 14px 0 22px; font-size: 16px; }
.price__card .btn { margin-top: auto; }

/* ---------- Form ---------- */
.form__wrap { max-width: 560px; margin: 28px auto 0; background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--sh-md); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--c-dark); }
.field input, .field select {
  width: 100%; font-family: var(--f-body); font-size: 16px; color: var(--c-ink);
  padding: 14px 16px; border: 1.5px solid var(--c-border); border-radius: var(--r-sm);
  background: #fff; transition: border-color var(--t), box-shadow var(--t); appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235A6B8C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--c-accent); box-shadow: var(--ring); }
.field input::placeholder { color: #9AA7C0; }
/* honeypot — hidden from humans, visible to dumb bots */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form__note { font-size: 13.5px; line-height: 1.5; color: var(--c-muted); text-align: center; margin: 14px 0 0; }
.form__err { color: var(--c-danger); font-size: 14px; margin: 0 0 14px; display: none; }
.form__err.show { display: block; }

/* success state */
.form__success, .popup__success { display: none; text-align: center; padding: 18px 6px; }
.is-done .form__fields { display: none; }
.is-done .form__success { display: block; }
.success__icon { width: 64px; height: 64px; margin: 0 auto 16px; color: var(--c-success); }
.success h3 { font-size: 22px; }

/* ---------- Popup / modal ---------- */
.popup { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.popup.open { display: flex; }
.popup__overlay { position: absolute; inset: 0; background: rgba(10,26,63,.62); backdrop-filter: blur(3px); animation: fade var(--t); }
.popup__box {
  position: relative; width: 100%; max-width: 440px; background: #fff; border-radius: var(--r-lg);
  padding: 34px 28px 28px; box-shadow: var(--sh-lg); animation: pop var(--t);
}
.popup__close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: none; background: var(--c-section); border-radius: 50%; cursor: pointer; color: var(--c-muted); display: grid; place-items: center; transition: background var(--t), color var(--t); }
.popup__close:hover { background: #E7ECF5; color: var(--c-dark); }
.popup__close:focus-visible { outline: none; box-shadow: var(--ring); }
.popup h3 { font-size: 24px; font-weight: 800; }
.popup p { color: var(--c-muted); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }

/* ---------- Sticky mobile CTA ---------- */
.stickycta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--c-border); box-shadow: 0 -6px 24px rgba(10,26,63,.08);
}
.stickycta .btn { width: 100%; }

/* ---------- Footer ---------- */
.footer { background: var(--c-dark); color: #9FB2D8; padding: 40px 0 96px; }
.footer__inner { display: grid; gap: 18px; }
.footer .brand b, .footer .brand { color: #fff; }
.footer p { margin: 0; font-size: 14px; line-height: 1.7; }
.footer a { color: #C8D5F0; }
.footer__legal { font-size: 13px; color: #6E83AE; }

/* ---------- Utilities ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ============================================================
   Responsive — tablet ≥720, desktop ≥1000
   ============================================================ */
@media (min-width: 720px) {
  .section { padding: 76px 0; }
  .pain__grid { grid-template-columns: 1fr 1fr; }
  .how__grid { grid-template-columns: repeat(3, 1fr); }
  .price__grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .footer__inner { grid-template-columns: 1fr auto; align-items: center; }
  .footer { padding-bottom: 40px; }
}

@media (min-width: 1000px) {
  body { font-size: 18px; }
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; padding-top: 76px; padding-bottom: 88px; }
  .hero__visual { justify-self: end; width: 100%; max-width: 420px; }
  .section--hero-pad { padding-top: 84px; }
  /* sticky mobile CTA only on small screens */
  .stickycta { display: none; }
  .footer { padding-bottom: 44px; }
}

/* desktop: hide sticky cta; mobile shows it. (default visible) */
@media (max-width: 999px) {
  body { padding-bottom: 76px; } /* room for sticky cta */
}

/* ============================================================
   HOME (/) — nav dropdown, «не конструктор», bento ниш, каналы,
   ранний доступ. Additive: спец-лендинги (/windows) не используют
   эти классы и не затрагиваются.
   ============================================================ */

/* ---------- Header: дропдаун «Ниши» (десктоп; nav скрыт <1000) ---------- */
.nav { align-items: center; }
.nav__drop { position: relative; display: flex; align-items: center; }
.nav__drop-btn {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--c-muted); font-weight: 600; font-size: 15px; cursor: pointer;
  transition: color var(--t);
}
.nav__drop-btn:hover, .nav__drop:focus-within .nav__drop-btn { color: var(--c-primary); }
.nav__drop-btn svg { transition: transform var(--t); }
.nav__drop:hover .nav__drop-btn svg, .nav__drop:focus-within .nav__drop-btn svg { transform: rotate(180deg); }
.nav__drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 244px; background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-md); box-shadow: var(--sh-md); padding: 8px;
  opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t); z-index: 60;
}
.nav__drop:hover .nav__drop-menu, .nav__drop:focus-within .nav__drop-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(6px);
}
.nav__drop-menu a, .nav__drop-menu .nav__drop-soon {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 12px; border-radius: 8px; font-size: 14.5px; font-weight: 600; color: var(--c-dark);
}
.nav__drop-menu a:hover { background: var(--c-section); color: var(--c-primary); }
.nav__drop-soon { color: var(--c-muted); cursor: default; }
.nav__drop-soon i {
  font-style: normal; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--c-primary); background: var(--grad-soft); padding: 2px 8px; border-radius: 999px;
}

/* ---------- Отстройка «не конструктор» (#edge) ---------- */
.edge { padding: 56px 0; }
.edge__grid { display: grid; gap: 18px; margin-top: 30px; }
.edge__card {
  background: #fff; border: 1px solid var(--c-border); border-left: 4px solid var(--c-accent);
  border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--sh-sm);
}
.edge__ic { width: 34px; height: 34px; color: var(--c-primary); margin-bottom: 12px; }
.edge__card h3 { font-size: 18px; font-weight: 800; margin: 0 0 6px; }
.edge__card p { margin: 0; color: var(--c-muted); font-size: 15px; }

/* ---------- Витрина ниш — bento (#niches) ---------- */
.bento { display: grid; gap: 16px; margin-top: 30px; grid-template-columns: 1fr; }
.bento__card {
  position: relative; display: flex; flex-direction: column; gap: 4px;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--sh-sm); min-height: 168px;
}
.bento__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.bento__ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--c-primary); flex: none;
}
.bento__ic svg { width: 26px; height: 26px; }
.bento__card h3 { font-size: 19px; font-weight: 800; margin: 2px 0; }
.bento__card p { margin: 0; color: var(--c-muted); font-size: 15px; }
.bento__live, .bento__soon {
  font-family: var(--f-head); font-weight: 700; font-size: 11px; letter-spacing: .04em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.bento__live { color: #fff; background: var(--c-success); }
.bento__soon { color: var(--c-muted); background: var(--c-section); border: 1px solid var(--c-border); }
.bento__more { margin-top: auto; padding-top: 12px; color: var(--c-primary); font-family: var(--f-head); font-weight: 700; font-size: 15px; }
/* активная карточка = ссылка */
.bento__card--active { text-decoration: none; color: inherit; border: 1.5px solid var(--c-primary); transition: transform var(--t), box-shadow var(--t); }
.bento__card--active:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.bento__card--active:focus-visible { outline: none; box-shadow: var(--ring); }
.bento__card--feature { background: linear-gradient(135deg, rgba(27,77,204,.07), rgba(34,195,230,.07)); }
.bento__card--feature h3 { font-size: clamp(20px, 3.2vw, 25px); }
.bento__card--feature p { font-size: 16px; }
/* «скоро» = заглушки */
.bento__card--soon { background: var(--c-section); }
.bento__card--soon h3 { color: var(--c-dark); }
.bento__card--soon .bento__ic { opacity: .55; background: #fff; }
.bento__note { margin-top: 22px; color: var(--c-muted); font-size: 15px; }

@media (min-width: 720px) {
  .edge { padding: 76px 0; }
  .edge__grid { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--feature { grid-column: 1 / -1; }
}
@media (min-width: 1000px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bento__card--feature { grid-column: span 2; }
}

/* ---------- Каналы + CRM — слайдер (marquee, как Jivo) ---------- */
.channels {
  overflow: hidden; margin: 30px 0 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.channels__track { display: flex; gap: 12px; width: max-content; animation: marquee 28s linear infinite; }
.channels:hover .channels__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.chip {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: #fff; border: 1px solid var(--c-border); border-radius: 999px;
  padding: 11px 18px; font-family: var(--f-head); font-weight: 700; font-size: 15px;
  color: var(--c-dark); box-shadow: var(--sh-sm);
}
.chip__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); flex: none; }
.chip--crm { color: var(--c-primary); }
.chip--crm svg { width: 18px; height: 18px; color: var(--c-success); flex: none; }
.channels__crm-label { margin: 26px 0 14px; color: var(--c-muted); font-size: 14px; font-weight: 600; }
.channels__crm { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ---------- Ранний доступ (честный соцпруф) ---------- */
.early {
  display: grid; gap: 18px; align-items: center; max-width: 840px; margin: 0 auto;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--sh-sm); text-align: center;
}
.early__ic { width: 54px; height: 54px; color: var(--c-accent); margin: 0 auto; }
.early__h2 { font-size: clamp(22px, 4.6vw, 30px); font-weight: 800; margin: 0 0 8px; }
.early p { color: var(--c-muted); margin: 0 0 18px; }
@media (min-width: 760px) {
  .early { grid-template-columns: auto 1fr; text-align: left; gap: 28px; padding: 36px 40px; }
  .early__ic { margin: 0; }
}

/* ---------- inline link-кнопка ---------- */
.linklike {
  background: none; border: none; padding: 0; font: inherit; cursor: pointer;
  color: var(--c-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px;
}
.linklike:hover { color: var(--c-dark); }

/* ---------- Motion / a11y ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  /* каналы: статичная обёртка без бегущей строки, дубли скрыты */
  .channels { -webkit-mask-image: none; mask-image: none; }
  .channels__track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .channels__track [aria-hidden="true"] { display: none; }
}
