/* PROCENKA — Dark Product landing */

:root {
  --bg: #060806;
  --bg-elevated: #0e120e;
  --bg-card: #121812;
  --bg-card-hover: #161d16;
  --accent: #62d11d;
  --accent-bright: #62d11d;
  --accent-dim: rgba(98, 209, 29, 0.12);
  --accent-glow: rgba(98, 209, 29, 0.35);
  --text: #f2f4f0;
  --text-muted: #8a9688;
  --text-dim: #5c665a;
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(98, 209, 29, 0.25);
  --danger: #ff5454;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 72px;
  --max-w: 1180px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max-w), calc(100% - 40px));
  margin-inline: auto;
}

/* ── Header ── */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(6, 8, 6, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s, box-shadow 0.25s;
}

.header.scrolled {
  background: rgba(6, 8, 6, 0.95);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}

.nav a:hover { color: var(--text); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--accent);
  color: #0a0c0a;
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn--primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 36px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--border-accent);
  background: var(--accent-dim);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn--block { width: 100%; }

/* ── Hero ── */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 80px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0.5;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-bright);
  margin-bottom: 20px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--accent-bright);
}

.hero__desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 28px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero__tag {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero__tag strong { color: var(--accent-bright); font-weight: 600; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.hero__visual {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.hero__visual[data-hero-tilt] {
  cursor: default;
}

.hero__visual img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-accent);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px var(--accent-dim);
}

.hero-mockup {
  position: relative;
  z-index: 1;
  perspective: 1400px;
}

.hero-mockup__badges {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  transform: none;
}

.hero-mockup__device {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-accent);
  background: var(--bg-card);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 80px var(--accent-dim);
  overflow: hidden;
  transform: rotateX(calc(var(--tilt-x, 8) * 1deg)) rotateY(calc(var(--tilt-y, -16) * 1deg));
  transition: transform 0.12s ease-out;
  will-change: transform;
}

.hero-mockup__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-bottom: 1px solid var(--border);
}

.hero-mockup__bar span:nth-child(-n+3) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-mockup__bar span:first-child { background: rgba(255, 84, 84, 0.65); }
.hero-mockup__bar span:nth-child(2) { background: rgba(255, 193, 7, 0.65); }
.hero-mockup__bar span:nth-child(3) { background: rgba(98, 209, 29, 0.55); }

.hero-mockup__url {
  margin-left: 8px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-mockup__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fff;
}

.hero-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.hero-mockup__float {
  position: absolute;
  z-index: 1;
  transition: transform 0.12s ease-out;
  will-change: transform;
}

.hero-mockup__float-inner {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: 1px solid var(--border-accent);
  background: rgba(18, 24, 18, 0.92);
  color: var(--accent-bright);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 24px var(--accent-dim);
  backdrop-filter: blur(8px);
  animation: heroFloat 4s ease-in-out infinite;
}

.hero-mockup__float[data-pos="1"] { top: 0;   left: -8%; }
.hero-mockup__float[data-pos="2"] { top: 8%;  right: -10%; }
.hero-mockup__float[data-pos="3"] { top: 22%; left: -12%; }
.hero-mockup__float[data-pos="4"] { top: 36%; right: -8%; }
.hero-mockup__float[data-pos="5"] { top: 50%; left: -6%; }
.hero-mockup__float[data-pos="6"] { top: 62%; right: -12%; }
.hero-mockup__float[data-pos="7"] { bottom: 20%; left: -4%; }
.hero-mockup__float[data-pos="8"] { bottom: 8%; right: -6%; }
.hero-mockup__float[data-pos="9"] { bottom: 0; left: 6%; }

.hero-mockup__float[data-pos="2"] .hero-mockup__float-inner { animation-delay: 0.35s; }
.hero-mockup__float[data-pos="3"] .hero-mockup__float-inner { animation-delay: 0.7s; }
.hero-mockup__float[data-pos="4"] .hero-mockup__float-inner { animation-delay: 1.05s; }
.hero-mockup__float[data-pos="5"] .hero-mockup__float-inner { animation-delay: 1.4s; }
.hero-mockup__float[data-pos="6"] .hero-mockup__float-inner { animation-delay: 1.75s; }
.hero-mockup__float[data-pos="7"] .hero-mockup__float-inner { animation-delay: 2.1s; }
.hero-mockup__float[data-pos="8"] .hero-mockup__float-inner { animation-delay: 2.45s; }
.hero-mockup__float[data-pos="9"] .hero-mockup__float-inner { animation-delay: 2.8s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mockup__device { transition: none; }
  .hero-mockup__float { transition: none; }
  .hero-mockup__float-inner { animation: none; }
}

.hero__visual-glow {
  position: absolute;
  inset: 20%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

/* ── Stats ── */

.stats {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 36px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat__num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Sections common ── */

.section {
  padding: 88px 0;
}

.section--alt { background: var(--bg-elevated); }

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.15;
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 0 48px;
}

.section__desc--center {
  margin-inline: auto;
  text-align: center;
}

.section__header--center { text-align: center; }

/* ── Pain (problem block) ── */

.pain2 {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.pain2__content .section__title {
  margin-bottom: 12px;
}

.pain2__lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
}

.pain2__list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pain2__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pain2__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 10px rgba(255, 84, 84, 0.45);
}

.pain2__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.pain2__item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pain2__solution {
  margin: 0;
  padding: 16px 20px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--accent-bright);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
}

.pain2__visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain2__panel {
  position: relative;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.pain2__panel--before {
  background: rgba(255, 84, 84, 0.04);
  border-color: rgba(255, 84, 84, 0.18);
}

.pain2__panel--after {
  background: var(--accent-dim);
  border-color: var(--border-accent);
}

.pain2__badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.pain2__badge--bad {
  color: #ff8a8a;
  background: rgba(255, 84, 84, 0.12);
}

.pain2__badge--good {
  color: var(--accent-bright);
  background: rgba(98, 209, 29, 0.15);
}

.pain2__browser {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.pain2__browser-bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.pain2__browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.pain2__browser-bar span:first-child { background: rgba(255, 84, 84, 0.55); }
.pain2__browser-bar span:nth-child(2) { background: rgba(255, 193, 7, 0.55); }
.pain2__browser-bar span:nth-child(3) { background: rgba(98, 209, 29, 0.45); }

.pain2__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px;
  border-bottom: 1px solid var(--border);
}

.pain2__tab {
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  white-space: nowrap;
}

.pain2__tab--active {
  color: var(--text);
  border-color: rgba(255, 84, 84, 0.35);
  background: rgba(255, 84, 84, 0.08);
}

.pain2__chaos {
  padding: 16px 12px 14px;
}

.pain2__chaos-line {
  height: 8px;
  margin-bottom: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.pain2__chaos-line--w80 { width: 80%; }
.pain2__chaos-line--w60 { width: 60%; }
.pain2__chaos-line--w90 { width: 90%; }

.pain2__chaos-note {
  margin: 10px 0 0;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255, 84, 84, 0.85);
}

.pain2__arrow {
  display: flex;
  justify-content: center;
  color: var(--accent);
}

.pain2__arrow svg {
  width: 28px;
  height: 28px;
  transform: rotate(90deg);
}

.pain2__app {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  overflow: hidden;
}

.pain2__app-head {
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-bright);
  background: rgba(98, 209, 29, 0.08);
  border-bottom: 1px solid var(--border-accent);
}

.pain2__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.pain2__table th,
.pain2__table td {
  padding: 9px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pain2__table th {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pain2__table td {
  color: var(--text);
}

.pain2__row--best td {
  color: var(--accent-bright);
  font-weight: 600;
  background: rgba(98, 209, 29, 0.06);
}

.pain2__table tr:last-child td {
  border-bottom: none;
}

/* ── Steps ── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.step:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.step__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px var(--accent);
  color: transparent;
}

.step__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.step__desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ── Suppliers ── */

.suppliers {
  padding: 48px 0;
  border-block: 1px solid var(--border);
}

.suppliers__label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.suppliers__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 40px;
}

.suppliers__grid img {
  height: 36px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.8);
  transition: opacity 0.2s;
}

.suppliers__grid img:hover { opacity: 0.9; }

/* ── Features ── */

.features {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature--reverse { direction: rtl; }
.feature--reverse > * { direction: ltr; }

.feature__content {}

.feature__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.feature__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.feature__desc {
  color: var(--text-muted);
  margin: 0 0 20px;
}

.feature__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.feature__bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature__img-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
}

.feature__img-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.feature__img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-accent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature__img-btn:hover .feature__img {
  transform: scale(1.02);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--border-accent);
}

.feature__img-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(18, 24, 18, 0.88);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.feature__img-hint svg {
  width: 14px;
  height: 14px;
  color: var(--accent-bright);
}

.feature__img-btn:hover .feature__img-hint,
.feature__img-btn:focus-visible .feature__img-hint {
  opacity: 1;
  transform: translateY(0);
}

/* ── Lightbox ── */

.lightbox {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] { display: none; }

.lightbox__img {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-accent);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(18, 24, 18, 0.9);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.lightbox__close:hover { color: var(--accent-bright); border-color: var(--border-accent); }

/* ── Video ── */

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Pricing ── */

.pricing__tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  background: var(--bg-card);
  border-radius: 14px;
  padding: 4px;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid var(--border);
}

.pricing__tab {
  padding: 12px 28px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.pricing__tab.active {
  background: var(--accent);
  color: #0a0c0a;
}

.pricing__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: -16px 0 32px;
}

.pricing__months {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.pricing__month {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

.pricing__month.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent-bright);
}

.pricing__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.pricing__card {
  flex: 0 1 340px;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.2s;
}

.pricing__card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-dim);
}

.pricing__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 12px;
}

.pricing__price {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing__per {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.pricing__features {
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.pricing__features li:last-child { border-bottom: none; }

.tgl {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
}

.tgl.on { background: var(--accent-dim); color: var(--accent); }
.tgl.on::after { content: '✓'; font-weight: 700; }
.tgl.off { background: rgba(255, 84, 84, 0.15); color: var(--danger); }
.tgl.off::after { content: '✕'; }

.pricing__total {
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
}

.pricing__total .old {
  color: var(--text-dim);
  text-decoration: line-through;
  margin-right: 8px;
}

.pricing__total .new {
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing__note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.pricing__discount {
  display: inline-block;
  background: var(--danger);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 8px;
  vertical-align: middle;
}

.pricing__panel[hidden] { display: none !important; }

/* ── FAQ ── */

.faq { max-width: 720px; margin-inline: auto; }

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__item.open .faq__q::after { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__a-inner {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq__a-inner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__item.open .faq__a { max-height: 300px; }

/* ── CTA band ── */

.cta-band {
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-dim), transparent 70%);
  pointer-events: none;
}

.cta-band__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 12px;
  position: relative;
}

.cta-band__desc {
  color: var(--text-muted);
  margin: 0 0 28px;
  position: relative;
}

.cta-band .btn { position: relative; }

/* ── Footer ── */

.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 12px 0 0;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin: 0 0 16px;
}

.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer__col a:hover { color: var(--accent-bright); }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.footer__social a svg,
.footer__social a img {
  width: 20px;
  height: 20px;
  display: block;
}

.footer__social a[aria-label="Telegram"] {
  color: #54a9eb;
}

.footer__social a[aria-label="Telegram"]:hover {
  color: #72bdf0;
  border-color: rgba(38, 165, 228, 0.5);
  background: rgba(38, 165, 228, 0.12);
}

.footer__social a[aria-label="Viber"] {
  color: #8b7cf7;
}

.footer__social a[aria-label="Viber"]:hover {
  color: #a594ff;
  border-color: rgba(115, 96, 242, 0.5);
  background: rgba(115, 96, 242, 0.12);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}

/* ── Modal (preserved functionality) ── */

.modal-bg {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-bg.open { display: flex; }

.modal-form {
  background: linear-gradient(145deg, #1a2e12, #0e180a);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 36px 32px;
  color: var(--text);
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover { color: var(--text); }

#testRequestForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#testRequestForm input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s;
}

#testRequestForm input:focus { border-color: var(--accent); }

#testRequestForm input::placeholder { color: var(--text-dim); }

#testRequestForm button[type="submit"] {
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: var(--accent);
  color: #0a0c0a;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.15s;
}

#testRequestForm button[type="submit"]:hover { background: var(--accent-bright); }

.modal-footer {
  margin-top: 16px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.modal-message {
  display: none;
  text-align: center;
  padding: 12px;
  background: var(--accent-dim);
  border-radius: 10px;
  color: var(--accent-bright);
  font-weight: 600;
}

/* ── Mobile nav ── */

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 10px;
  color: var(--text-muted);
}

.mobile-nav a:hover { background: var(--bg-card); color: var(--text); }

.mobile-nav .btn { margin-top: 12px; }

/* ── Extra tools grid ── */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.tools-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.tools-card:hover {
  border-color: rgba(98, 209, 29, 0.35);
  transform: translateY(-2px);
}

.tools-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.tools-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(98, 209, 29, 0.1);
  border-radius: 10px;
}

.tools-card__icon svg {
  width: 22px;
  height: 22px;
}

.tools-card__badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
}

.tools-card__badge--basic {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
}

.tools-card__badge--max {
  color: var(--accent);
  background: rgba(98, 209, 29, 0.12);
}

.tools-card__title {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.tools-card__desc {
  margin: 0;
  flex: 1;
  min-height: 2.75em;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ── Responsive ── */

@media (max-width: 960px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .nav, .header__actions .btn--ghost { display: none; }
  .burger { display: block; }

  .header__inner {
    gap: 10px;
  }

  .header__actions {
    margin-left: auto;
    flex-shrink: 0;
    gap: 8px;
  }

  .header__actions .btn--primary {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .hero__grid,
  .pain2,
  .feature,
  .feature--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .hero__visual {
    order: -1;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    overflow: hidden;
  }

  .hero {
    overflow: hidden;
  }

  .hero-mockup {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    perspective: none;
  }

  .hero-mockup__device {
    transform: none !important;
    --tilt-x: 0;
    --tilt-y: 0;
  }

  .hero-mockup__float-inner {
    font-size: 0.58rem;
    padding: 4px 8px;
  }

  .hero-mockup__float[data-pos="1"] { top: 2%;    left: 2%; }
  .hero-mockup__float[data-pos="2"] { top: 10%;   right: 2%; left: auto; }
  .hero-mockup__float[data-pos="3"] { top: 22%;   left: 2%; }
  .hero-mockup__float[data-pos="4"] { top: 34%;   right: 2%; left: auto; }
  .hero-mockup__float[data-pos="5"] { top: 46%;   left: 2%; }
  .hero-mockup__float[data-pos="6"] { top: 58%;   right: 2%; left: auto; }
  .hero-mockup__float[data-pos="7"] { bottom: 16%; left: 2%; top: auto; }
  .hero-mockup__float[data-pos="8"] { bottom: 8%;  right: 2%; left: auto; top: auto; }
  .hero-mockup__float[data-pos="9"] { bottom: 2%;  left: 2%; top: auto; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .hero { padding-bottom: 56px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .header__actions .btn--primary {
    padding: 8px 10px;
    font-size: 0.72rem;
  }
  .logo__img { height: 32px; }
  .hero-mockup__float-inner { font-size: 0.5rem; padding: 3px 6px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat__num { font-size: 1.6rem; }
  .tools-grid { grid-template-columns: 1fr; }
  .pricing__card { flex: 1 1 100%; }
}
