/* Top VPN — premium gold + black on white */

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

:root {
  --primary: #B45309;
  --primary-dark: #92400E;
  --primary-light: #D97706;
  --accent: #1A1A1A;
  --bg: #FFFFFF;
  --bg-alt: #FAFAF9;
  --bg-dark: #0F0F0F;
  --bg-dark-2: #1A1A1A;
  --text: #0A0A0A;
  --text-muted: #525252;
  --text-light: #A3A3A3;
  --card-bg: #FFFFFF;
  --border: #E7E5E4;
  --border-dark: #2A2A2A;
  --gold-grad: linear-gradient(135deg, #B45309 0%, #1A1A1A 100%);
  --gold-grad-soft: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(180,83,9,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter Tight', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}

h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(38px, 6vw, 68px); }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: clamp(20px, 2vw, 26px); }

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

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

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

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.site-header.scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo img { width: 38px; height: 38px; border-radius: 8px; }
.logo span em { font-style: italic; color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter Tight', sans-serif;
  transition: color .2s;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--primary); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links a.nav-cta {
  color: #000000 !important;
  font-weight: 800;
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
  padding: 10px 22px;
  border-radius: 10px;
  border: 1.5px solid #1A1A1A;
  transition: transform .2s, box-shadow .2s;
}
.nav-links a.nav-cta:hover {
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 86%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg);
  z-index: 200;
  padding: 80px 32px 32px;
  box-shadow: var(--shadow-lg);
  transition: right .35s ease;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text);
}
.mobile-nav a {
  display: block;
  padding: 16px 0;
  color: var(--text);
  font-size: 18px;
  font-family: 'DM Serif Display', serif;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.nav-cta {
  margin-top: 24px;
  background: var(--gold-grad);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  border: none;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: transform .25s, box-shadow .25s, background .25s;
  text-align: center;
}
.btn-primary {
  background: var(--gold-grad);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(180,83,9,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-3px);
}
.btn-light {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-light:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}
.btn-lg { padding: 19px 40px; font-size: 17px; }

/* ---------- HERO (D — fullscreen bg w/ overlay box) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(217,119,6,0.35), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(180,83,9,0.4), transparent 55%),
    linear-gradient(135deg, #B45309 0%, #92400E 35%, #1A1A1A 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-overlay {
  position: relative;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  max-width: 820px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.4) inset;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #78350F;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  border: 1px solid #FCD34D;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.hero h1 {
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
  background: linear-gradient(135deg, #B45309, #D97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-trust-item strong {
  color: var(--text);
  font-weight: 700;
}

/* ---------- STATS ROW ---------- */
.stats {
  background: var(--bg-alt);
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- SECTIONS ---------- */
section { padding: 100px 0; }
section.alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .eyebrow {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- FEATURES (A — shadow + hover lift) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  opacity: 0;
  transform: translateY(20px);
}
.feature.in { opacity: 1; transform: translateY(0); }
.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(180,83,9,0.3);
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FEF3C7, #FCD34D);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 26px;
  color: var(--primary-dark);
  font-family: 'DM Serif Display', serif;
}
.feature h3 { margin-bottom: 10px; }
.feature p { font-size: 15px; line-height: 1.6; }

/* ---------- PLATFORMS ---------- */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform {
  display: block;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  text-decoration: none;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
}
.platform.in { opacity: 1; transform: translateY(0); }
.platform:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
  color: var(--text);
}
.platform-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 12px;
}
.platform-name {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
}
.platform-tag {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- WHY (premium text block) ---------- */
.why {
  background: var(--bg-dark);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217,119,6,0.25), transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.why h2 { color: #fff; margin-bottom: 22px; }
.why h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #FCD34D, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why p { color: #D4D4D4; font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
.why-list { list-style: none; }
.why-list li {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 14px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background .3s, border-color .3s;
}
.why-list li:hover {
  background: rgba(180,83,9,0.1);
  border-color: rgba(217,119,6,0.4);
}
.why-list-mark {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gold-grad-soft);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
}
.why-list-text strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 16px;
}
.why-list-text span {
  color: #A3A3A3;
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- USE CASES ---------- */
.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.use {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  opacity: 0;
  transform: translateY(20px);
}
.use.in { opacity: 1; transform: translateY(0); }
.use:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.use-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}
.use h3 { font-size: 21px; margin-bottom: 10px; }
.use p { font-size: 15px; line-height: 1.6; }

/* ---------- PRICING (B — three columns) ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.price-card.featured {
  background: var(--bg-dark);
  color: #fff;
  border: none;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.price-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}
.price-card.featured .price-tag {
  background: var(--gold-grad-soft);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.price-name {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  margin-bottom: 8px;
}
.price-card.featured .price-name { color: #fff; }
.price-meta {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 24px;
  line-height: 1.55;
}
.price-card.featured .price-meta { color: #A3A3A3; }
.price-value {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 4px;
}
.price-card.featured .price-value {
  background: linear-gradient(135deg, #FCD34D, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.price-card.featured .price-sub { color: #A3A3A3; }
.price-list {
  list-style: none;
  margin-bottom: 30px;
  flex: 1;
}
.price-list li {
  font-size: 14.5px;
  padding: 9px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.price-card.featured .price-list li {
  color: #D4D4D4;
  border-bottom-color: rgba(255,255,255,0.08);
}
.price-list li::before {
  content: '+';
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}
.price-card.featured .price-list li::before {
  color: #FCD34D;
}
.price-card .btn {
  width: 100%;
}
.price-card.featured .btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.price-card.featured .btn-outline:hover {
  background: #fff;
  color: var(--text);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--gold-grad);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn-light {
  background: #fff;
  color: var(--text);
  border: none;
  position: relative;
}
.cta-banner .btn-light:hover { background: #fff; color: var(--primary-dark); }

/* ---------- FAQ (A — accordion) ---------- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--text);
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--primary); }
.faq-q-mark {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--primary);
  transition: transform .3s, background .25s;
}
.faq-item.open .faq-q-mark {
  background: var(--gold-grad-soft);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ---------- FOOTER (A — 4 dark cols) ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #D4D4D4;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col h4 {
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.footer-col p {
  color: #A3A3A3;
  font-size: 14.5px;
  line-height: 1.65;
}
.footer-col ul { list-style: none; }
.footer-col li {
  padding: 6px 0;
}
.footer-col a {
  color: #D4D4D4;
  font-size: 14.5px;
  transition: color .2s;
}
.footer-col a:hover { color: #FCD34D; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo img { width: 38px; height: 38px; border-radius: 8px; }
.footer-logo em { color: #FCD34D; font-style: italic; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: #737373;
  font-size: 13.5px;
}

/* ---------- INSTRUKTSIYA ---------- */
.steps-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.step {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: flex-start;
  transition: box-shadow .3s, border-color .3s;
}
.step:hover {
  box-shadow: var(--shadow);
  border-color: rgba(180,83,9,0.3);
}
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 86px;
  color: var(--primary);
  line-height: 0.85;
  background: linear-gradient(135deg, #B45309, #D97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step h2 { font-size: 30px; margin-bottom: 14px; }
.step p { font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.step ul {
  list-style: none;
  margin: 16px 0;
}
.step ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.step ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 12px;
  top: 12px;
}
.step .btn { margin-top: 8px; }

.after-pay {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  margin-top: 32px;
}
.after-pay h2 { margin-bottom: 14px; }
.after-pay p { font-size: 16px; line-height: 1.7; margin-bottom: 28px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  section { padding: 70px 0; }
  .hero { min-height: auto; padding: 80px 20px 70px; }
  .hero-overlay { padding: 40px 28px; }
  .features-grid, .platforms-grid, .uses-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .step { grid-template-columns: 1fr; gap: 16px; padding: 36px 28px; }
  .step-num { font-size: 64px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: block; }
  .section-head { margin-bottom: 44px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .hero-overlay { padding: 32px 22px; border-radius: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 16px; flex-direction: column; }
  .features-grid, .platforms-grid, .uses-grid, .pricing-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 36px; }
  .cta-banner { padding: 44px 24px; }
  .after-pay { padding: 36px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
