/* ===== Variables ===== */
:root {
  --bg: #0A0F1E;
  --bg-card: #0D1526;
  --bg-card-alt: #101828;
  --accent: #3A86FF;
  --accent-rgb: 58, 134, 255;
  --accent-blue: #00D4FF;
  --accent-green: #00FF88;
  --text: #FFFFFF;
  --text-muted: #8892A4;
  --text-dim: #4A5568;
  --border: rgba(58, 134, 255, 0.18);
  --border-strong: rgba(58, 134, 255, 0.4);
  --glow-blue: rgba(58, 134, 255, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-glow: 0 0 30px rgba(58, 134, 255, 0.1);
  --max-w: 1200px;
  --section-py: 96px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header {
  margin-bottom: 56px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px rgba(var(--accent-rgb), 0.4);
}
.btn-primary:hover { box-shadow: 0 6px 32px rgba(var(--accent-rgb), 0.55); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(var(--accent-rgb), 0.18); }

/* ===== Cards ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(10, 15, 30, 0.5) 0%, rgba(10, 15, 30, 0.85) 60%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

#map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero h1 .accent-line {
  display: block;
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

/* ===== Waiting List Form ===== */
.waitlist-wrap {
  background: rgba(13, 21, 38, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.form-input {
  flex: 1;
  height: 52px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}

.form-input::placeholder { color: var(--text-dim); }

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

.form-submit {
  height: 52px;
  padding: 0 24px;
  font-size: 15px;
  flex-shrink: 0;
}

.form-note {
  font-size: 13px;
  color: var(--text-dim);
}

.form-error {
  font-size: 13px;
  color: #FF5555;
  margin-top: 8px;
}

.form-success {
  padding: 16px 0 4px;
}

.success-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 4px;
}

.success-sub {
  font-size: 14px;
  color: var(--text-muted);
}

/* honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Ref section */
.ref-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.ref-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.ref-link-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 10px;
  overflow: hidden;
}

.ref-link {
  flex: 1;
  font-size: 13px;
  color: var(--accent);
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ref-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-copy-ref, .btn-share-tg {
  font-size: 13px;
  padding: 8px 16px;
  height: auto;
}

/* ===== Counter ===== */
.counter-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

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

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

.counter-text {
  font-size: 14px;
  color: var(--text-muted);
}

.counter-number {
  color: var(--text);
  font-weight: 700;
}

/* ===== PROBLEM ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-card {
  padding: 36px 28px;
  text-align: center;
}

.problem-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.problem-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.how-step {
  position: relative;
}

.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.how-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-step p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.how-connector {
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
}

.how-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== GEO (Block 5 — Как работает геолокация) ===== */
.geo-section {
  background: #F5F7FF;
  color: #1A202C;
}

.geo-section .section-title { color: #1A202C; }
.geo-section .section-subtitle { color: #4A5568; }

.geo-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
}

.geo-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, rgba(58,134,255,.5), rgba(0,255,136,.5), rgba(255,170,0,.5), rgba(74,85,104,.3));
}

.geo-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.geo-stage-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(58,134,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(58,134,255,.08);
}

.geo-stage-title {
  font-size: 14px;
  font-weight: 700;
  color: #1A202C;
}

.geo-stage-visibility {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.geo-stage-caption {
  font-size: 13px;
  color: #4A5568;
  line-height: 1.5;
}

.geo-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.geo-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(58,134,255,.12);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.geo-point-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.geo-point p {
  font-size: 14px;
  color: #2D3748;
  line-height: 1.6;
}

/* Comparison */
.geo-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.geo-compare-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 2px solid transparent;
}

.geo-compare-card.bad { border-color: rgba(255, 85, 85, 0.25); }
.geo-compare-card.good { border-color: rgba(0, 255, 136, 0.3); }

.geo-compare-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.geo-compare-card.bad .geo-compare-label { color: #E53E3E; }
.geo-compare-card.good .geo-compare-label { color: #00B86B; }

.geo-compare-caption {
  font-size: 13px;
  color: #4A5568;
  margin-top: 14px;
}

/* ===== PRIVACY ===== */
.privacy-section {
  background: #F0F4FF;
  color: #1A202C;
}

.privacy-section .section-title { color: #1A202C; }

.privacy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.privacy-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.privacy-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(var(--accent-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.privacy-item-text {
  font-size: 15px;
  color: #2D3748;
  line-height: 1.7;
}

.privacy-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.privacy-svg-wrap {
  width: 100%;
  max-width: 320px;
}

.privacy-caption {
  font-size: 14px;
  color: #4A5568;
  text-align: center;
  font-style: italic;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  padding: 36px 28px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.15);
  transform: translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 20px;
  font-weight: 600;
  vertical-align: super;
  letter-spacing: 0;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-features li.unavailable {
  opacity: 0.35;
}

.pricing-features li.unavailable::before {
  content: '—';
  color: var(--text-dim);
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 15px;
  padding: 20px 24px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: rgba(var(--accent-rgb), 0.05);
}

.pricing-note strong {
  color: var(--accent);
}

/* ===== REFERRAL ===== */
.referral-section {
  background: linear-gradient(135deg, #0D1526 0%, #0A0F1E 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.referral-section .section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 16px;
}

.referral-section .section-subtitle {
  margin: 0 auto 48px;
  max-width: 480px;
}

.referral-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 48px;
  max-width: 720px;
  position: relative;
}

.referral-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 14px);
  right: calc(16.66% + 14px);
  height: 1px;
  background: var(--border);
}

.ref-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.ref-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.ref-step p {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.referral-reward {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-green);
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
}

.cta-section .section-title {
  margin-bottom: 40px;
}

.cta-section .waitlist-wrap {
  max-width: 560px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-logo span { color: var(--accent); }

.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); text-decoration: none; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.footer-contact a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 720px;
  background: #101828;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}
.cookie-banner[hidden] { display: none; }

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-text a { color: var(--accent); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
  font-family: inherit;
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
}

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

/* ===== Consent text under form button ===== */
.consent-text {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
  line-height: 1.5;
}

.consent-text a { color: var(--text-dim); text-decoration: underline; }
.consent-text a:hover { color: var(--text-muted); }

/* ===== Scroll animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-page h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-page .legal-date {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 36px 0 12px;
  color: var(--accent);
}

.legal-page p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-page ul {
  color: var(--text-muted);
  padding-left: 20px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
  transition: color 0.2s;
}

.legal-back:hover { color: var(--text); text-decoration: none; }

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  :root { --section-py: 72px; }

  .problem-grid,
  .how-grid,
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .privacy-inner { grid-template-columns: 1fr; gap: 40px; }
  .privacy-visual { display: none; }

  .geo-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .geo-timeline::before { display: none; }
  .geo-points { grid-template-columns: 1fr; }
  .geo-comparison { max-width: 480px; }

  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .pricing-card.featured { transform: none; }

  .footer-top { flex-direction: column; gap: 24px; }
  .footer-contact { align-items: flex-start; }
}

@media (max-width: 767px) {
  :root { --section-py: 56px; }

  #map-canvas { display: none; }

  .hero {
    background: radial-gradient(ellipse 120% 80% at 50% -10%, #0D2147 0%, #0A0F1E 65%);
  }

  .hero::after { display: none; }

  .hero-content { padding: 100px 0 60px; }

  .form-row { flex-direction: column; }

  .form-submit { width: 100%; }

  .problem-grid,
  .how-grid,
  .features-grid,
  .pricing-grid { grid-template-columns: 1fr; }

  .pricing-card.featured { transform: none; }

  .geo-timeline { grid-template-columns: 1fr; gap: 20px; }
  .geo-stage { flex-direction: row; text-align: left; gap: 16px; align-items: flex-start; }
  .geo-stage-icon { flex-shrink: 0; width: 52px; height: 52px; font-size: 22px; }
  .geo-stage-text { display: flex; flex-direction: column; gap: 4px; }
  .geo-comparison { grid-template-columns: 1fr; max-width: 320px; }

  .referral-steps { flex-direction: column; align-items: center; gap: 24px; }
  .referral-steps::before { display: none; }

  .cookie-banner {
    flex-direction: column;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }

  .footer-top { gap: 20px; }
  .footer-links { gap: 16px; }

  .how-connector { display: none; }
}
