/* v2rayng vpn — terminal-grade landing
   palette: deep purple + neon mint on tinted dark
   typo: tomorrow (display) + geist mono (body/code)
*/

:root {
  --primary: #6D28D9;
  --primary-light: #8B5CF6;
  --accent: #06FFA5;
  --accent-dim: #04C57F;
  --bg: #0F0717;
  --bg-alt: #1A1024;
  --bg-card: rgba(28, 20, 40, 0.7);
  --bg-card-strong: rgba(40, 28, 60, 0.85);
  --text: #E8DFFF;
  --text-muted: #94A3B8;
  --border: rgba(139, 92, 246, 0.18);
  --border-strong: rgba(139, 92, 246, 0.35);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px -20px rgba(109, 40, 217, 0.35);
  --gradient: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 45%, #06FFA5 130%);
  --gradient-text: linear-gradient(120deg, #B794FF 0%, #06FFA5 100%);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(109, 40, 217, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(6, 255, 165, 0.06) 0%, transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02";
}

h1, h2, h3, h4, h5 {
  font-family: 'Tomorrow', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 0.6em; }
h3 { font-size: 1.25rem; }

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

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

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

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

/* ================ HEADER (dark sticky) ================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 7, 23, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Tomorrow', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo img {
  width: 34px; height: 34px;
  border-radius: 8px;
}

.logo span::before {
  content: "// ";
  color: var(--accent);
  font-family: 'Geist Mono', monospace;
  font-size: 0.85em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-family: 'Geist Mono', monospace;
  text-transform: lowercase;
  transition: color .2s;
}

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

.nav-links a.nav-cta {
  background: var(--gradient);
  color: #000000;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Tomorrow', sans-serif;
  text-transform: none;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px -10px rgba(6, 255, 165, 0.45);
  transition: transform .2s, box-shadow .2s;
}

.nav-links a.nav-cta:hover {
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(6, 255, 165, 0.6);
  opacity: 1;
}

.burger {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--accent);
  margin: 4px 0;
  transition: transform .3s;
}

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  color: var(--text);
  padding: 14px 0;
  font-family: 'Geist Mono', monospace;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }

/* ================ HERO (mesh gradient) ================ */

.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.mesh::before, .mesh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite;
}

.mesh::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #6D28D9 0%, transparent 70%);
  top: -120px; left: -80px;
}

.mesh::after {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #06FFA5 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation-delay: -9s;
  opacity: 0.28;
}

.mesh-blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
  filter: blur(70px);
  opacity: 0.4;
  top: 30%; left: 45%;
  animation: drift 22s ease-in-out infinite reverse;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.85rem;
  color: var(--accent);
  background: rgba(6, 255, 165, 0.08);
  border: 1px solid rgba(6, 255, 165, 0.25);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 24px;
  text-transform: lowercase;
}

.hero h1 .grad {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Tomorrow', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #000;
  font-weight: 800;
  box-shadow: 0 12px 30px -10px rgba(109, 40, 217, 0.5),
              0 8px 24px -8px rgba(6, 255, 165, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(109, 40, 217, 0.6),
              0 14px 30px -10px rgba(6, 255, 165, 0.4);
  color: #000;
  opacity: 1;
}

.btn-ghost {
  background: rgba(139, 92, 246, 0.08);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--accent);
  color: var(--text);
  opacity: 1;
}

.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'Geist Mono', monospace;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust span::before {
  content: "▸";
  color: var(--accent);
}

/* price card embedded in hero */
.price-tag {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

.price-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}

.price-tag .pt-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.price-tag .pt-value {
  font-family: 'Tomorrow', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1;
}

.price-tag .pt-value sup {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 6px;
}

.price-tag .pt-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.price-tag ul {
  list-style: none;
  margin-bottom: 24px;
}

.price-tag li {
  font-family: 'Geist Mono', monospace;
  font-size: 0.88rem;
  color: var(--text);
  padding: 8px 0;
  border-top: 1px dashed var(--border);
}

.price-tag li::before {
  content: "+ ";
  color: var(--accent);
  font-weight: 700;
}

.price-tag .btn { width: 100%; justify-content: center; }

/* ================ STATS ================ */

.stats {
  padding: 0 0 80px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stat {
  text-align: center;
  border-right: 1px dashed var(--border);
  padding: 8px 16px;
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Tomorrow', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ================ SECTION COMMON ================ */

section { position: relative; }

.section-pad {
  padding: 90px 0;
}

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

.section-head .eyebrow { margin-bottom: 18px; }

.section-head h2 {
  text-transform: lowercase;
}

.section-head p {
  font-size: 1rem;
  margin-top: 14px;
  color: var(--text-muted);
}

/* ================ FEATURES (glass cards) ================ */

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

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .3s, border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--bg-card-strong);
}

.glass-card:hover::after { opacity: 0.6; }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.25), rgba(6, 255, 165, 0.1));
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: 'Geist Mono', monospace;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
}

.glass-card h3 {
  margin-bottom: 12px;
  text-transform: lowercase;
  font-size: 1.18rem;
}

.glass-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  font-family: 'Geist Mono', monospace;
}

/* ================ PLATFORMS ================ */

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

.platform {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform .25s, border-color .25s;
  text-decoration: none;
  color: inherit;
}

.platform:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  color: inherit;
  opacity: 1;
}

.platform.featured {
  border-color: var(--border-strong);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.18), rgba(6, 255, 165, 0.06));
}

.platform-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Tomorrow', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}

.platform-info h4 {
  font-family: 'Tomorrow', sans-serif;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2px;
  text-transform: lowercase;
}

.platform-info span {
  font-family: 'Geist Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.platform-info span.tag-hot {
  color: var(--accent);
}

/* ================ WHY (text block) ================ */

.why-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-block .why-text h2 { text-transform: lowercase; margin-bottom: 22px; }
.why-block .why-text p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.why-block .why-text strong {
  color: var(--accent);
  font-weight: 600;
}

.code-panel {
  background: #07030E;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.code-panel::before {
  content: "● ● ●";
  position: absolute;
  top: 12px; left: 16px;
  color: rgba(139, 92, 246, 0.5);
  font-size: 0.6rem;
  letter-spacing: 4px;
}

.code-panel pre {
  margin-top: 28px;
  white-space: pre-wrap;
}

.code-panel .c-key { color: var(--accent); }
.code-panel .c-val { color: #B794FF; }
.code-panel .c-com { color: #6B7280; font-style: italic; }
.code-panel .c-fn { color: #FBBF24; }

/* ================ USE CASES ================ */

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

.use-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.use-mark {
  font-family: 'Tomorrow', sans-serif;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 700;
  width: 48px;
  flex-shrink: 0;
}

.use-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: lowercase;
}

.use-card p {
  font-size: 0.9rem;
  font-family: 'Geist Mono', monospace;
  line-height: 1.65;
}

/* ================ CTA BANNER ================ */

.cta-banner {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.35), rgba(6, 255, 165, 0.1));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6, 255, 165, 0.15), transparent 70%);
  top: -150px; right: -100px;
  filter: blur(40px);
}

.cta-banner h2 {
  text-transform: lowercase;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  max-width: 580px;
  margin: 0 auto 30px;
  font-family: 'Geist Mono', monospace;
  position: relative;
}

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

/* ================ FAQ accordion ================ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: border-color .25s;
}

.faq-item.open { border-color: var(--border-strong); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  font-family: 'Tomorrow', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  user-select: none;
  text-transform: lowercase;
  transition: color .2s;
}

.faq-q:hover { color: var(--accent); }

.faq-toggle {
  width: 26px; height: 26px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Geist Mono', monospace;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .25s, background .25s;
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  color: #000;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a-inner {
  padding: 0 26px 22px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ================ FOOTER 4-col dark ================ */

.site-footer {
  background: #08040D;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  margin-top: 80px;
}

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

.footer-col h4 {
  font-family: 'Tomorrow', sans-serif;
  font-size: 0.95rem;
  color: var(--accent);
  text-transform: lowercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.footer-col p,
.footer-col a {
  font-family: 'Geist Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: var(--accent); }

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { max-width: 260px; }

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ================ INSTRUKTSIYA page ================ */

.steps {
  display: grid;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 26px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Tomorrow', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.9;
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  text-transform: lowercase;
}

.step p {
  font-family: 'Geist Mono', monospace;
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.step .btn { margin-top: 8px; }

.after-pay {
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.06), rgba(109, 40, 217, 0.12));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
}

.after-pay h3 {
  text-transform: lowercase;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.after-pay p {
  font-family: 'Geist Mono', monospace;
  margin-bottom: 24px;
}

/* ================ FADE+SCALE animation ================ */

.reveal {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ================ RESPONSIVE ================ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid, .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-block { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .features-grid, .platforms-grid, .use-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 50px 0 70px; }
  .section-pad { padding: 60px 0; }
  .cta-banner { padding: 40px 24px; }
  .price-tag { padding: 28px 22px; }
  .step { grid-template-columns: 1fr; padding: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2.1rem; }
  .btn { padding: 14px 24px; font-size: 0.92rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px dashed var(--border); }
  .stat:last-child { border-bottom: none; }
}
