/* reelme — маркетинг-сайт. ДНК: тёмный #111, unbounded строчными, зелёный #0c5, скругления 32 */
:root {
  --bg: #111;
  --panel: #1c1c1e;
  --panel-2: #232326;
  --line: rgba(255, 255, 255, .09);
  --txt: #fff;
  --muted: rgba(255, 255, 255, .72);
  --dim: rgba(255, 255, 255, .45);
  --acc: #0c5;
  --acc-soft: rgba(0, 204, 85, .14);
  --r-lg: 32px;
  --r-md: 20px;
  --r-sm: 14px;
  --font-d: 'Unbounded', sans-serif;
  --font-b: 'Onest', system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--txt);
  font-family: var(--font-b); font-size: clamp(15px, 1.1vw, 17px); line-height: 1.55;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--acc); color: #111; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 62px); }

h1, h2, h3 { font-family: var(--font-d); font-weight: 600; line-height: 1.18; text-transform: lowercase; }
h1 { font-size: clamp(30px, 4.2vw, 56px); letter-spacing: -.01em; }
h2 { font-size: clamp(24px, 3.2vw, 45px); }
h3 { font-size: clamp(17px, 1.5vw, 22px); }
.lead { color: var(--muted); font-size: clamp(15px, 1.2vw, 18px); max-width: 640px; }
.tag { font-size: clamp(12px, .95vw, 15px); color: var(--acc); letter-spacing: .06em; text-transform: lowercase; font-weight: 600; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-d); font-weight: 500; text-transform: lowercase;
  font-size: clamp(14px, 1vw, 16px);
  background: var(--acc); color: #071; color: #052; border: 0; border-radius: 16px;
  padding: 17px 34px; cursor: pointer; position: relative; overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
  box-shadow: 0 0 0 rgba(0, 204, 85, 0);
}
.btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 40px rgba(0, 204, 85, .35); }
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
}
.btn:hover::after { transition: transform .7s ease; transform: translateX(120%); }
.btn.ghost { background: transparent; color: #fff; border: 1px solid var(--line); box-shadow: none; }
.btn.ghost:hover { border-color: var(--acc); color: var(--acc); box-shadow: none; }

/* ---------- шапка ---------- */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.hdr.scrolled { background: rgba(17, 17, 17, .78); backdrop-filter: blur(14px); border-color: var(--line); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; padding: 16px clamp(16px, 4vw, 62px); }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-d); font-weight: 600; font-size: 20px; }
.logo b { color: var(--acc); font-weight: 600; }
.logo svg { display: block; }
.nav { display: flex; gap: clamp(12px, 2.4vw, 36px); align-items: center; font-family: var(--font-d); font-size: 14px; font-weight: 500; text-transform: lowercase; }
.nav a { opacity: .85; transition: opacity .2s, color .2s; }
.nav a:hover { opacity: 1; color: var(--acc); }
.nav .btn { padding: 11px 22px; }
@media (max-width: 860px) { .nav a:not(.btn) { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(120px, 16vh, 190px) 0 clamp(40px, 6vw, 90px); overflow: hidden; }
.hero-blob {
  position: absolute; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  top: -20%; right: -18%; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 40% 40%, rgba(0, 204, 85, .16), transparent 60%);
  animation: blob 14s ease-in-out infinite alternate;
}
@keyframes blob { from { transform: translate(0, 0) scale(1); } to { transform: translate(-6%, 8%) scale(1.15); } }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 4vw, 60px); align-items: center; position: relative; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin: 14px 0 20px; }
.hero h1 em { font-style: normal; color: var(--acc); }
.hero .lead { margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; color: var(--dim); font-size: 13.5px; }

/* телефоны в hero */
.phones { position: relative; height: clamp(380px, 44vw, 560px); }
.phone {
  position: absolute; width: clamp(150px, 16vw, 218px); aspect-ratio: 9 / 16;
  border-radius: 26px; overflow: hidden; border: 4px solid rgba(255, 255, 255, .92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone.p1 { left: 4%; top: 8%; transform: rotate(-8deg); z-index: 1; }
.phone.p2 { left: 32%; top: 0; z-index: 3; width: clamp(170px, 18vw, 244px); }
.phone.p3 { right: 2%; top: 12%; transform: rotate(9deg); z-index: 2; }
.phone .badge {
  position: absolute; left: 10px; bottom: 10px; right: 10px;
  background: rgba(17, 17, 17, .72); backdrop-filter: blur(8px);
  border-radius: 10px; padding: 7px 10px; font-size: 11.5px; color: #fff; line-height: 1.35;
}
.phone .badge b { color: var(--acc); }

/* ---------- statement ---------- */
.statement { padding: clamp(70px, 10vw, 150px) 0 0; }
.statement p {
  font-family: var(--font-d); font-weight: 600; text-transform: lowercase;
  font-size: clamp(22px, 3vw, 40px); line-height: 1.25; max-width: 1050px;
}
.statement em { font-style: normal; color: var(--acc); }

/* ---------- секции ---------- */
section { padding-top: clamp(80px, 11vw, 160px); }
.sec-head { margin-bottom: clamp(26px, 4vw, 52px); }
.sec-head .lead { margin-top: 18px; }

/* ---------- marquee галереи ---------- */
.marquee { position: relative; overflow: hidden; }
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 14vw; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg) 10%, transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg) 10%, transparent); }
.mrow { display: flex; gap: clamp(12px, 1.4vw, 20px); width: max-content; padding: clamp(6px, .8vw, 10px) 0; }
.mrow.r1 { animation: slide-l 46s linear infinite; }
.mrow.r2 { animation: slide-r 52s linear infinite; }
.marquee:hover .mrow { animation-play-state: paused; }
@keyframes slide-l { to { transform: translateX(-50%); } }
@keyframes slide-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.mcard {
  width: clamp(160px, 17vw, 235px); aspect-ratio: 9 / 16; border-radius: var(--r-md);
  overflow: hidden; position: relative; flex-shrink: 0;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.mcard:hover { transform: scale(1.045); z-index: 3; }
.mcard img { width: 100%; height: 100%; object-fit: cover; }
.mcard span {
  position: absolute; left: 10px; bottom: 10px; font-size: 12px; font-weight: 600;
  background: rgba(17,17,17,.65); backdrop-filter: blur(6px); padding: 5px 10px; border-radius: 8px;
}

/* ---------- пайплайн ---------- */
.pipe { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.pipe .step {
  font-family: var(--font-d); font-size: clamp(12px, 1vw, 15px); font-weight: 500; text-transform: lowercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 12px 20px; color: var(--dim);
  transition: all .45s ease; background: var(--panel);
}
.pipe .arr { color: var(--dim); opacity: .6; }
.pipe .step.lit { color: #fff; border-color: var(--acc); background: var(--acc-soft); box-shadow: 0 0 24px rgba(0,204,85,.12); }
.pipe-hint { margin-top: 22px; }

/* ---------- форматы ---------- */
.fmt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.4vw, 22px); }
@media (max-width: 1000px) { .fmt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fmt-grid { grid-template-columns: 1fr; } }
.fmt {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(20px, 2.2vw, 32px); position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s;
}
.fmt:hover { transform: translateY(-6px); border-color: rgba(0, 204, 85, .5); }
.fmt .ico { font-size: 30px; margin-bottom: 16px; display: block; }
.fmt h3 { margin-bottom: 10px; }
.fmt p { color: var(--muted); font-size: 14.5px; }
.fmt .dyn { margin-top: 14px; font-size: 12.5px; color: var(--acc); font-weight: 600; letter-spacing: .04em; }
.fmt::after {
  content: ''; position: absolute; inset: auto -30% -55% auto; width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 204, 85, .12), transparent 65%); opacity: 0; transition: opacity .4s;
}
.fmt:hover::after { opacity: 1; }

/* ---------- сценарии (3 больших карточки) ---------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.4vw, 22px); }
@media (max-width: 900px) { .cases { grid-template-columns: 1fr; } }
.case {
  border-radius: var(--r-lg); padding: clamp(24px, 2.4vw, 38px); min-height: 320px;
  display: flex; flex-direction: column; border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.case:hover { transform: translateY(-6px); }
.case.c1 { background: linear-gradient(160deg, #0d2818, #131413); }
.case.c2 { background: linear-gradient(160deg, #101c2a, #131313); }
.case.c3 { background: linear-gradient(160deg, #23150c, #141312); }
.case .num { font-family: var(--font-d); color: var(--acc); font-size: 15px; margin-bottom: auto; }
.case h3 { margin: 26px 0 12px; }
.case p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.case .btn { align-self: flex-start; padding: 12px 24px; font-size: 13.5px; }

/* ---------- фичи-грид ---------- */
.feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1000px) { .feats { grid-template-columns: repeat(2, 1fr); } }
.feat { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; transition: border-color .3s; }
.feat:hover { border-color: rgba(0, 204, 85, .4); }
.feat b { display: block; font-family: var(--font-d); font-size: 14.5px; font-weight: 500; text-transform: lowercase; margin-bottom: 8px; }
.feat span { color: var(--dim); font-size: 13.5px; line-height: 1.45; }

/* ---------- отзывы-джок ---------- */
.no-reviews { text-align: center; padding-bottom: 0; }
.no-reviews h2 { max-width: 760px; margin: 0 auto 30px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; font-family: var(--font-d); font-size: clamp(14px, 1.2vw, 17px); font-weight: 500; text-transform: lowercase;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--acc); }
.faq summary::after { content: '+'; font-size: 26px; color: var(--acc); transition: transform .3s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 4px 24px; color: var(--muted); max-width: 720px; }

/* ---------- финальный CTA ---------- */
.final {
  margin-top: clamp(80px, 11vw, 160px); border-radius: var(--r-lg);
  background: radial-gradient(120% 160% at 50% -20%, rgba(0, 204, 85, .22), transparent 55%), var(--panel);
  border: 1px solid var(--line); text-align: center; padding: clamp(50px, 7vw, 100px) 24px;
}
.final h2 { margin-bottom: 16px; }
.final .lead { margin: 0 auto 34px; }

/* ---------- футер ---------- */
footer { margin-top: clamp(60px, 8vw, 110px); border-top: 1px solid var(--line); padding: 44px 0 60px; }
.ftr { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; }
.ftr .cols { display: flex; gap: clamp(30px, 5vw, 80px); flex-wrap: wrap; }
.ftr h4 { font-family: var(--font-d); font-size: 13px; font-weight: 500; text-transform: lowercase; color: var(--dim); margin-bottom: 14px; }
.ftr a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.ftr a:hover { color: var(--acc); }
.copy { margin-top: 40px; color: var(--dim); font-size: 12.5px; }

/* ---------- зерно, прогресс, градиентный текст ---------- */
body::after {
  content: ''; position: fixed; inset: -50%; pointer-events: none; z-index: 90; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); } 10% { transform: translate(-5%, -8%); }
  30% { transform: translate(4%, -3%); } 50% { transform: translate(-6%, 6%); }
  70% { transform: translate(6%, 2%); } 90% { transform: translate(-3%, 4%); }
}
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--acc); z-index: 60; }

.grad {
  background: linear-gradient(100deg, #0c5, #8fffcf 45%, #0c5 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradshift 5s ease-in-out infinite alternate;
}
@keyframes gradshift { from { background-position: 0% 0; } to { background-position: 100% 0; } }

/* ---------- секция кино ---------- */
.cinema {
  position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  min-height: clamp(340px, 42vw, 560px); display: flex; align-items: flex-end;
}
.cinema img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 6s ease; }
.cinema:hover img.bg { transform: scale(1); }
.cinema::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(17,17,17,.2), rgba(17,17,17,.9) 80%);
}
.cinema-in { position: relative; z-index: 2; padding: clamp(24px, 4vw, 56px); max-width: 760px; }
.cinema h2 { margin: 10px 0 14px; }
.cinema .lead { margin-bottom: 24px; }
.cinema .specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.cinema .specs span {
  font-family: var(--font-d); font-size: 12.5px; text-transform: lowercase;
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 8px 14px; backdrop-filter: blur(6px);
}

/* ---------- reveal-анимации ---------- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .08s; } .rv.d2 { transition-delay: .16s; } .rv.d3 { transition-delay: .24s; } .rv.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .mrow { animation: none !important; }
}

/* ---------- блог ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2vw, 26px); }
@media (max-width: 760px) { .blog-grid { grid-template-columns: 1fr; } }
.post-card { border-radius: var(--r-lg); overflow: hidden; background: var(--panel); border: 1px solid var(--line); transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s; }
.post-card:hover { transform: translateY(-6px); border-color: rgba(0, 204, 85, .4); }
.post-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.post-card .pc-body { padding: 22px 24px 26px; }
.post-card h3 { margin-bottom: 10px; }
.post-card p { color: var(--muted); font-size: 14px; }
.post-card .date { color: var(--dim); font-size: 12.5px; margin-top: 14px; display: block; }

.article { max-width: 800px; margin: 0 auto; padding-top: clamp(110px, 14vh, 160px); }
.article img.cover { border-radius: var(--r-lg); margin: 30px 0; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.article h1 { text-transform: none; font-size: clamp(26px, 3.4vw, 42px); }
.article h2 { text-transform: none; font-size: clamp(20px, 2.2vw, 28px); margin: 44px 0 16px; }
.article p, .article li { color: var(--muted); margin-bottom: 14px; font-size: 16px; line-height: 1.7; }
.article ul, .article ol { padding-left: 24px; margin-bottom: 18px; }
.article strong { color: #fff; }
.article .meta { color: var(--dim); font-size: 13.5px; margin-top: 14px; }
.article .cta-inline {
  margin: 40px 0; padding: 28px; border-radius: var(--r-md); border: 1px solid rgba(0, 204, 85, .35);
  background: var(--acc-soft);
}
.article .cta-inline p { margin-bottom: 16px; color: #fff; }

/* ---------- Тарифы на маркетинге ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 14px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; display: flex; flex-direction: column; transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s; }
.price-card:hover { transform: translateY(-6px); border-color: rgba(0,204,85,.4); }
.price-card.popular { border-color: var(--acc); box-shadow: 0 0 50px rgba(0,204,85,.12); }
.pc-badge { position: absolute; top: -12px; left: 28px; background: var(--acc); color: #052; font-family: var(--font-d); font-size: 11px; font-weight: 500; padding: 4px 14px; border-radius: 20px; text-transform: lowercase; }
.pc-name { font-family: var(--font-d); font-size: 20px; margin-bottom: 12px; }
.pc-price { margin-bottom: 4px; } .pc-price b { font-family: var(--font-d); font-size: 40px; } .pc-price span { color: var(--dim); }
.pc-tok { color: var(--acc); font-weight: 600; font-size: 14px; margin-bottom: 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.price-card li { color: var(--muted); font-size: 14.5px; padding: 6px 0 6px 24px; position: relative; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--acc); font-weight: 700; }
.price-card .btn { width: 100%; }

/* ---------- Cookie-баннер ---------- */
.cookie-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 80;
  width: min(760px, calc(100vw - 24px));
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between;
  background: rgba(28,28,30,.96); backdrop-filter: blur(14px); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px 18px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.cookie-bar span { color: var(--muted); font-size: 13.5px; flex: 1; min-width: 240px; }
.cookie-bar a { color: var(--acc); }
.cookie-bar .btn { padding: 10px 22px; }

/* ---------- Пагинация блога ---------- */
.blog-pager { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 40px; }
.blog-pager a, .blog-pager span { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--line); font-family: var(--font-d); font-size: 14px; }
.blog-pager a { color: var(--muted); transition: all .2s; }
.blog-pager a:hover { border-color: var(--acc); color: var(--acc); }
.blog-pager span.on { background: var(--acc); color: #052; border-color: var(--acc); }

/* ---------- Цифры ---------- */
.nums { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 26px); }
@media (max-width: 800px) { .nums { grid-template-columns: 1fr 1fr; } }
.num-cell {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 2.4vw, 34px); text-align: center;
  transition: border-color .3s, transform .35s cubic-bezier(.2,.8,.2,1);
}
.num-cell:hover { border-color: rgba(0,204,85,.45); transform: translateY(-5px); }
.num-cell b { display: block; font-family: var(--font-d); font-size: clamp(38px, 5vw, 60px); font-weight: 600; color: var(--acc); line-height: 1; margin-bottom: 12px; }
.num-cell span { color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* ---------- Сравнение ---------- */
.cmp { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.cmp-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr; align-items: center; }
.cmp-row > span { padding: 16px clamp(10px, 1.4vw, 20px); font-size: 13.5px; color: var(--muted); border-bottom: 1px solid var(--line); }
.cmp-row:last-child > span { border-bottom: 0; }
.cmp-head > span { font-family: var(--font-d); font-size: 12.5px; text-transform: lowercase; color: var(--dim); background: var(--panel); }
.cmp-head .cmp-us { color: var(--acc); }
.cmp-k { font-weight: 600; color: #fff !important; }
.cmp-us { background: var(--acc-soft); color: #fff !important; font-weight: 600; border-left: 1px solid rgba(0,204,85,.3); border-right: 1px solid rgba(0,204,85,.3); }
.cmp-row .y { color: var(--acc); } .cmp-row .n { color: var(--dim); }
@media (max-width: 900px) {
  .cmp { border: 0; overflow-x: auto; }
  .cmp-inner, .cmp { min-width: 680px; }
}

/* ---------- Партнёрка-тизер ---------- */
.ptease {
  border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden;
  background: radial-gradient(120% 150% at 85% 20%, rgba(0,204,85,.16), transparent 55%), var(--panel);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: clamp(32px, 5vw, 64px);
}
.ptease-in { max-width: 640px; }
.ptease-in h2 { margin: 12px 0 16px; }
.ptease-in .lead { margin-bottom: 28px; }
.ptease-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.ptease-badge {
  flex-shrink: 0; text-align: center; border: 1px solid rgba(0,204,85,.4); border-radius: var(--r-md);
  padding: 28px 34px; background: rgba(0,204,85,.06);
}
.ptease-badge b { font-family: var(--font-d); font-size: clamp(48px, 6vw, 76px); color: var(--acc); line-height: 1; display: block; }
.ptease-badge span { color: var(--muted); font-size: 13px; margin-top: 10px; display: block; }
@media (max-width: 820px) { .ptease { flex-direction: column; align-items: flex-start; } .ptease-badge { align-self: center; } }

/* ---------- Переключатель оплаты ---------- */
.bill-toggle { font-family: var(--font-d); font-size: 14px; text-transform: lowercase; background: transparent; border: 0; color: var(--muted); padding: 10px 22px; border-radius: 999px; cursor: pointer; transition: all .25s; display: inline-flex; align-items: center; gap: 8px; }
.bill-toggle.on { background: var(--acc); color: #052; }
.bill-toggle .save { font-size: 11px; background: rgba(0,0,0,.18); padding: 2px 8px; border-radius: 20px; }
.bill-toggle:not(.on) .save { background: var(--acc-soft); color: var(--acc); }

/* ---------- Таблица расценок ---------- */
.rate-row { display: grid; grid-template-columns: 1.1fr 1.6fr .7fr; align-items: center; }
.rate-row > span { padding: 15px clamp(12px, 1.6vw, 22px); font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--line); }
.rate-row:last-child > span { border-bottom: 0; }
.rate-head > span { font-family: var(--font-d); font-size: 12.5px; text-transform: lowercase; color: var(--dim); background: var(--panel); }
.rate-row .cmp-us { text-align: center; }
@media (max-width: 700px) { .rates-wrap, .rate-row { min-width: 520px; } #rates .cmp { overflow-x: auto; } }

/* ---------- Соцсети-флоу (лента шагов) ---------- */
.social-flow { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; margin-top: clamp(30px, 4vw, 48px); }
.social-flow .step {
  font-family: var(--font-d); font-size: clamp(12px, 1vw, 15px); font-weight: 500; text-transform: lowercase;
  border: 1px solid rgba(0,204,85,.35); border-radius: 999px; padding: 12px 20px; color: #fff;
  background: var(--acc-soft);
}
.social-flow .arr { color: var(--acc); opacity: .7; }
