/* ═══════════════════════════════════════════
   ТОКЕНЫ
═══════════════════════════════════════════ */
:root {
  --coral: #E8524E;
  --coral-dk: #C53D39;
  --coral-tint: #FBEEEC;
  --coral-line: #F0CDCB;
  --coral-soft: rgba(232,82,78,.08);
  --ink: #0E0E10;
  --ink-2: #1B1B1E;
  --graphite: #2A2A2C;
  --steel: #6B6B70;
  --ash: #A4A4A8;
  --paper: #FAF7F0;
  --paper-2: #F1ECDF;
  --line: #E5DFCF;
  --line-2: #CFC7B0;
  --white: #FFFFFF;
  --fh: 'Montserrat', sans-serif;
  --fb: 'Montserrat', sans-serif;
  --fm: 'JetBrains Mono', monospace;
  --r: 4px;
  --rl: 8px;
  --mw: 1280px;
  --px: 64px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
::selection { background: var(--coral); color: #fff; }
.w { max-width: var(--mw); margin: 0 auto; padding: 0 var(--px); }

.s-lbl {
  font-family: var(--fm);
  font-size: 11px; font-weight: 500;
  color: var(--coral);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.s-lbl::before { content: ''; width: 20px; height: 1px; background: var(--coral); }
.s-ttl {
  font-family: var(--fh);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 600; letter-spacing: -.6px;
  color: var(--ink); line-height: 1.1;
  margin-bottom: 14px; text-wrap: balance;
}
.s-sub {
  font-size: 16px; color: var(--steel);
  line-height: 1.65; margin-bottom: 36px; max-width: 580px;
}

/* ═══ КНОПКИ ═══ */
.btn {
  font-family: var(--fb); font-weight: 700; font-size: 14px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  border-radius: var(--r); white-space: nowrap; border: none;
  padding: 14px 24px; position: relative; overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .2s;
  isolation: isolate;
}
.btn svg { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.btn:hover svg { transform: translateX(4px); }
.btn-r { background: var(--coral); color: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.12) inset, 0 6px 18px -8px rgba(232,82,78,.5); }
.btn-r::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--coral-dk); transform: translateY(101%);
  transition: transform .35s cubic-bezier(.7,0,.2,1);
}
.btn-r:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(0,0,0,.12) inset, 0 14px 28px -10px rgba(232,82,78,.55); }
.btn-r:hover::before { transform: translateY(0); }
.btn-r.lg { font-size: 15px; padding: 17px 30px; }
.btn-o { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-o::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.7,0,.2,1);
}
.btn-o:hover { color: #fff; border-color: var(--ink); }
.btn-o:hover::before { transform: scaleX(1); }

/* ═══ ШАПКА ═══ */
header {
  position: sticky; top: 0; z-index: 300;
  background: rgba(250,247,240,.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding .25s, background .25s;
}
header.scrolled { background: rgba(250,247,240,.97); }
.h-in {
  max-width: var(--mw); margin: 0 auto;
  padding: 0 var(--px); height: 68px;
  display: flex; align-items: center;
}
.logo {
  font-family: var(--fh); font-size: 19px; font-weight: 700;
  color: var(--ink); letter-spacing: -.5px;
  margin-right: 52px; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
}
.logo b { color: var(--coral); }
.logo .logo-mark {
  width: 22px; height: 22px; border: 1.5px solid var(--ink);
  display: grid; place-items: center; position: relative;
}
.logo .logo-mark::after { content: ''; width: 8px; height: 8px; background: var(--coral); }
nav { display: flex; gap: 32px; flex: 1; }
nav a { font-size: 14px; font-weight: 500; color: var(--steel); position: relative; padding: 6px 0; }
nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--coral);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.7,0,.2,1);
}
nav a:hover { color: var(--ink); }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.h-r { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.h-phone {
  font-family: var(--fm); font-size: 14px; font-weight: 500;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
}
.h-phone:hover { color: var(--coral); }

/* ═══ HERO ═══ */
.hero { background: var(--paper); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px; opacity: .35;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  max-width: var(--mw); margin: 0 auto;
  padding: 72px var(--px) 68px;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 72px; align-items: center; min-height: 560px;
  position: relative; z-index: 1;
}
.h-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line); border-radius: 30px;
  padding: 7px 16px 7px 10px; font-family: var(--fm);
  font-size: 11px; font-weight: 500; color: var(--ink);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 28px; width: fit-content;
}
.pulse-wrap { position: relative; width: 8px; height: 8px; flex-shrink: 0; }
.pulse-dot { position: absolute; inset: 0; background: var(--coral); border-radius: 50%; }
.pulse-ring {
  position: absolute; inset: 0; background: var(--coral); border-radius: 50%;
  animation: ringPulse 2.4s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.8); opacity: 0; }
}
.hero-l h1 {
  font-family: var(--fh); font-size: clamp(34px, 4vw, 60px); font-weight: 600;
  line-height: 1; letter-spacing: -2.5px; color: var(--ink); margin-bottom: 26px;
}
.hero-l h1 em { color: var(--coral); font-style: normal; position: relative; display: inline-block; }
.hero-l h1 em::after {
  content: ''; position: absolute; left: 0; bottom: 4px; right: 0;
  height: 2px; background: var(--coral); transform: scaleX(0); transform-origin: left;
  animation: drawUnderline 1.2s cubic-bezier(.7,0,.2,1) .8s forwards;
}
@keyframes drawUnderline { to { transform: scaleX(1); } }
.hero-sub { font-size: 17px; color: var(--steel); line-height: 1.6; max-width: 460px; margin-bottom: 32px; }
.hero-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.hck { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--ink); }
.hck-dot { width: 18px; height: 18px; flex-shrink: 0; background: var(--ink); border-radius: 50%; display: grid; place-items: center; }
.hck-dot svg { width: 10px; height: 10px; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--rl);
  overflow: hidden; position: relative; transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.hcard::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--rl);
  box-shadow: 0 30px 80px -30px rgba(20,20,25,.25), 0 10px 30px -10px rgba(20,20,25,.1);
  pointer-events: none;
}
.hcard-img {
  position: relative; height: 280px; background: var(--paper-2);
  display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line);
}
.hcard-img::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(14,14,16,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,14,16,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hcard-img .corner { position: absolute; width: 14px; height: 14px; border-color: var(--ink); border-style: solid; }
.hcard-img .corner.tl { top: 14px; left: 14px; border-width: 1.5px 0 0 1.5px; }
.hcard-img .corner.tr { top: 14px; right: 14px; border-width: 1.5px 1.5px 0 0; }
.hcard-img .corner.bl { bottom: 14px; left: 14px; border-width: 0 0 1.5px 1.5px; }
.hcard-img .corner.br { bottom: 14px; right: 14px; border-width: 0 1.5px 1.5px 0; }
.hcard-img-badge {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--coral); color: #fff; font-family: var(--fm);
  font-size: 11px; font-weight: 500; padding: 5px 14px;
  text-transform: uppercase; letter-spacing: 1px;
}
.comp-svg-wrap { position: relative; z-index: 1; }
.comp-svg { display: block; }
.comp-svg .draw { stroke-dasharray: 800; stroke-dashoffset: 800; animation: drawIn 2s cubic-bezier(.4,0,.2,1) .5s forwards; }
.comp-svg .rotor { transform-origin: 70px 70px; animation: rotateSlow 8s linear infinite; }
.comp-svg .fan { transform-origin: 70px 70px; animation: rotateSlow 3s linear infinite; }
.comp-svg .pulse-circle { animation: corePulse 2.2s ease-in-out infinite; transform-origin: 70px 70px; }
@keyframes drawIn { to { stroke-dashoffset: 0; } }
@keyframes rotateSlow { to { transform: rotate(360deg); } }
@keyframes corePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.hcard-body { padding: 26px 28px; }
.hcard-name {
  font-family: var(--fh); font-size: 14px; font-weight: 600;
  color: var(--ink); margin-bottom: 22px; line-height: 1.3;
  display: flex; align-items: baseline; gap: 10px;
}
.hcard-name .sku { font-family: var(--fm); font-weight: 500; font-size: 10px; color: var(--ash); letter-spacing: 1px; }
.hcard-params { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 24px; border-top: 1px solid var(--line); }
.hcp { padding: 12px 0; border-bottom: 1px solid var(--line); }
.hcp:nth-child(odd) { padding-right: 12px; border-right: 1px solid var(--line); }
.hcp:nth-child(even) { padding-left: 12px; }
.hcp-k { font-family: var(--fm); font-size: 10px; color: var(--ash); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.hcp-v { font-family: var(--fh); font-size: 15px; font-weight: 600; color: var(--ink); }
.hcard-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; padding-top: 6px; }
.hcard-price small { font-family: var(--fm); font-size: 10px; color: var(--ash); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hcard-price strong { font-family: var(--fh); font-size: 24px; font-weight: 600; color: var(--ink); letter-spacing: -.5px; }
.hero-stats { border-top: 1px solid var(--line); background: var(--paper); position: relative; z-index: 2; }
.hero-stats-in {
  max-width: var(--mw); margin: 0 auto; padding: 32px var(--px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.hstat { padding: 4px 32px 4px 0; position: relative; }
.hstat:not(:last-child)::after {
  content: ''; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: var(--line);
}
.hstat-v { font-family: var(--fh); font-size: 36px; font-weight: 600; color: var(--ink); line-height: 1; letter-spacing: -1px; display: flex; align-items: baseline; gap: 4px; }
.hstat-v b { color: var(--coral); font-weight: 600; }
.hstat-k { font-family: var(--fm); font-size: 11px; color: var(--steel); text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; }

/* ═══ ПОЧЕМУ HITCOM ═══ */
.why { background: var(--ink); padding: 96px 0; position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.why-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; margin-bottom: 56px; position: relative; z-index: 1; }
.why-head .s-lbl { color: #fff; }
.why-head .s-lbl::before { background: var(--coral); }
.why-head .s-ttl { color: #fff; }
.why-head p { font-size: 15px; color: rgba(255,255,255,.55); max-width: 320px; text-align: right; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.08); border-left: 1px solid rgba(255,255,255,.08); position: relative; z-index: 1; }
.wcard { padding: 36px 28px 32px; border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); position: relative; transition: background .35s; overflow: hidden; }
.wcard::before { content: ''; position: absolute; inset: auto 0 0 0; height: 2px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.7,0,.2,1); }
.wcard:hover { background: var(--ink-2); }
.wcard:hover::before { transform: scaleX(1); }
.wcard:hover .wico { color: var(--coral); border-color: var(--coral); }
.w-num { font-family: var(--fm); font-size: 11px; font-weight: 500; color: rgba(255,255,255,.3); letter-spacing: 2px; margin-bottom: 28px; }
.wico { width: 56px; height: 56px; border: 1.2px solid rgba(255,255,255,.15); display: grid; place-items: center; color: #fff; margin-bottom: 24px; transition: color .3s, border-color .3s, transform .3s; }
.wcard:hover .wico { transform: rotate(-4deg); }
.wico svg { width: 28px; height: 28px; }
.wt { font-family: var(--fh); font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.wd { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ═══ СЕГМЕНТЫ ═══ */
.segs { background: var(--paper); padding: 88px 0; }
.segs-head { text-align: center; margin-bottom: 44px; }
.segs-head .s-lbl { justify-content: center; }
.segs-head .s-lbl::before, .segs-head .s-lbl::after { content: ''; width: 20px; height: 1px; background: var(--coral); }
.segs-head .s-sub { margin: 0 auto; }
.segs-head .s-ttl { margin: 0 auto 14px; max-width: 720px; }
.seg-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  margin: 0 calc(-1 * var(--px)); padding: 6px 0;
}
.seg-track { display: flex; gap: 12px; width: max-content; animation: marquee 38s linear infinite; }
.seg-marquee:hover .seg-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.stab {
  background: var(--white); border: 1px solid var(--line); border-radius: 30px;
  padding: 12px 22px 12px 14px; font-size: 14px; font-weight: 600; color: var(--ink);
  cursor: pointer; display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; transition: all .25s;
}
.stab:hover, .stab.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.stab:hover .stab-ico, .stab.on .stab-ico { background: var(--coral); color: #fff; }
.stab-ico { width: 28px; height: 28px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; color: var(--ink); transition: all .25s; }
.stab-ico svg { width: 14px; height: 14px; }

/* ═══ КВИЗ ═══ */
.quiz { background: var(--paper-2); padding: 96px 0; position: relative; }
.quiz-in { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.qbox { background: var(--white); border: 1px solid var(--line); border-radius: var(--rl); padding: 36px; position: relative; overflow: hidden; box-shadow: 0 20px 50px -30px rgba(20,20,25,.18); }
.qbox::before { content: 'STEP'; position: absolute; top: 18px; right: 24px; font-family: var(--fm); font-size: 10px; font-weight: 500; color: var(--ash); letter-spacing: 2px; }
.qprog { display: flex; gap: 6px; margin-bottom: 32px; }
.qp { height: 2px; flex: 1; background: var(--line); position: relative; overflow: hidden; }
.qp::after { content: ''; position: absolute; inset: 0; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .55s cubic-bezier(.5,0,.2,1); }
.qp.done::after { transform: scaleX(1); }
.qp.cur::after { transform: scaleX(.5); animation: cursorPulse 1.6s ease-in-out infinite; }
@keyframes cursorPulse { 0%,100% { transform: scaleX(.4); } 50% { transform: scaleX(.7); } }
.qstep { display: none; animation: qFade .4s cubic-bezier(.4,0,.2,1); }
.qstep.on { display: block; }
@keyframes qFade { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.q-q { font-family: var(--fh); font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 22px; line-height: 1.3; letter-spacing: -.3px; }
.qopts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 22px; }
.qopt { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 16px; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--ink); display: flex; align-items: center; gap: 12px; transition: all .22s; line-height: 1.3; position: relative; }
.qopt-mk { width: 22px; height: 22px; flex-shrink: 0; border: 1px solid var(--line-2); border-radius: 4px; display: grid; place-items: center; color: var(--steel); transition: all .22s; background: var(--white); }
.qopt-mk svg { width: 12px; height: 12px; }
.qopt:hover { border-color: var(--ink); transform: translateY(-1px); }
.qopt:hover .qopt-mk { color: var(--ink); border-color: var(--ink); }
.qopt.sel { background: var(--coral-tint); border-color: var(--coral); color: var(--coral-dk); }
.qopt.sel .qopt-mk { background: var(--coral); border-color: var(--coral); color: #fff; }
.qnav { display: flex; align-items: center; gap: 10px; }
.qback { background: none; border: 1px solid var(--line); border-radius: var(--r); padding: 9px 14px; font-family: var(--fm); font-size: 11px; font-weight: 500; color: var(--steel); text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: .22s; }
.qback:hover { border-color: var(--ink); color: var(--ink); }
.qcnt { font-family: var(--fm); font-size: 11px; color: var(--ash); letter-spacing: 1px; margin-left: auto; }
.qfinal { display: none; }
.qfinal.on { display: block; animation: qFade .4s; }
.qfinal h3 { font-family: var(--fh); font-size: 19px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.3px; }
.qfinal > p { font-size: 14px; color: var(--steel); margin-bottom: 22px; }
.qform { display: flex; flex-direction: column; gap: 10px; }
.fi { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 16px; font-family: var(--fb); font-size: 15px; color: var(--ink); outline: none; transition: all .2s; width: 100%; }
.fi:focus { border-color: var(--ink); background: var(--white); box-shadow: 0 0 0 3px rgba(14,14,16,.06); }
.fi::placeholder { color: var(--ash); }
.qsub { background: var(--ink); color: #fff; font-family: var(--fb); font-size: 14px; font-weight: 700; padding: 16px; border-radius: var(--r); border: none; cursor: pointer; transition: background .25s, transform .25s; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.qsub:hover { background: var(--coral); }
.qsub svg { transition: transform .3s; }
.qsub:hover svg { transform: translateX(4px); }
.form-note { font-family: var(--fm); font-size: 10px; color: var(--ash); text-align: center; margin-top: 4px; letter-spacing: .5px; }
.asteps { display: flex; flex-direction: column; gap: 0; margin-top: 8px; border-top: 1px solid var(--line); }
.astep { display: flex; gap: 20px; align-items: flex-start; padding: 22px 4px; border-bottom: 1px solid var(--line); transition: padding-left .3s; cursor: default; position: relative; }
.astep::before { content: ''; position: absolute; left: -4px; top: 0; bottom: 0; width: 2px; background: var(--coral); transform: scaleY(0); transform-origin: top; transition: transform .35s cubic-bezier(.7,0,.2,1); }
.astep:hover { padding-left: 14px; }
.astep:hover::before { transform: scaleY(1); }
.astep-n { font-family: var(--fh); font-size: 26px; font-weight: 600; color: var(--ink); letter-spacing: -1px; flex-shrink: 0; min-width: 40px; }
.astep-n sup { font-family: var(--fm); font-size: 9px; font-weight: 500; color: var(--ash); letter-spacing: 1px; vertical-align: top; margin-left: 2px; }
.astep-t { font-family: var(--fh); font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.astep-d { font-size: 13px; color: var(--steel); line-height: 1.55; }

/* ═══ КАТАЛОГ ═══ */
.catalog { background: var(--paper); padding: 96px 0; }
.cat-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 24px; }
.cat-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.cf { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 9px 16px; font-size: 13px; font-weight: 600; color: var(--steel); cursor: pointer; transition: all .22s; font-family: var(--fb); position: relative; }
.cf.on, .cf:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.cf .cf-count { font-family: var(--fm); font-size: 10px; color: var(--ash); margin-left: 6px; font-weight: 500; }
.cf.on .cf-count, .cf:hover .cf-count { color: rgba(255,255,255,.5); }
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 36px; }
.pcard { border: 1px solid var(--line); border-radius: var(--rl); overflow: hidden; cursor: pointer; transition: border-color .25s, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s; perspective: 1200px; background: var(--white); }
.pcard:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: 0 20px 50px -20px rgba(20,20,25,.18); }
.pc-in { position: relative; transition: transform .65s cubic-bezier(.7,0,.2,1); transform-style: preserve-3d; }
.pcard:hover .pc-in { transform: rotateY(180deg); }
.pc-front, .pc-back { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.pc-back { position: absolute; inset: 0; transform: rotateY(180deg); background: var(--white); padding: 22px; display: flex; flex-direction: column; justify-content: space-between; min-height: 376px; }
.pc-img { height: 210px; background: var(--paper-2); position: relative; display: grid; place-items: center; border-bottom: 1px solid var(--line); overflow: hidden; }
.pc-img::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(14,14,16,.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(14,14,16,.04) 1px, transparent 1px); background-size: 20px 20px; }
.pc-img svg { position: relative; z-index: 1; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.pcard:hover .pc-img svg { transform: scale(1.06); }
.pc-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--coral); color: #fff; font-family: var(--fm); font-size: 10px; font-weight: 500; padding: 4px 10px; text-transform: uppercase; letter-spacing: 1px; }
.pc-stock { position: absolute; top: 12px; right: 12px; z-index: 2; font-family: var(--fm); font-size: 10px; font-weight: 500; padding: 4px 10px; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 6px; }
.pc-stock::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.stk-in { background: #E8F5EB; color: #0E7C3B; }
.stk-in::before { background: #0E7C3B; box-shadow: 0 0 0 3px rgba(14,124,59,.18); }
.stk-ord { background: #FBF1E1; color: #A86515; }
.stk-ord::before { background: #A86515; }
.pc-body { padding: 18px 20px 20px; }
.pc-name { font-family: var(--fh); font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 14px; line-height: 1.35; }
.pc-params { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 16px; border-top: 1px solid var(--line); }
.pc-params > div { padding: 8px 0; border-bottom: 1px solid var(--line); }
.pc-params > div:nth-child(odd) { padding-right: 8px; border-right: 1px solid var(--line); }
.pc-params > div:nth-child(even) { padding-left: 8px; }
.pp-k { font-family: var(--fm); font-size: 9px; color: var(--ash); text-transform: uppercase; letter-spacing: 1px; }
.pp-v { font-family: var(--fh); font-size: 13px; font-weight: 600; color: var(--ink); margin-top: 3px; }
.pc-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); gap: 8px; }
.pc-price { font-family: var(--fh); font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -.3px; }
.pc-price small { font-family: var(--fm); font-size: 9px; color: var(--ash); font-weight: 500; display: block; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.pc-buy { background: var(--ink); color: #fff; font-family: var(--fb); font-size: 12px; font-weight: 700; padding: 9px 16px; border-radius: var(--r); border: none; cursor: pointer; transition: background .22s, transform .22s; display: inline-flex; align-items: center; gap: 8px; }
.pc-buy:hover { background: var(--coral); transform: translateY(-1px); }
.pc-buy svg { width: 12px; height: 12px; transition: transform .25s; }
.pc-buy:hover svg { transform: translateX(3px); }
.pb-name { font-family: var(--fh); font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 14px; line-height: 1.3; }
.pb-rows { flex: 1; }
.pb-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.pb-row:last-child { border: none; }
.pb-k { font-family: var(--fm); font-size: 11px; color: var(--steel); text-transform: uppercase; letter-spacing: .5px; }
.pb-v { font-family: var(--fh); font-weight: 600; color: var(--ink); font-size: 12px; }
.pb-btns { display: flex; gap: 8px; margin-top: 14px; }
.pb-btns button { flex: 1; padding: 11px; border-radius: var(--r); font-family: var(--fb); font-size: 12px; font-weight: 700; cursor: pointer; transition: .22s; }
.pbb1 { background: var(--coral); color: #fff; border: none; }
.pbb1:hover { background: var(--coral-dk); }
.pbb2 { background: none; border: 1.5px solid var(--line); color: var(--ink); }
.pbb2:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.cat-pag { display: flex; align-items: center; justify-content: center; gap: 6px; }
.pg-n { width: 40px; height: 40px; display: grid; place-items: center; font-family: var(--fm); font-size: 13px; font-weight: 500; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); cursor: pointer; transition: all .22s; color: var(--ink); }
.pg-n.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.pg-n:hover:not(.on) { border-color: var(--ink); }
.pg-more { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 0 18px; height: 40px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink); cursor: pointer; transition: all .22s; font-family: var(--fb); }
.pg-more:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.pg-more svg { transition: transform .25s; }
.pg-more:hover svg { transform: translateX(3px); }

/* ═══ ОТЗЫВЫ И КЕЙСЫ ═══ */
.trust { background: var(--paper-2); padding: 96px 0; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.rev-col, .case-col { display: flex; flex-direction: column; gap: 14px; }
.rcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--rl); padding: 26px; position: relative; transition: transform .3s, border-color .3s; }
.rcard:hover { transform: translateY(-2px); border-color: var(--line-2); }
.rcard::before { content: '"'; position: absolute; top: 14px; right: 22px; font-family: var(--fh); font-size: 64px; color: var(--coral-tint); line-height: 1; font-weight: 700; }
.rtop { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rava { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; display: grid; place-items: center; font-family: var(--fh); font-size: 13px; font-weight: 600; color: #fff; }
.stars { color: var(--coral); font-size: 12px; margin-bottom: 10px; letter-spacing: 2px; }
.rname { font-family: var(--fh); font-size: 14px; font-weight: 600; color: var(--ink); }
.rmeta { font-family: var(--fm); font-size: 11px; color: var(--steel); margin-top: 3px; letter-spacing: .3px; }
.rtxt { font-size: 14px; color: var(--steel); line-height: 1.65; }
.kcase { background: var(--ink); color: #fff; border-radius: var(--rl); padding: 30px; position: relative; overflow: hidden; transition: transform .35s; }
.kcase:hover { transform: translateY(-2px); }
.kcase::after { content: ''; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transition: transform .6s; }
.kcase:hover::after { transform: scale(1.2) rotate(20deg); }
.kcase::before { content: ''; position: absolute; right: -90px; top: -90px; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; }
.kcase-tag { display: inline-block; font-family: var(--fm); font-size: 10px; font-weight: 500; color: var(--coral); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; position: relative; z-index: 1; }
.kcase-ttl { font-family: var(--fh); font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; line-height: 1.3; letter-spacing: -.3px; position: relative; z-index: 1; }
.kcase-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 22px; position: relative; z-index: 1; }
.kcase-stats { display: flex; gap: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); position: relative; z-index: 1; }
.ks-v { font-family: var(--fh); font-size: 32px; font-weight: 600; color: var(--coral); line-height: 1; letter-spacing: -1px; }
.ks-k { font-family: var(--fm); font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }
.about-c { background: var(--white); border: 1px solid var(--line); border-radius: var(--rl); padding: 28px; }
.about-c h4 { font-family: var(--fh); font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 18px; letter-spacing: -.2px; }
.ai { display: flex; gap: 12px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.ai:last-of-type { border-bottom: none; margin-bottom: 14px; }
.aick { width: 18px; height: 18px; background: var(--ink); border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; margin-top: 2px; }
.aick svg { width: 10px; height: 10px; }
.ai p { font-size: 13px; color: var(--steel); line-height: 1.55; }
.alink { font-family: var(--fm); font-size: 12px; font-weight: 500; color: var(--coral); display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 1px; }
.alink svg { transition: transform .25s; }
.alink:hover svg { transform: translateX(3px); }

/* ═══ ДОСТАВКА И ОПЛАТА ═══ */
.delivery { background: var(--paper); padding: 96px 0; }
.del-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 44px; }
.del-hd { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; padding-bottom: 20px; border-bottom: 1px solid var(--ink); position: relative; }
.del-hd::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 80px; height: 3px; background: var(--coral); }
.del-hd-ico { width: 44px; height: 44px; background: var(--ink); display: grid; place-items: center; color: #fff; }
.del-hd-ico svg { width: 22px; height: 22px; }
.del-hd-t { font-family: var(--fh); font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -.3px; }
.ditem { display: flex; gap: 16px; padding: 18px 4px; border-bottom: 1px solid var(--line); transition: padding-left .3s; position: relative; }
.ditem::before { content: ''; position: absolute; left: -4px; top: 18px; bottom: 18px; width: 2px; background: var(--coral); transform: scaleY(0); transform-origin: top; transition: transform .35s cubic-bezier(.7,0,.2,1); }
.ditem:hover { padding-left: 14px; }
.ditem:hover::before { transform: scaleY(1); }
.ditem:last-child { border-bottom: none; }
.dnum { font-family: var(--fm); font-size: 11px; font-weight: 500; color: var(--ash); letter-spacing: 1px; min-width: 22px; margin-top: 3px; }
.dt { font-family: var(--fh); font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.dd { font-size: 13px; color: var(--steel); line-height: 1.55; }
.dpill { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; background: var(--coral-tint); border: 1px solid var(--coral-line); border-radius: 20px; padding: 3px 10px 3px 8px; font-family: var(--fm); font-size: 10px; color: var(--coral-dk); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.dpill::before { content: ''; width: 4px; height: 4px; background: var(--coral); border-radius: 50%; }

/* ═══ ЛИД-МАГНИТЫ ═══ */
.leadmag { background: var(--ink); padding: 96px 0; color: #fff; position: relative; }
.leadmag::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 80px 80px; }
.leadmag .s-ttl { color: #fff; }
.leadmag .s-lbl { color: var(--coral); }
.lm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; position: relative; z-index: 1; }
.lmc { background: var(--ink-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--rl); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; transition: all .35s; position: relative; overflow: hidden; }
.lmc::before { content: ''; position: absolute; inset: auto 0 0 0; height: 2px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.7,0,.2,1); }
.lmc:hover { border-color: rgba(255,255,255,.2); transform: translateY(-4px); }
.lmc:hover::before { transform: scaleX(1); }
.lm-num { font-family: var(--fm); font-size: 11px; font-weight: 500; color: rgba(255,255,255,.3); letter-spacing: 2px; }
.lm-ico { width: 52px; height: 52px; border: 1.2px solid rgba(255,255,255,.15); display: grid; place-items: center; color: #fff; transition: border-color .25s, color .25s, transform .3s; }
.lmc:hover .lm-ico { color: var(--coral); border-color: var(--coral); transform: rotate(-4deg); }
.lm-ico svg { width: 26px; height: 26px; }
.lm-t { font-family: var(--fh); font-size: 16px; font-weight: 600; color: #fff; letter-spacing: -.2px; }
.lm-d { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; flex: 1; }
.lm-btn { display: inline-flex; align-items: center; gap: 8px; background: none; border: 1px solid rgba(255,255,255,.2); border-radius: var(--r); padding: 10px 16px; font-family: var(--fb); font-size: 12px; font-weight: 700; color: #fff; cursor: pointer; width: fit-content; transition: all .22s; }
.lm-btn:hover { background: var(--coral); border-color: var(--coral); }
.lm-btn svg { transition: transform .25s; }
.lm-btn:hover svg { transform: translateX(3px); }

/* ═══ FAQ ═══ */
.faq-s { background: var(--paper); padding: 96px 0; }
.faq-list { margin-top: 44px; max-width: 860px; }
.fitem { border-bottom: 1px solid var(--line); }
.fitem:first-of-type { border-top: 1px solid var(--line); }
.fq { display: flex; justify-content: space-between; align-items: center; padding: 22px 4px; cursor: pointer; font-family: var(--fh); font-size: 16px; font-weight: 600; color: var(--ink); gap: 24px; transition: padding-left .3s; position: relative; letter-spacing: -.2px; }
.fq::before { content: ''; position: absolute; left: -4px; top: 18px; bottom: 18px; width: 2px; background: var(--coral); transform: scaleY(0); transform-origin: top; transition: transform .35s cubic-bezier(.7,0,.2,1); }
.fq:hover { padding-left: 14px; }
.fq:hover::before { transform: scaleY(1); }
.fq-ico { width: 32px; height: 32px; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; transition: all .3s; position: relative; }
.fq-ico::before, .fq-ico::after { content: ''; position: absolute; background: var(--ink); transition: transform .3s, background .3s; }
.fq-ico::before { width: 10px; height: 1.5px; }
.fq-ico::after { width: 1.5px; height: 10px; }
.fq.open .fq-ico { background: var(--coral); border-color: var(--coral); transform: rotate(180deg); }
.fq.open .fq-ico::before, .fq.open .fq-ico::after { background: #fff; }
.fq.open .fq-ico::after { transform: scaleY(0); }
.fa { font-size: 14px; color: var(--steel); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding-bottom .4s; padding-left: 4px; max-width: 720px; }
.fa.open { max-height: 240px; padding-bottom: 20px; }

/* ═══ ФИНАЛЬНЫЙ CTA ═══ */
.final { background: var(--coral); padding: 96px 0; position: relative; overflow: hidden; color: #fff; }
.final::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom right, #000, transparent 80%); -webkit-mask-image: linear-gradient(to bottom right, #000, transparent 80%); }
.final::after { content: ''; position: absolute; right: -120px; top: 50%; transform: translateY(-50%); width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; pointer-events: none; animation: rotateSlow 60s linear infinite; }
.final-orbits { position: absolute; right: -120px; top: 50%; transform: translateY(-50%); width: 460px; height: 460px; pointer-events: none; }
.final-orbits::before { content: ''; position: absolute; inset: 60px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; animation: rotateSlow 40s linear infinite reverse; }
.final-orbits::after { content: ''; position: absolute; inset: 130px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; animation: rotateSlow 28s linear infinite; }
.final-in { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.final-l .s-lbl { color: #fff; }
.final-l .s-lbl::before { background: #fff; }
.final-l h2 { font-family: var(--fh); font-size: clamp(26px, 3vw, 40px); font-weight: 600; color: #fff; line-height: 1.1; margin-bottom: 32px; letter-spacing: -1px; text-wrap: balance; }
.fck-list { display: flex; flex-direction: column; gap: 14px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.fck { display: flex; align-items: center; gap: 14px; font-size: 15px; color: rgba(255,255,255,.92); }
.fck-dot { width: 22px; height: 22px; background: rgba(255,255,255,.16); border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; }
.fck-dot svg { width: 12px; height: 12px; }
.final-r { background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.18); border-radius: var(--rl); padding: 30px; display: flex; flex-direction: column; gap: 10px; backdrop-filter: blur(6px); }
.final-r-t { font-family: var(--fh); font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.ffi { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24); border-radius: var(--r); padding: 15px 16px; font-family: var(--fb); font-size: 15px; color: #fff; outline: none; transition: all .22s; width: 100%; }
.ffi::placeholder { color: rgba(255,255,255,.55); }
.ffi:focus { border-color: #fff; background: rgba(255,255,255,.22); box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
.fsub { background: #fff; color: var(--coral); font-family: var(--fb); font-size: 14px; font-weight: 800; padding: 16px; border-radius: var(--r); border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: all .22s; }
.fsub:hover { background: var(--ink); color: #fff; }
.fsub svg { transition: transform .25s; }
.fsub:hover svg { transform: translateX(4px); }
.fnote { font-family: var(--fm); font-size: 10px; color: rgba(255,255,255,.55); text-align: center; letter-spacing: .5px; }

/* ═══ FOOTER ═══ */
footer { background: var(--ink); padding: 64px 0 36px; color: #fff; }
.foot-g { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-brand .logo { color: #fff; margin-bottom: 16px; margin-right: 0; }
.foot-brand .logo .logo-mark { border-color: #fff; }
.foot-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 220px; }
.fc-t { font-family: var(--fm); font-size: 11px; font-weight: 500; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.fcol a { display: block; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 10px; transition: color .22s, padding-left .25s; }
.fcol a:hover { color: #fff; padding-left: 6px; }
.foot-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); font-family: var(--fm); font-size: 11px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 10px; letter-spacing: .5px; }

/* ═══ ВИДЖЕТ ═══ */
.fw { position: fixed; right: 28px; bottom: 28px; z-index: 500; }
.fwtog { width: 60px; height: 60px; border-radius: 50%; background: var(--ink); border: none; cursor: pointer; display: grid; place-items: center; color: #fff; box-shadow: 0 10px 30px -8px rgba(20,20,25,.4); transition: transform .3s cubic-bezier(.2,.7,.2,1), background .3s; position: relative; }
.fwtog::before { content: ''; position: absolute; inset: -6px; border: 1.5px solid var(--coral); border-radius: 50%; opacity: 0; animation: ringPulse2 2.6s ease-out infinite; }
@keyframes ringPulse2 { 0% { transform: scale(.8); opacity: .8; } 100% { transform: scale(1.2); opacity: 0; } }
.fwtog:hover { transform: rotate(15deg); background: var(--coral); }
.fwtog svg { width: 22px; height: 22px; transition: transform .3s; }
.fwtog.on svg { transform: rotate(45deg); }
.fw-menu { position: absolute; right: 0; bottom: 72px; display: flex; flex-direction: column; gap: 8px; opacity: 0; pointer-events: none; transform: translateY(12px) scale(.95); transition: all .28s cubic-bezier(.2,.7,.2,1); transform-origin: bottom right; }
.fw-menu.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.fwlnk { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 8px 18px 8px 8px; font-family: var(--fb); font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; white-space: nowrap; box-shadow: 0 8px 24px -10px rgba(0,0,0,.18); transition: all .22s; }
.fwlnk:hover { transform: translateX(-3px); background: var(--ink); color: #fff; border-color: var(--ink); }
.fwlnk:hover .fw-ico { background: var(--coral); color: #fff; }
.fw-ico { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; background: var(--paper-2); color: var(--ink); transition: all .22s; }
.fw-ico svg { width: 15px; height: 15px; }

/* ═══ ПОПАП ═══ */
.pop-bg { display: none; position: fixed; inset: 0; z-index: 600; background: rgba(14,14,16,.55); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .25s; }
.pop-bg.open { display: flex; opacity: 1; }
.pop-box { background: var(--white); border-radius: var(--rl); padding: 40px; width: min(460px, 100%); position: relative; box-shadow: 0 30px 80px -20px rgba(0,0,0,.3); animation: popIn .35s cubic-bezier(.2,.7,.2,1); border-top: 4px solid var(--coral); }
@keyframes popIn { from { opacity: 0; transform: scale(.94) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.pop-x { position: absolute; top: 14px; right: 16px; width: 32px; height: 32px; background: none; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: var(--steel); transition: all .22s; }
.pop-x:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: rotate(90deg); }
.pop-x svg { width: 12px; height: 12px; }
.pop-lbl { font-family: var(--fm); font-size: 10px; font-weight: 500; color: var(--coral); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.pop-ttl { font-family: var(--fh); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -.4px; }
.pop-sub { font-size: 14px; color: var(--steel); margin-bottom: 24px; }
.pop-form { display: flex; flex-direction: column; gap: 10px; }
.pop-btn { background: var(--ink); color: #fff; font-family: var(--fb); font-size: 14px; font-weight: 700; padding: 16px; border-radius: var(--r); border: none; cursor: pointer; transition: background .25s, transform .25s; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.pop-btn:hover { background: var(--coral); }
.pop-btn svg { transition: transform .25s; }
.pop-btn:hover svg { transform: translateX(4px); }
.pop-note { font-family: var(--fm); font-size: 10px; color: var(--ash); text-align: center; letter-spacing: .5px; }
.pop-btn:disabled { opacity: .6; cursor: not-allowed; pointer-events: none; }
.pop-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 0 8px; gap: 12px; }
.pop-success svg { color: var(--coral); }
.pop-success .pop-ttl { margin-bottom: 0; }
.pop-success .pop-sub { margin-bottom: 0; }

/* ═══ SCROLL REVEAL + АНИМАЦИИ ═══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: .06s; }
.reveal[data-d="2"] { transition-delay: .12s; }
.reveal[data-d="3"] { transition-delay: .18s; }
.reveal[data-d="4"] { transition-delay: .24s; }
.reveal[data-d="5"] { transition-delay: .3s; }
.reveal[data-d="6"] { transition-delay: .36s; }
.reveal[data-d="7"] { transition-delay: .42s; }
.hero-l > * { opacity: 0; transform: translateY(18px); animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-l > *:nth-child(1){ animation-delay: .1s; }
.hero-l > *:nth-child(2){ animation-delay: .18s; }
.hero-l > *:nth-child(3){ animation-delay: .26s; }
.hero-l > *:nth-child(4){ animation-delay: .34s; }
.hero-l > *:nth-child(5){ animation-delay: .42s; }
.hero-r { opacity: 0; transform: translateY(18px); animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) .2s both; }
.hero-stats-in .hstat { opacity: 0; transform: translateY(10px); animation: fadeUp .7s cubic-bezier(.2,.7,.2,1) both; }
.hero-stats-in .hstat:nth-child(1){ animation-delay: .8s; }
.hero-stats-in .hstat:nth-child(2){ animation-delay: .88s; }
.hero-stats-in .hstat:nth-child(3){ animation-delay: .96s; }
.hero-stats-in .hstat:nth-child(4){ animation-delay: 1.04s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
