/* Psiphon VPN — psiphonvpn-app.lol
   Axes: Hero B / Nav D / Cards H / Typo A (Roboto Slab + Atkinson Hyperlegible)
         Buttons F (gradient) / Sections F (all dark) / Price D (in hero)
         FAQ A (accordion) / Footer A (4-col dark) / Anim A (fade-up)
   Palette: forest green + wheat on deep dark forest
*/

:root {
  --primary: #2D7D46;
  --primary-deep: #1F5A33;
  --accent: #F5DEB3;
  --accent-soft: #E8CFA0;
  --bg: #0F1F14;
  --bg-alt: #16291C;
  --bg-deep: #0A1810;
  --bg-card: rgba(28, 46, 32, .7);
  --bg-card-solid: #1C2E20;
  --text: #E0F2DA;
  --text-muted: #94A3B8;
  --text-dim: #6B7B71;
  --border: rgba(245, 222, 179, 0.12);
  --border-strong: rgba(245, 222, 179, 0.22);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow: 0 18px 48px rgba(0, 0, 0, .45);
  --shadow-glow: 0 0 32px rgba(45, 125, 70, .25);
  --grad-primary: linear-gradient(135deg, #2D7D46 0%, #1F5A33 100%);
  --grad-accent: linear-gradient(135deg, #F5DEB3 0%, #E8CFA0 100%);
  --grad-mix: linear-gradient(135deg, #2D7D46 0%, #F5DEB3 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Atkinson Hyperlegible', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-soft); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 18px; }
h3 { font-size: 1.22rem; margin-bottom: 10px; }
p { color: var(--text); }
.muted { color: var(--text-muted); }

/* ===== Header (Nav D — dark sticky) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 31, 20, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand img { width: 36px; height: 36px; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  color: var(--accent);
  font-family: 'Roboto Slab', serif;
  font-weight: 700; font-size: 1.4rem;
  box-shadow: var(--shadow-glow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
  transition: color .2s;
}
.nav-links a:not(.nav-cta):hover { color: var(--accent); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--grad-accent);
  color: #000000 !important;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.94rem;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  color: #000000 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 222, 179, .3);
}

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  transition: .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: 0; }

/* ===== Buttons (F — gradient) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 0;
  transition: transform .2s, box-shadow .25s, filter .25s;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--grad-primary);
  color: var(--accent);
  box-shadow: 0 8px 22px rgba(45, 125, 70, .35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(45, 125, 70, .5);
  filter: brightness(1.08);
  color: var(--accent);
}
.btn-secondary {
  background: var(--grad-accent);
  color: #1A2E1F;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245, 222, 179, .25);
  filter: brightness(1.05);
  color: #1A2E1F;
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-lg { padding: 16px 36px; font-size: 1.06rem; }

/* ===== Hero (B — dark, content left, visual right) ===== */
.hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(800px 500px at 12% 10%, rgba(45, 125, 70, .22), transparent 65%),
    radial-gradient(700px 460px at 92% 90%, rgba(245, 222, 179, .07), transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245, 222, 179, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 222, 179, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: .55;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(45, 125, 70, .15);
  border: 1px solid rgba(45, 125, 70, .35);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.2); }
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 30px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.trust-item .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(45, 125, 70, .25);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.78rem;
}

/* Hero visual — circumvention diagram */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: var(--grad-primary);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(245, 222, 179, .15);
  overflow: hidden;
}
.hero-visual::after {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(245, 222, 179, .15), transparent 70%);
  pointer-events: none;
}
.diagram-title {
  color: var(--accent);
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.diagram-flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.flow-node {
  background: rgba(15, 31, 20, .55);
  border: 1px solid rgba(245, 222, 179, .2);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  backdrop-filter: blur(6px);
}
.flow-node-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(245, 222, 179, .14);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: 'Roboto Slab', serif;
}
.flow-node-text strong { display: block; color: var(--accent); font-size: 0.96rem; }
.flow-node-text span { color: rgba(224, 242, 218, .75); font-size: 0.82rem; }
.flow-arrow {
  text-align: center;
  color: var(--accent);
  font-size: 1.1rem;
  opacity: .6;
}
.flow-node.blocked {
  border-color: rgba(220, 38, 38, .4);
  position: relative;
}
.flow-node.blocked .flow-node-icon { background: rgba(220, 38, 38, .2); color: #FCA5A5; }
.flow-node.blocked::before {
  content: 'BLOCKED';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  font-size: 0.62rem;
  font-weight: 800;
  color: #FCA5A5;
  border: 1.5px solid #FCA5A5;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

/* Hero embedded price (D) */
.hero-price {
  margin-top: 28px;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(245, 222, 179, .07);
  border: 1px dashed rgba(245, 222, 179, .25);
  border-radius: 12px;
}
.hero-price strong { font-family: 'Roboto Slab', serif; font-size: 1.4rem; color: var(--accent); }
.hero-price span { color: var(--text-muted); font-size: 0.9rem; }

/* ===== Stats bar ===== */
.stats {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Roboto Slab', serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-muted); font-size: 0.92rem; }

/* ===== Sections (F — all dark) ===== */
section { padding: 90px 0; background: var(--bg); }
section.alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 5px 14px;
  background: rgba(245, 222, 179, .07);
  border-radius: 4px;
}
.section-head p { color: var(--text-muted); font-size: 1.06rem; }

/* ===== Features (Cards H — gradient stripe on left) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  position: relative;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px 32px 38px;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 11px;
  background: rgba(45, 125, 70, .18);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { color: var(--text); margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.96rem; }

/* ===== Platforms ===== */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.platform {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: border-color .25s, transform .25s;
  text-decoration: none;
  display: block;
  color: var(--text);
}
.platform:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  color: var(--text);
}
.platform-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: var(--grad-primary);
  color: var(--accent);
  border-radius: 13px;
  display: grid; place-items: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.platform h4 { font-family: 'Roboto Slab', serif; font-size: 1.04rem; margin-bottom: 4px; }
.platform p { color: var(--text-muted); font-size: 0.86rem; }

/* ===== Why-block (text-heavy) ===== */
.why-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.why-text p {
  color: var(--text);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.why-text p:first-of-type::first-letter {
  font-family: 'Roboto Slab', serif;
  font-size: 3.6rem;
  float: left;
  line-height: 0.95;
  padding: 6px 12px 0 0;
  color: var(--accent);
  font-weight: 700;
}
.why-points {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.why-points h3 {
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.why-points ul { list-style: none; }
.why-points li {
  padding: 10px 0 10px 26px;
  position: relative;
  color: var(--text);
  font-size: 0.96rem;
  border-bottom: 1px dashed var(--border);
}
.why-points li:last-child { border-bottom: 0; }
.why-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ===== Use cases ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
}
.case-num {
  font-family: 'Roboto Slab', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.case h3 { font-size: 1.1rem; margin-bottom: 8px; }
.case p { color: var(--text-muted); font-size: 0.94rem; }

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 222, 179, .2);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(245, 222, 179, .14), transparent 60%);
  transform: rotate(-15deg);
}
.cta-banner h2 { color: var(--accent); margin-bottom: 14px; position: relative; }
.cta-banner p { color: rgba(224, 242, 218, .9); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn { position: relative; }

/* ===== FAQ (A — accordion) ===== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 26px;
  color: var(--text);
  font-family: 'Roboto Slab', serif;
  font-size: 1.04rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-question .toggle {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(245, 222, 179, .12);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform .25s, background .25s;
}
.faq-item.open .toggle { transform: rotate(45deg); background: var(--accent); color: #1A2E1F; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 26px;
}
.faq-item.open .faq-answer {
  max-height: 380px;
  padding: 0 26px 22px;
}
.faq-answer p { color: var(--text-muted); font-size: 0.96rem; }

/* ===== Footer (A — 4 cols dark) ===== */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-about p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 14px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-dim);
  font-size: 0.86rem;
}

/* ===== Instruktsiya ===== */
.instr-hero {
  padding: 70px 0 50px;
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(45, 125, 70, .25), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.instr-hero p { max-width: 720px; margin: 18px auto 0; color: var(--text-muted); font-size: 1.06rem; }

.steps-wrap {
  display: grid;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.step-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 26px;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: 'Roboto Slab', serif;
  font-size: 1.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}
.step-content h3 { font-size: 1.34rem; margin-bottom: 12px; color: var(--text); }
.step-content p { color: var(--text); margin-bottom: 12px; }
.step-content .btn { margin-top: 8px; }

.after-pay {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 40px auto 0;
  max-width: 920px;
}
.after-pay h3 { color: var(--accent); margin-bottom: 14px; }
.after-pay p { color: var(--text); margin-bottom: 20px; }
.after-pay-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.after-pay-platforms .pf {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.after-pay-platforms .pf strong { display: block; color: var(--text); font-family: 'Roboto Slab', serif; margin-bottom: 4px; }

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

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero { padding: 56px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .why-block { grid-template-columns: 1fr; gap: 36px; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .step-card { grid-template-columns: 1fr; padding: 26px; }
  .step-num { margin: 0 auto; }
  .after-pay-platforms { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 44px 26px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
