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

:root {
  --bg: #09090f;
  --bg-2: #0e0e18;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(101, 22, 222, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --purple: #6516de;
  --purple-mid: #7c3aed;
  --purple-light: #a78bfa;
  --glow: rgba(101, 22, 222, 0.35);
  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.62);
  --text-3: rgba(255, 255, 255, 0.38);
  --green: #22c55e;
  --red: #ef4444;
  --radius: 14px;
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; }
ul { list-style: none; }

/* ─── Layout ────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--alt { background: var(--bg-2); }

/* ─── Typography ────────────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 540px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  border: 1px solid transparent;
}
.btn-primary:hover {
  background: var(--purple-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 12px; }

/* ─── Navbar ────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(9, 9, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar__logo img { height: 34px; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}
.navbar__link:hover { color: var(--text); }

.navbar__link--b2b {
  color: var(--purple-light);
}
.navbar__link--b2b:hover { color: #c4b5fd; }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__actions .btn { padding: 9px 20px; font-size: 14px; }

.navbar__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 24px;
  flex-direction: column;
}

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

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-menu__close {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.mobile-menu__link {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition);
}
.mobile-menu__link:hover { color: var(--text); }
.mobile-menu__link--b2b { color: var(--purple-light); }

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.mobile-menu__actions .btn { width: 100%; padding: 16px; font-size: 16px; }

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(101, 22, 222, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(101, 22, 222, 0.12);
  border: 1px solid rgba(101, 22, 222, 0.35);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero__title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

/* ─── Rotating country text ─────────────────────────────────────────── */
.hero__country-name {
  display: inline-block;
  color: var(--purple-light);
}

@keyframes countryExit {
  to { opacity: 0; transform: translateY(-18px); filter: blur(3px); }
}
@keyframes countryEnter {
  from { opacity: 0; transform: translateY(18px); filter: blur(3px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}

.hero__country-name.country-exit  { animation: countryExit  0.32s ease forwards; }
.hero__country-name.country-enter { animation: countryEnter 0.36s ease forwards; }

/* Country pill */
.hero__country-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 5px 12px 5px 8px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 20px;
  transition: var(--transition);
}

.hero__country-flag { font-size: 16px; line-height: 1; }

.hero__currency-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(101, 22, 222, 0.18);
  border: 1px solid rgba(101, 22, 222, 0.35);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 0.04em;
  margin-left: 2px;
}

@keyframes pillExit {
  to { opacity: 0; transform: scale(0.95); }
}
@keyframes pillEnter {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1);    }
}

.hero__country-pill.pill-exit  { animation: pillExit  0.25s ease forwards; }
.hero__country-pill.pill-enter { animation: pillEnter 0.28s ease forwards; }

/* ─── Hero content ──────────────────────────────────────────────────── */
.hero__sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
}

.hero__stat-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.hero__stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 2px;
}

.hero__stat-divider {
  width: 1px;
  background: var(--border-subtle);
  align-self: stretch;
}

/* Hero right: price cards */
.hero__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.hero__cards::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 50%, rgba(101, 22, 222, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.price-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  transform: translateX(6px);
  border-color: rgba(101, 22, 222, 0.55);
  box-shadow: 0 4px 24px rgba(101, 22, 222, 0.12);
}

.price-card__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.price-card__name  { font-size: 15px; font-weight: 600; color: var(--text); }
.price-card__symbol { font-size: 12px; color: var(--text-3); margin-top: 2px; }

.price-card__right { margin-left: auto; text-align: right; }

.price-card__price {
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  transition: color 0.2s;
}

.price-card__change       { font-size: 12px; font-weight: 600; margin-top: 2px; }
.price-card__change.up    { color: var(--green); }
.price-card__change.down  { color: var(--red); }

/* ─── How it works ──────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
}

.step__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(101, 22, 222, 0.12);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  background: var(--bg);
}

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

.step__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step__desc  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ─── Features ──────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card__desc  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ─── Cryptos bar ───────────────────────────────────────────────────── */
.cryptos-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
}

.cryptos-bar__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.cryptos-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.crypto-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  transition: border-color var(--transition), color var(--transition);
}

.crypto-pill:hover { border-color: var(--border); color: var(--text); }

.crypto-pill__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ─── Language toggle ───────────────────────────────────────────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-2);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.lang-toggle:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

/* ─── Price status indicator ────────────────────────────────────────── */
.hero__prices-meta {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.price-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.price-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.price-status--live   { color: var(--green); }
.price-status--live::before   { background: var(--green); animation: pulse 2s infinite; }
.price-status--cached { color: var(--text-3); }
.price-status--cached::before { background: var(--text-3); }

/* ─── B2B / Empresas section ─────────────────────────────────────────── */
.b2b-header { margin-bottom: 64px; }

.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Feature list */
.b2b-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.b2b-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.b2b-feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: rgba(101, 22, 222, 0.1);
}

.b2b-feature__icon svg { width: 20px; height: 20px; }

.b2b-feature__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.b2b-feature__desc  { font-size: 13px; color: var(--text-2); line-height: 1.55; }

.b2b-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

/* Code window */
.code-window {
  background: #0d0d18;
  border: 1px solid rgba(101, 22, 222, 0.3);
  border-radius: 16px;
  overflow: hidden;
  font-family: 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
  font-size: 13px;
  line-height: 1.7;
  position: sticky;
  top: 96px;
}

.code-window__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cw-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cw-filename {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.code-window__body {
  padding: 24px;
  overflow-x: auto;
  color: #c9d1d9;
}

/* Simple syntax coloring */
.cw-comment  { color: #6e7681; }
.cw-keyword  { color: #ff7b72; }
.cw-string   { color: #a5d6ff; }
.cw-number   { color: #79c0ff; }
.cw-key      { color: #7ee787; }
.cw-value    { color: #d2a8ff; }
.cw-method   { color: #d2a8ff; }
.cw-prop     { color: #79c0ff; }
.cw-url      { color: #a5d6ff; text-decoration: underline; text-decoration-color: rgba(165,214,255,0.3); }
.cw-type     { color: #ffa657; }
.cw-punct    { color: #c9d1d9; }

/* ─── FAQ ───────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
}

.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-trigger:hover { color: var(--purple-light); }

.faq-trigger__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  transition: transform 0.25s ease, background var(--transition), border-color var(--transition);
}

.faq-item.open .faq-trigger__icon {
  transform: rotate(45deg);
  background: rgba(101, 22, 222, 0.15);
  border-color: var(--border);
}

.faq-trigger__icon svg { width: 14px; height: 14px; }

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-body { grid-template-rows: 1fr; }

.faq-body__inner { overflow: hidden; }

.faq-body__content {
  padding-bottom: 22px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

.faq-body__content a { color: var(--purple-light); text-decoration: underline; text-decoration-color: rgba(167, 139, 250, 0.4); }

/* ─── CTA Banner ────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(101, 22, 222, 0.25) 0%, rgba(124, 58, 237, 0.15) 50%, rgba(101, 22, 222, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(101, 22, 222, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner__sub { font-size: 17px; color: var(--text-2); margin-bottom: 36px; position: relative; }

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}

/* ─── Footer ────────────────────────────────────────────────────────── */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--border-subtle); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand p { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-top: 16px; max-width: 260px; }

.footer__col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; }

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__link { font-size: 14px; color: var(--text-2); transition: color var(--transition); }
.footer__link:hover { color: var(--text); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--transition);
  margin-bottom: 10px;
}

.footer__contact-item:hover { color: var(--text); }
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.footer__social-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy { font-size: 13px; color: var(--text-3); }

.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 13px; color: var(--text-3); transition: color var(--transition); }
.footer__legal a:hover { color: var(--text-2); }

/* ─── Scroll reveal ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .b2b-grid { gap: 40px; }
  .code-window { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .navbar__links, .navbar__actions { display: none; }
  .navbar__burger { display: flex; }

  .hero { padding: 88px 0 60px; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .hero__stat-divider { display: none; }

  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { display: none; }
  .step { padding: 24px 0; border-bottom: 1px solid var(--border-subtle); flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  .step:last-child { border-bottom: none; }
  .step__icon { margin-bottom: 0; flex-shrink: 0; }

  .features-grid { grid-template-columns: 1fr; gap: 12px; }

  .b2b-grid { grid-template-columns: 1fr; gap: 40px; }
  .b2b-features { gap: 20px; }

  .cta-banner { padding: 48px 24px; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .cta-banner__actions { flex-direction: column; }
  .cta-banner__actions .btn { width: 100%; }
  .b2b-actions { flex-direction: column; }
  .b2b-actions .btn { width: 100%; }
}

/* ─── UK Disclaimer (footer) ────────────────────────────────────────── */
.footer__uk-disclaimer {
  margin-top: 16px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-2);
  opacity: 0.7;
}

/* ─── Reduced motion ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__badge-dot { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .hero__country-name, .hero__country-pill { animation: none !important; }
}
