:root {
  --ink: #0a0a14;
  --ink-2: #0f0f1f;
  --paper: #faf9f7;
  --paper-2: #ffffff;
  --muted: #6b6b78;
  --muted-light: #9999aa;
  --violet: #7c5cff;
  --blue: #4f8cff;
  --pink: #ff4fa3;
  --neon: #b06bff;
  --grad-primary: linear-gradient(135deg, var(--violet) 0%, var(--blue) 50%, var(--pink) 100%);
  --grad-soft: linear-gradient(135deg, rgba(124,92,255,.16), rgba(255,79,163,.12));
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-soft: 0 20px 60px -20px rgba(20,10,60,.25);
  --shadow-dark: 0 30px 80px -30px rgba(0,0,0,.6);
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: .025; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%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");
}

.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; border-radius: 100px; padding: 14px 28px;
  font-size: 15px; transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-primary); color: #fff;
  box-shadow: 0 14px 40px -10px rgba(124,92,255,.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -8px rgba(124,92,255,.7); }
.btn--ghost {
  background: rgba(124,92,255,.08); color: var(--ink);
  border: 1px solid rgba(124,92,255,.25);
}
section--dark .btn--ghost, .section--dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.btn--ghost:hover { transform: translateY(-2px); background: rgba(124,92,255,.15); }
.btn--large { padding: 17px 34px; font-size: 16px; }
.btn--small { padding: 9px 18px; font-size: 13px; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,249,247,.7); backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background .3s;
}
.nav__inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.nav__logo .dot { color: var(--violet); }
.nav__links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 600; color: var(--muted); flex: 1; justify-content: center; }
.nav__links a:hover { color: var(--ink); }
.nav__burger { display: none; flex-direction: column; gap: 4px; width: 24px; }
.nav__burger span { height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; padding: 7px 16px; border-radius: 100px;
  background: rgba(124,92,255,.1); border: 1px solid rgba(124,92,255,.25); color: var(--violet);
}
.badge__pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #2ee6a6;
  box-shadow: 0 0 0 0 rgba(46,230,166,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,230,166,.6); }
  70% { box-shadow: 0 0 0 8px rgba(46,230,166,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,230,166,0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 170px 0 120px; text-align: center; overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124,92,255,.15), transparent 70%);
}
.hero__glow {
  position: absolute; width: 900px; height: 900px; left: 50%; top: -300px;
  transform: translateX(-50%); background: var(--grad-soft); border-radius: 50%;
  filter: blur(100px); z-index: -1;
}
.hero__inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.hero__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(40px, 7vw, 76px); line-height: 1.04; margin: 22px 0 24px;
}
.hero__subtitle { font-size: 19px; color: var(--muted); max-width: 640px; margin: 0 auto 18px; line-height: 1.6; }
.hero__tagline { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 36px; }
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__microcopy { font-size: 13.5px; color: var(--muted-light); margin-top: 14px; }

.hero__visuals { position: relative; height: 360px; margin-top: 70px; max-width: 920px; margin-inline: auto; }

.float-card {
  position: absolute; background: rgba(255,255,255,.75); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft); padding: 18px;
}
.float-card--telegram { left: 0; top: 10px; width: 270px; animation: floatY 6s ease-in-out infinite; }
.float-card--score { right: 0; top: 0; width: 300px; text-align: left; animation: floatY 7s ease-in-out infinite .4s; }
.float-card--mini {
  left: 50%; bottom: 0; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--violet);
  animation: floatY 5s ease-in-out infinite .2s;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-card--mini { animation-name: floatYMini; }
@keyframes floatYMini { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,-10px); } }

.tg-mock__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tg-mock__avatar {
  width: 34px; height: 34px; border-radius: 10px; background: var(--grad-primary);
  color: #fff; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center;
}
.tg-mock__name { font-weight: 700; font-size: 13.5px; text-align: left; }
.tg-mock__status { font-size: 11px; color: var(--muted-light); text-align: left; }
.tg-mock__bubble { background: #fff; border-radius: 14px; padding: 12px 14px; text-align: left; box-shadow: 0 4px 14px rgba(0,0,0,.05); }
.tg-mock__title { font-size: 11px; color: var(--muted-light); margin-bottom: 4px; }
.tg-mock__job { font-weight: 700; font-size: 13.5px; margin-bottom: 8px; }
.tg-mock__score { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); }
.tg-mock__score b { color: var(--violet); font-size: 14px; }

.score-card__label { font-size: 12px; color: var(--muted); margin: 6px 0 12px; font-weight: 700; }
.skill-bar { height: 8px; border-radius: 100px; background: rgba(0,0,0,.06); margin-bottom: 10px; position: relative; overflow: hidden; }
.skill-bar__fill {
  height: 100%; border-radius: 100px; background: var(--grad-primary);
  width: 0; transition: width 1.4s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.skill-bar__fill::after {
  content: attr(data-label); position: absolute; top: -19px; left: 0; font-size: 10.5px; color: var(--muted); font-weight: 700;
}
.in-view .skill-bar__fill { width: var(--w); }

.score-ring { position: relative; width: 86px; height: 86px; flex-shrink: 0; }
.score-ring--lg { width: 120px; height: 120px; }
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring circle { fill: none; stroke-width: 9; }
.score-ring__bg { stroke: rgba(124,92,255,.12); }
.score-ring__fg {
  stroke: url(#none); stroke: var(--violet); stroke-linecap: round;
  stroke-dasharray: 327; stroke-dashoffset: 327;
  transition: stroke-dashoffset 1.6s cubic-bezier(.2,.8,.2,1);
}
.section--dark .score-ring__bg { stroke: rgba(255,255,255,.1); }
.in-view .score-ring__fg { stroke-dashoffset: calc(327 - (327 * var(--p) / 100)); }
.score-ring__num {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
}
.score-ring--lg .score-ring__num { font-size: 26px; }
.score-ring__num span { font-size: 11px; color: var(--muted-light); margin-left: 2px; font-weight: 600; }

/* ---------- Video ---------- */
.video-section { padding: 30px 0 110px; text-align: center; }
.video-caption { font-weight: 700; font-size: 15px; color: var(--violet); margin-bottom: 22px; }
.video-frame {
  max-width: 880px; margin: 0 auto; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-dark); border: 1px solid rgba(0,0,0,.08);
}
.video-frame__bar {
  background: #1c1c28; padding: 12px 16px; display: flex; align-items: center; gap: 7px;
}
.video-frame__bar span { width: 11px; height: 11px; border-radius: 50%; background: #50506a; }
.video-frame__bar span:nth-child(1) { background: #ff5f57; }
.video-frame__bar span:nth-child(2) { background: #febc2e; }
.video-frame__bar span:nth-child(3) { background: #28c840; }
.video-frame__url {
  flex: 1; text-align: center; font-size: 12px; color: #8a8aa0; background: #14141e;
  border-radius: 6px; padding: 4px 12px; margin-right: 40px;
}
.video-frame__screen { position: relative; background: #000; aspect-ratio: 16/9; }
.video-frame__screen video { width: 100%; height: 100%; object-fit: cover; }
.video-frame__overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(10,10,20,.2), rgba(10,10,20,.55));
  cursor: pointer; transition: opacity .4s ease;
}
.video-frame__overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,.16); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: transform .25s ease;
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 32px; height: 32px; margin-left: 3px; }

.video-steps { display: flex; gap: 18px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.video-step {
  display: flex; align-items: center; gap: 10px; background: var(--paper-2);
  border: 1px solid rgba(0,0,0,.06); border-radius: 100px; padding: 10px 20px 10px 10px;
  font-weight: 700; font-size: 14px; box-shadow: var(--shadow-soft);
}
.video-step__num {
  width: 30px; height: 30px; border-radius: 50%; background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-family: var(--font-display);
}

/* ---------- Sections generic ---------- */
.section { padding: 110px 0; }
.section--dark { background: var(--ink); color: #fff; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 14px;
}
.eyebrow--light { color: var(--neon); }
.section__title {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em;
  font-size: clamp(30px, 4.4vw, 46px); line-height: 1.12; max-width: 760px; margin-bottom: 22px;
}
.section__title--light { color: #fff; }
.section__text { font-size: 17px; color: var(--muted); max-width: 660px; line-height: 1.7; margin-bottom: 20px; }
.section__text--light { color: rgba(255,255,255,.65); }

/* ---------- Problem / Pain ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 50px 0 60px; }
.pain-card {
  background: var(--paper-2); border-radius: var(--radius-md); padding: 26px 22px;
  border: 1px solid rgba(0,0,0,.05); box-shadow: var(--shadow-soft);
}
.pain-card__icon { font-size: 26px; margin-bottom: 14px; }
.pain-card p { font-weight: 700; font-size: 15px; line-height: 1.4; }

.chaos-infographic {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  background: var(--ink); border-radius: var(--radius-lg); padding: 44px; color: #fff;
}
.chaos-infographic__label { display: block; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 16px; }
.chaos-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.chaos-cloud span {
  font-size: 12px; padding: 6px 12px; border-radius: 100px; background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.08);
}
.chaos-infographic__arrow { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--neon); }
.chaos-infographic__arrow svg { width: 60px; }
.chaos-infographic__arrow span { font-size: 12px; font-weight: 700; white-space: nowrap; }
.job-mini-card {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(124,92,255,.3); border-radius: 12px;
  padding: 12px 16px; margin-bottom: 10px; font-size: 13.5px; font-weight: 600;
}
.job-mini-card b { color: var(--neon); font-family: var(--font-display); }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 60px; padding-left: 30px; }
.timeline__line { position: absolute; left: 19px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--violet), var(--pink)); }
.timeline__step { position: relative; display: flex; gap: 24px; padding-bottom: 44px; }
.timeline__step:last-child { padding-bottom: 0; }
.timeline__num {
  position: absolute; left: -30px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-primary); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--ink);
}
.timeline__body { padding-left: 50px; }
.timeline__body h3 { font-size: 19px; margin-bottom: 6px; }
.timeline__body p { color: rgba(255,255,255,.55); font-size: 14.5px; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 50px; }
.feature-card {
  background: var(--paper-2); border-radius: var(--radius-md); padding: 28px 24px;
  border: 1px solid rgba(0,0,0,.05); box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -25px rgba(124,92,255,.3); }
.feature-card__icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 16.5px; margin-bottom: 8px; font-weight: 700; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- Scoring dashboard ---------- */
.dashboard { margin-top: 50px; }
.dashboard__main {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px); border-radius: var(--radius-lg); padding: 40px;
}
.dashboard__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.dashboard__head h3 { font-size: 22px; margin-bottom: 6px; }
.dashboard__tag { font-size: 13px; color: rgba(255,255,255,.5); }
.dashboard__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 28px; }
.match { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #2ee6a6; margin-bottom: 14px; }
.match--gap { color: #ff9d6b; }
.match span { width: 20px; height: 20px; border-radius: 50%; background: rgba(46,230,166,.15); display: flex; align-items: center; justify-content: center; font-size: 12px; }
.match--gap span { background: rgba(255,157,107,.15); }
.check-list li { font-size: 14.5px; color: rgba(255,255,255,.8); padding: 8px 0 8px 22px; position: relative; border-bottom: 1px solid rgba(255,255,255,.06); }
.check-list--ok li::before { content: '✓'; position: absolute; left: 0; color: #2ee6a6; font-weight: 700; }
.check-list--gap li::before { content: '−'; position: absolute; left: 0; color: #ff9d6b; font-weight: 700; }
.dashboard__rec {
  background: rgba(124,92,255,.12); border: 1px solid rgba(124,92,255,.3); border-radius: 14px;
  padding: 16px 20px; font-size: 14.5px; line-height: 1.6; margin-bottom: 26px; color: rgba(255,255,255,.9);
}

/* ---------- Telegram section ---------- */
.telegram__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.telegram__text .section__title, .telegram__text .section__text { max-width: 100%; }
.tg-full {
  max-width: 380px; margin: 0 auto; background: var(--paper-2); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow-soft); padding: 22px;
}
.tg-full__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tg-full__bubble { background: #f3f1fb; border-radius: 16px; padding: 18px; font-size: 14px; }
.tg-full__bubble p { margin-bottom: 8px; line-height: 1.5; }
.tg-full__title b { font-family: var(--font-display); }
.hl { color: var(--violet); font-family: var(--font-display); }
.tg-full__why { color: var(--muted); font-size: 13px; margin-top: 8px; }
.tg-full__actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.tg-full__actions button {
  flex: 1; background: var(--grad-primary); color: #fff; font-weight: 700; font-size: 12.5px;
  padding: 10px 12px; border-radius: 100px; white-space: nowrap;
}
.tg-full__actions button.ghost { background: rgba(0,0,0,.06); color: var(--ink); flex: none; }

/* ---------- Audience ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 50px; }
.audience-card:nth-child(4), .audience-card:nth-child(5) { grid-column: span 1; }
.audience-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md);
  padding: 28px; transition: border-color .3s, transform .3s;
}
.audience-card:hover { border-color: rgba(124,92,255,.5); transform: translateY(-4px); }
.audience-card__icon { font-size: 26px; margin-bottom: 14px; }
.audience-card h3 { font-size: 17px; margin-bottom: 8px; }
.audience-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.55; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 50px; align-items: stretch; }
.pricing-grid--4 { grid-template-columns: repeat(4,1fr); }
.price-card {
  background: var(--paper-2); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius-lg);
  padding: 36px 30px; box-shadow: var(--shadow-soft); position: relative; display: flex; flex-direction: column;
}
.price-card--popular { border: 2px solid var(--violet); transform: scale(1.03); box-shadow: 0 30px 80px -25px rgba(124,92,255,.45); }
.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-primary); color: #fff; font-size: 12px; font-weight: 800;
  padding: 6px 16px; border-radius: 100px; white-space: nowrap;
}
.price-card__head h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.price-card__head p { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; line-height: 1.5; min-height: 40px; }
.price-card__price { font-family: var(--font-display); font-size: 38px; font-weight: 700; margin-bottom: 24px; }
.price-card__price span { font-size: 15px; color: var(--muted-light); font-weight: 500; }
.price-card__list { margin-bottom: 28px; flex: 1; }
.price-card__list li { font-size: 14px; padding: 9px 0 9px 26px; position: relative; border-bottom: 1px solid rgba(0,0,0,.05); }
.price-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--violet); font-weight: 700; }
.price-card__list li.muted { color: var(--muted-light); }
.price-card__list li.muted::before { content: '—'; color: var(--muted-light); }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; margin-top: 50px; }
.ba-col { border-radius: var(--radius-lg); padding: 36px; }
.ba-col--before { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); }
.ba-col--after { background: rgba(124,92,255,.12); border: 1px solid rgba(124,92,255,.35); }
.ba-col h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 18px; }
.ba-col--before h3 { color: rgba(255,255,255,.5); }
.ba-col--after h3 { color: var(--neon); }
.ba-col li { font-size: 15px; padding: 10px 0 10px 26px; position: relative; color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.06); }
.ba-col--before li::before { content: '✕'; position: absolute; left: 0; color: #ff6b81; }
.ba-col--after li::before { content: '✓'; position: absolute; left: 0; color: #2ee6a6; }
.ba-arrow { font-size: 28px; color: var(--neon); font-weight: 700; }

/* ---------- Trust ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 40px; }
.trust-item {
  display: flex; align-items: center; gap: 12px; background: var(--paper-2); border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px; padding: 16px 20px; font-weight: 600; font-size: 14.5px; box-shadow: var(--shadow-soft);
}
.trust-item span { color: var(--violet); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item { background: var(--paper-2); border: 1px solid rgba(0,0,0,.06); border-radius: 16px; overflow: hidden; }
.faq-item__q {
  width: 100%; text-align: left; padding: 20px 24px; font-weight: 700; font-size: 15.5px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item__q span { font-size: 22px; color: var(--violet); transition: transform .3s ease; font-weight: 400; }
.faq-item.open .faq-item__q span { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item__a p { padding: 0 24px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative; background: var(--ink); color: #fff; padding: 120px 0; text-align: center; overflow: hidden;
}
.hero__glow--cta { top: -200px; }
.final-cta__inner { position: relative; z-index: 1; }
.final-cta h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px,5vw,52px); line-height: 1.1; margin-bottom: 20px; }
.final-cta p { color: rgba(255,255,255,.6); font-size: 17px; max-width: 540px; margin: 0 auto 36px; }
.final-cta__ctas { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; flex-wrap: wrap; }

.final-card {
  max-width: 540px; margin: 0 auto; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px); border-radius: var(--radius-lg); padding: 22px;
  display: flex; align-items: center; gap: 20px; text-align: left;
}
.final-card__body { flex: 1; }
.final-card__title { font-weight: 700; font-size: 15.5px; margin-bottom: 4px; }
.final-card__sub { font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 40px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__brand { font-family: var(--font-display); font-weight: 700; color: #fff; }
.footer__brand .dot { color: var(--violet); }
.footer__links { display: flex; gap: 20px; font-size: 13.5px; }
.footer__copy { font-size: 12.5px; width: 100%; text-align: center; opacity: .5; order: 3; }

/* ---------- Animations ---------- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
.nav__links--open {
  display: flex !important; position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column; background: var(--paper-2); padding: 20px 24px; gap: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08); border-bottom: 1px solid rgba(0,0,0,.05);
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .pain-grid { grid-template-columns: repeat(2,1fr); }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .price-card--popular { transform: none; }
  .telegram__grid { grid-template-columns: 1fr; }
  .telegram__text { text-align: center; }
  .telegram__text .section__title, .telegram__text .section__text { margin-inline: auto; }
  .chaos-infographic { grid-template-columns: 1fr; text-align: center; }
  .chaos-infographic__arrow { transform: rotate(90deg); margin: 10px auto; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { text-align: center; transform: rotate(90deg); }
  .trust-grid { grid-template-columns: 1fr; }
  .dashboard__cols { grid-template-columns: 1fr; }
  .hero__visuals { height: 540px; }
  .float-card--telegram { left: 50%; top: 0; transform: translateX(-50%); }
  .float-card--score { right: auto; left: 50%; top: 200px; transform: translateX(-50%); }
  .float-card--mini { bottom: -10px; }
}

@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .hero { padding: 140px 0 80px; }
  .video-steps { flex-direction: column; align-items: stretch; }
  .hero__visuals { height: 480px; }
  .float-card { width: 240px !important; left: 50% !important; right: auto !important; transform: translateX(-50%) !important; }
  .float-card--score { top: 190px; }
  .float-card--mini { bottom: -20px; }
  .nav__cta { display: none; }
}
