/* =====================================================
   Герой ВПН (Hero VPN) — herovpn24.lol
   Тема: супергерой / круглосуточная защита 24/7
   Цвета: tech-green + electric blue на тёмном
   Шрифты: Albert Sans (заголовки) + Inter Tight (тело)
   ===================================================== */

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

:root {
  --primary: #00FF94;
  --primary-deep: #00CC76;
  --accent: #1E90FF;
  --accent-deep: #1467C2;
  --bg: #0A0F1F;
  --bg-alt: #131A33;
  --bg-card: rgba(20, 28, 52, 0.6);
  --bg-card-solid: #141C34;
  --text: #E8F0FF;
  --text-muted: #8A9CC2;
  --border: rgba(0, 255, 148, 0.18);
  --border-soft: rgba(232, 240, 255, 0.08);
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-card: 0 6px 22px rgba(0, 0, 0, 0.45);
  --shadow-card-hover: 0 18px 44px rgba(0, 255, 148, 0.18), 0 6px 16px rgba(30, 144, 255, 0.16);
  --font-heading: 'Albert Sans', sans-serif;
  --font-body: 'Inter Tight', sans-serif;
  --container: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
h3 { font-size: 1.18rem; }
p { color: var(--text); }

.text-muted { color: var(--text-muted); }

/* =====================================================
   HEADER (Nav D — тёмный sticky)
   ===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 31, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.header.scrolled { background: rgba(10, 15, 31, 0.97); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 18px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.18rem;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.header__logo:hover { color: var(--primary); }

.header__logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 22px;
}

.nav__link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .96rem;
  position: relative;
  transition: color .2s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width .25s ease;
}

.nav__link:hover { color: #FFFFFF; }
.nav__link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(120deg, var(--primary), #34FFA5);
  color: #000000;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: .94rem;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(0, 255, 148, 0.28);
  transition: transform .18s ease, box-shadow .2s ease, color .2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  color: #000000;
  box-shadow: 0 10px 24px rgba(0, 255, 148, 0.42);
}

.nav-cta::after { content: '→'; font-weight: 700; }

.burger {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: all .25s ease;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}

.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed;
  top: 70px;
  right: 0;
  width: 280px;
  height: calc(100vh - 70px);
  background: var(--bg-alt);
  border-left: 1px solid var(--border-soft);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 95;
}

.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: var(--text);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav a:hover { color: var(--primary); }

/* =====================================================
   BUTTONS (Buttons D — с иконкой/стрелкой, 8px)
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
  line-height: 1;
}

.btn--primary {
  background: linear-gradient(120deg, var(--primary), #34FFA5 60%, var(--accent));
  color: #03110A;
  box-shadow: 0 10px 28px rgba(0, 255, 148, 0.30);
}

.btn--primary::after {
  content: '→';
  font-weight: 800;
  transition: transform .2s ease;
}

.btn--primary:hover {
  transform: translateY(-3px);
  color: #03110A;
  box-shadow: 0 16px 38px rgba(0, 255, 148, 0.45);
}

.btn--primary:hover::after { transform: translateX(4px); }

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

.btn--outline::after {
  content: '↓';
  font-weight: 700;
}

.btn--outline:hover {
  background: rgba(0, 255, 148, 0.08);
  border-color: var(--primary);
  color: #FFFFFF;
}

.btn--small { padding: 10px 18px; font-size: .9rem; }

/* =====================================================
   HERO (Hero H — анимированный mesh-градиент)
   ===================================================== */
.hero {
  position: relative;
  padding: 88px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  z-index: -1;
  animation: meshFloat 14s ease-in-out infinite;
}

.hero::before {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 65%);
  top: -180px;
  left: -120px;
}

.hero::after {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  bottom: -200px;
  right: -160px;
  animation-delay: -6s;
}

.hero__mesh {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 148, 0.45) 0%, transparent 65%);
  filter: blur(90px);
  top: 35%;
  left: 45%;
  z-index: -1;
  animation: meshFloat 18s ease-in-out infinite reverse;
}

@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, -30px) scale(1.15); }
  66%      { transform: translate(-40px, 50px) scale(0.95); }
}

/* Tech overlay grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 148, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 144, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__inner {
  text-align: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 148, 0.10);
  border: 1px solid var(--border);
  color: var(--primary);
  font-weight: 600;
  font-size: .86rem;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  margin-bottom: 22px;
  background: linear-gradient(120deg, #FFFFFF 0%, #C8FFE5 45%, #B0D9FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 32px;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Price tag (Price D — встроен в hero) */
.hero__price {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
  padding: 10px 22px;
  background: rgba(30, 144, 255, 0.10);
  border: 1px dashed rgba(30, 144, 255, 0.45);
  border-radius: 50px;
}

.hero__price-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
}

.hero__price-text {
  color: var(--text-muted);
  font-size: .92rem;
}

.hero__price-divider {
  width: 1px;
  height: 18px;
  background: var(--border-soft);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  font-size: .92rem;
  color: var(--text-muted);
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 36px 0;
}

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

.stats__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.9rem;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1.1;
}

.stats__label {
  color: var(--text-muted);
  font-size: .86rem;
  margin-top: 4px;
  display: block;
}

/* =====================================================
   SECTIONS (Sections F — все тёмные)
   ===================================================== */
.section {
  padding: 88px 0;
  position: relative;
}

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

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section__head h2 { margin-bottom: 14px; }

.section__head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* =====================================================
   FEATURES / CARDS (Cards A — тень + hover-подъём)
   ===================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border);
}

.card:hover::before { opacity: 1; }

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 255, 148, 0.18), rgba(30, 144, 255, 0.18));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}

.card h3 {
  margin-bottom: 10px;
  color: #FFFFFF;
}

.card p {
  color: var(--text-muted);
  font-size: .96rem;
}

/* =====================================================
   PLATFORMS
   ===================================================== */
.platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.platform {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.platform:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border);
  color: var(--text);
}

.platform__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 255, 148, 0.16), rgba(30, 144, 255, 0.16));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.platform__icon svg { width: 26px; height: 26px; }

.platform__info { flex: 1; }
.platform__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 2px;
}
.platform__hint {
  font-size: .82rem;
  color: var(--text-muted);
}

.platform__arrow {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
}

/* =====================================================
   WHY-US TEXT BLOCK
   ===================================================== */
.why {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.why h2 { margin-bottom: 18px; }
.why p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 1rem;
}

.why__list {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}

.why__list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px dashed var(--border-soft);
  color: var(--text);
  font-size: .98rem;
}

.why__list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 12px rgba(0, 255, 148, 0.45);
}

.why__panel {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}

.why__panel h3 { margin-bottom: 12px; }

.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.why__stat {
  background: rgba(10, 15, 31, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
}

.why__stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  display: block;
}

.why__stat-text {
  color: var(--text-muted);
  font-size: .82rem;
  margin-top: 4px;
}

/* =====================================================
   USE CASES
   ===================================================== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.case:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border);
}

.case__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.case h3 {
  margin-bottom: 8px;
}

.case p {
  color: var(--text-muted);
  font-size: .94rem;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: linear-gradient(120deg, rgba(0, 255, 148, 0.14), rgba(30, 144, 255, 0.14));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -120px;
  left: -80px;
  filter: blur(80px);
  opacity: 0.5;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: -120px;
  right: -80px;
  filter: blur(80px);
  opacity: 0.5;
}

.cta-banner h2 {
  position: relative;
  margin-bottom: 14px;
}

.cta-banner p {
  position: relative;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

/* =====================================================
   FAQ (FAQ A — аккордеон, один открыт)
   ===================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s ease;
}

.faq__item.open {
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(0, 255, 148, 0.10);
}

.faq__q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: #FFFFFF;
  text-align: left;
  line-height: 1.4;
}

.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 255, 148, 0.10);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition: transform .3s ease, background .25s ease, color .2s ease;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #03110A;
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--text-muted);
  padding: 0 26px;
}

.faq__item.open .faq__a {
  max-height: 360px;
  padding: 0 26px 24px;
}

/* =====================================================
   FOOTER (Footer C — 3 колонки + CTA-баннер над футером)
   ===================================================== */
.footer {
  background: #060A18;
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 28px;
  margin-top: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 36px;
}

.footer__brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.footer__brand-name img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer__about {
  color: var(--text-muted);
  font-size: .94rem;
  max-width: 380px;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

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

.footer__list a {
  color: var(--text-muted);
  font-size: .92rem;
  transition: color .2s ease;
}

.footer__list a:hover { color: var(--primary); }

.footer__bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: .84rem;
}

.footer__eng {
  font-size: .78rem;
  opacity: 0.65;
}

/* =====================================================
   ANIMATIONS (Anim B — fade-in + scale)
   ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =====================================================
   INSTRUKTSIYA
   ===================================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

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

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border);
}

.step__num {
  position: absolute;
  top: -22px;
  left: 26px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #03110A;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(0, 255, 148, 0.30);
}

.step h3 {
  margin: 16px 0 12px;
  font-size: 1.3rem;
}

.step p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: .96rem;
}

.step__list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.step__list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--text);
  font-size: .94rem;
}

.step__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

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

.tip {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.tip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.tip h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.tip p {
  color: var(--text-muted);
  font-size: .92rem;
}

.after-pay {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  margin-top: 26px;
}

.after-pay h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.after-pay p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.after-pay__platforms {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.mini-platform {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}

.mini-platform:hover {
  transform: translateY(-3px);
  border-color: var(--border);
  color: var(--text);
}

.mini-platform svg {
  width: 26px;
  height: 26px;
  margin: 0 auto 8px;
  display: block;
  color: var(--primary);
}

.mini-platform span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .82rem;
  color: var(--text);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: flex; }
  .cards-grid, .platforms, .cases-grid, .tips { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .why { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .after-pay__platforms { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 76px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .cards-grid, .platforms, .cases-grid, .tips { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .after-pay__platforms { grid-template-columns: repeat(2, 1fr); }
  .hero__buttons { flex-direction: column; align-items: stretch; }
  .hero__buttons .btn { justify-content: center; }
  .cta-banner { padding: 36px 22px; }
  .step { padding: 28px 22px; }
  .step__num { width: 42px; height: 42px; }
  .hero__price { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 12px 18px; }
  .hero__price-divider { display: none; }
}
