/* ============================================================
   DataMint — Landing Page Styles (v2)
   Brand: #21883D (emerald) · #CFE7D6 (mint) · #10B981 (accent)
   Principles: clean · premium · component-driven · theme-safe
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand (FIXED — never change with theme; logo-safe) */
  --brand: #21883D;
  --brand-dark: #176B2D;
  --brand-light: #2DA84F;
  --accent: #10B981;
  --mint: #CFE7D6;
  --mint-soft: #E8F3EC;

  /* Neutrals — light */
  --bg: #FAF9F6;
  --bg-2: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F4F6F5;
  --surface-3: #EDF1EE;
  --ink: #0F172A;
  --ink-2: #334155;
  --ink-3: #64748B;
  --border: #E6EAE7;
  --border-2: #EFF2F0;

  /* Fixed dark surfaces (look identical in both themes — for CTA band) */
  --dark-1: #0B1220;
  --dark-2: #131C2E;
  --dark-ink: #FFFFFF;
  --dark-ink-2: rgba(255,255,255,.72);

  /* Effects */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.05), 0 1px 3px rgba(15,23,42,.03);
  --shadow: 0 6px 20px rgba(15,23,42,.07), 0 2px 6px rgba(15,23,42,.04);
  --shadow-lg: 0 20px 50px rgba(15,23,42,.10), 0 8px 18px rgba(15,23,42,.05);
  --shadow-brand: 0 10px 30px rgba(33,136,61,.28);
  --glass: rgba(255,255,255,.72);
  --glass-border: rgba(255,255,255,.5);

  /* Type */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --container: 1180px;
  --nav-h: 72px;

  /* Gradients */
  --grad: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  --grad-soft: linear-gradient(135deg, var(--mint) 0%, var(--mint-soft) 100%);
  --grad-dark: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

[data-theme="dark"] {
  --bg: #0B1220;
  --bg-2: #0F172A;
  --surface: #131C2E;
  --surface-2: #1A2438;
  --surface-3: #1F2A40;
  --ink: #F1F5F9;
  --ink-2: #CBD5E1;
  --ink-3: #94A3B8;
  --border: #243049;
  --border-2: #1E2839;
  --mint-soft: rgba(33,136,61,.14);
  --glass: rgba(19,28,46,.72);
  --glass-border: rgba(255,255,255,.08);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
  --shadow: 0 6px 20px rgba(0,0,0,.4);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.5);
  /* NOTE: --dark-1/2/ink stay fixed so CTA band is always dark */
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  transition: background .3s ease, color .3s ease;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); font-weight: 800; }
::selection { background: var(--mint); color: var(--brand-dark); }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.section { padding: 88px 0; scroll-margin-top: calc(var(--nav-h) + 28px); }
section[id], div[id] { scroll-margin-top: calc(var(--nav-h) + 28px); }
.mobile-br { display: none; }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { box-shadow: 0 14px 38px rgba(33,136,61,.4); transform: translateY(-2px); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--dark-1); box-shadow: var(--shadow); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none; }
.btn svg { transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   4. BRAND / LOGO (uses <use href="#dm-logo">, fixed colors)
   ============================================================ */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__word { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--ink); letter-spacing: -0.03em; }

/* ============================================================
   5. NAVBAR
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; transition: background .3s, box-shadow .3s; }
.nav.scrolled { background: var(--glass); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); box-shadow: 0 1px 0 var(--glass-border), 0 4px 20px rgba(15,23,42,.05); }
.nav__inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 22px; }
.nav__links { display: flex; gap: 4px; margin-left: 6px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--ink-2); padding: 7px 14px; border-radius: 999px; transition: color .2s, background .2s; }
.nav__links a:hover, .nav__links a.active { color: var(--brand); background: var(--surface-2); }
.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--border-2); font-weight: 600; font-size: 13.5px; transition: all .2s; flex-shrink: 0; }
.icon-btn:hover { color: var(--brand); border-color: var(--brand); }
#langToggle { width: auto; padding: 0 14px; border-radius: 999px; }
.i-moon { display: none; }
[data-theme="dark"] .i-sun { display: none; }
[data-theme="dark"] .i-moon { display: block; }

/* Currency Switcher Segmented Pill */
.currency-switch {
  display: inline-flex;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  height: 38px;
  box-shadow: var(--shadow-sm);
}
.currency-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-3);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 0 13px;
  height: 30px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.currency-btn:hover {
  color: var(--ink);
}
.currency-btn.is-active {
  background: rgba(33, 136, 61, 0.10);
  color: var(--brand);
  font-weight: 700;
  border-color: rgba(33, 136, 61, 0.20);
  box-shadow: none;
}
[data-theme="dark"] .currency-btn.is-active {
  background: rgba(33, 136, 61, 0.22);
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.25);
}

.nav__cta {
  width: auto;
  height: 38px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
}
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border-2); }
.nav__burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   6. MOBILE DRAWER (Full-Screen Top to Bottom Menu)
   ============================================================ */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer__overlay { display: none; }
.drawer__panel {
  position: fixed; inset: 0; width: 100vw; height: 100vh; height: 100dvh;
  background: var(--bg);
  transform: translateY(-100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 20px 24px 28px; overflow-y: auto; z-index: 201;
}
.drawer.is-open { visibility: visible; }
.drawer.is-open .drawer__panel { transform: translateY(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.drawer__actions {
  display: flex;
  align-items: center;
}
.drawer__actions .currency-switch--drawer {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 3px 5px 3px 3px;
  height: 38px;
  box-shadow: var(--shadow-sm);
}
.drawer__actions .currency-switch--drawer .currency-btn {
  height: 30px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}
.drawer__actions-sep {
  width: 1px;
  height: 14px;
  background: var(--border-2);
  margin: 0 4px;
  opacity: 0.8;
}
.drawer__close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  background: transparent;
  border: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.drawer__close:hover {
  color: var(--brand);
  background: var(--surface);
}
.drawer__nav { display: flex; flex-direction: column; padding: 16px 0; flex: 1; justify-content: flex-start; margin-top: 20px; }
.drawer__nav a { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--ink); padding: 12px 6px; border-bottom: 1px solid var(--border-2); transition: color .2s, padding-left .2s; }
.drawer__nav a:hover { color: var(--brand); padding-left: 12px; }
.drawer__foot { display: flex; flex-direction: column; gap: 14px; padding-top: 18px; margin-top: auto; }
.drawer__app { text-align: center; font-size: 15px; font-weight: 600; color: var(--ink-2); padding: 8px 0; }
.drawer__app:hover { color: var(--brand); }
body.drawer-open { overflow: hidden; }

/* ============================================================
   7. HERO
   ============================================================ */
.hero { position: relative; padding: calc(var(--nav-h) + 96px) 0 20px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 0%, var(--mint-soft), transparent 70%),
    radial-gradient(40% 30% at 80% 10%, rgba(16,185,129,.10), transparent 70%);
}
[data-theme="dark"] .hero__glow {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(33,136,61,.16), transparent 70%),
    radial-gradient(40% 30% at 80% 10%, rgba(16,185,129,.08), transparent 70%);
}
.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 1040px; margin: 0 auto; }
.hero__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 18px rgba(33, 136, 61, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero__badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(33, 136, 61, 0.22);
}

/* Perimeter Shimmer Light Effect (Rotating Conic Gradient) */
.hero__badge::before {
  content: '';
  position: absolute;
  inset: -150%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    transparent 260deg,
    rgba(33, 136, 61, 0.3) 290deg,
    var(--brand) 325deg,
    #ffffff 345deg,
    var(--brand) 360deg
  );
  animation: shimmer-spin 3.5s linear infinite;
  z-index: -2;
}

/* Inner Pill Surface Overlay (creates 1.5px shimmering border) */
.hero__badge::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 999px;
  background: var(--surface);
  z-index: -1;
  transition: background 0.3s ease;
}

@keyframes shimmer-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
  position: relative;
  z-index: 2;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(16,185,129,.2); } 50% { box-shadow: 0 0 0 8px rgba(16,185,129,.05); } }

.hero__title { font-size: clamp(1.8rem, 4.0vw, 3.15rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; line-height: 1.18; max-width: 880px; margin-left: auto; margin-right: auto; }
.hero__title .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(1.02rem, 1.8vw, 1.22rem); font-weight: 400; color: var(--ink-2); max-width: 660px; margin: 0 auto 36px; line-height: 1.6; }

/* Mux Video Player Container */
.video-container { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; overflow: hidden; border-radius: var(--radius-lg); }
.video-player { width: 100%; height: 100%; object-fit: cover; display: block; border: none; }
.video-overlay {
  position: absolute; inset: 0; background: rgba(11,17,29,0.45);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  backdrop-filter: blur(2px); transition: opacity 0.3s ease; cursor: pointer;
}
.video-overlay.is-hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand), 0 0 0 8px rgba(33,136,61,0.2);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), background 0.25s;
}
.play-btn svg { margin-left: 3px; }
.video-overlay:hover .play-btn { transform: scale(1.1); filter: brightness(1.08); }
.video-overlay__title { font-size: 15px; font-weight: 700; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

.hero__trust { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.trust { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.trust strong { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--ink); }
.trust span { font-size: 12.5px; font-weight: 500; color: var(--ink-3); }
.trust__sep { width: 1px; height: 32px; background: var(--border); }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.hero__fine { font-size: clamp(11.5px, 3vw, 13px); color: var(--ink-3); white-space: nowrap; max-width: 100%; overflow: hidden; text-overflow: ellipsis; margin-bottom: 40px; }
.spark { animation: spark 1.8s ease-in-out infinite; display: inline-block; vertical-align: middle; flex-shrink: 0; }
@keyframes spark { 0%,100% { transform: scale(1); } 50% { transform: scale(1.18); } }

/* Logo Marquee Carousel */
.hero__marquee {
  width: 100%; max-width: 920px; margin: 0 auto; overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  padding: 4px 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 18px; width: max-content;
  animation: logoMarquee 28s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
@keyframes logoMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px;
  border-radius: 999px; background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); font-size: 13px; font-weight: 600; color: var(--ink-2);
  white-space: nowrap; transition: border-color 0.2s, background 0.2s;
}
.marquee__item:hover { border-color: var(--brand); color: var(--ink); }
.marquee__item svg { width: 17px; height: 17px; flex-shrink: 0; display: block; }

/* ============================================================
   9. SECTION HEADS
   ============================================================ */
.section__head { text-align: center; max-width: 1000px; margin: 0 auto 48px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); background: var(--mint-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.section__head h2 { font-size: clamp(1.75rem, 3.8vw, 2.6rem); margin-bottom: 14px; }
.section__head p { font-size: 1.05rem; color: var(--ink-2); }

/* ============================================================
   10. SHOWCASE / TABS
   ============================================================ */
.showcase { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tabs { max-width: 1040px; margin: 0 auto; }
.tabs__bar { display: flex; gap: 6px; padding: 6px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; margin-bottom: 28px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
.tabs__bar::-webkit-scrollbar { display: none; }
.tab { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 12px; border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--ink-2); transition: all .2s; white-space: nowrap; flex-shrink: 0; border: 1.5px solid transparent; }
.tab__n { font-size: 11px; font-weight: 800; color: var(--ink-3); background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 2px 6px; }
.tab:hover { color: var(--brand); }
.tab.is-active { background: var(--surface); color: var(--brand); border-color: var(--brand); box-shadow: 0 4px 14px rgba(33, 136, 61, 0.15); }
.tab.is-active .tab__n { color: #fff; background: var(--brand); border-color: var(--brand); }
.tabpanel { display: none; animation: fadeUp .4s ease both; }
.tabpanel.is-active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.showcase__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center; min-height: 380px; }
.showcase__copy h3 { font-size: 1.6rem; margin-bottom: 12px; }
.showcase__copy p { color: var(--ink-2); margin-bottom: 18px; }
.ticks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.ticks li { position: relative; padding-left: 28px; color: var(--ink-2); font-size: 14.5px; }
.ticks li::before { content: ''; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; background: var(--mint-soft); border-radius: 50%; }
.ticks li::after { content: ''; position: absolute; left: 6px; top: 8px; width: 6px; height: 10px; border: solid var(--brand); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.btn--see-how { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--brand); padding: 9px 18px; border-radius: 999px; background: var(--mint-soft); border: 1px solid rgba(16,185,129,.2); transition: all 0.2s; }
.btn--see-how:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-1px); }

/* ---- Mock components (visual previews) ---- */
.mock { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
[data-theme="dark"] .mock { background: var(--bg-2); }
.mock__bar { display: flex; align-items: center; gap: 10px; padding: 11px 15px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.mock__url { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }
.mock__pill { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--ink-3); background: var(--surface); border: 1px solid var(--border); padding: 3px 10px; border-radius: 999px; }
.mock__pill--green { color: var(--brand); background: var(--mint-soft); border-color: transparent; }
.mock__search { padding: 14px 15px; border-bottom: 1px solid var(--border-2); }
.mock__q { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); font-size: 14px; }
.mock__list { padding: 8px 8px; }
.mock__row { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 10px; }
.mock__row:hover { background: var(--surface-2); }
.mock__row--fade { opacity: .55; }
.mock__name { font-weight: 600; font-size: 14px; color: var(--ink); }
.mock__meta { font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.mock__count { text-align: center; padding: 12px; font-size: 13px; font-weight: 700; color: var(--brand); border-top: 1px solid var(--border-2); }
.mock--wa .mock__wa { padding: 10px; }
.mock__warow { display: flex; align-items: center; justify-content: space-between; padding: 11px 12px; border-radius: 10px; }
.mock__warow:hover { background: var(--surface-2); }
.mock__warow-p { font-family: ui-monospace, 'SF Mono', monospace; font-size: 13.5px; color: var(--ink-2); font-weight: 500; }
.mock--ai .mock__prompt { padding: 14px 15px; display: flex; flex-direction: column; gap: 10px; border-bottom: 1px solid var(--border-2); }
.mock__prompt-l { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-3); }
.tok { font-family: ui-monospace, monospace; font-weight: 700; color: var(--brand); background: var(--mint-soft); padding: 2px 8px; border-radius: 6px; font-size: 12.5px; }
.mock__reasoning { display: flex; gap: 10px; align-items: flex-start; padding: 14px 15px; font-size: 13px; color: var(--ink-2); }
.mock__reasoning-tag { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); background: rgba(16,185,129,.12); padding: 3px 8px; border-radius: 6px; flex: none; }
.mock--export .mock__export { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 14px; }
.mock__ex { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 16px 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; font-weight: 600; font-size: 13.5px; color: var(--ink-2); transition: border-color .2s, transform .2s; }
.mock__ex:hover { border-color: var(--brand); transform: translateY(-2px); }
.mock__ex-ic { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-bottom: 4px; }
.mock__ex-ic svg { width: 20px; height: 20px; display: block; }
.mock__ex-sub { font-size: 11px; color: var(--ink-3); font-weight: 500; }

/* shared whatsapp badge (used in mock + playground) */
.wa-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.wa-badge.on { background: rgba(37,211,102,.16); color: #1AAD55; }
.wa-badge.off { background: var(--surface-2); color: var(--ink-3); }
.wa-badge.check { background: rgba(245,158,11,.16); color: #D97706; }

/* ============================================================
   11. PLAYGROUND
   ============================================================ */
.playground { padding: 16px 0 64px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.pg { max-width: 980px; margin: 0 auto; }
.pg__bar { display: flex; align-items: center; gap: 10px; padding: 13px 18px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.pg__dot { width: 12px; height: 12px; border-radius: 50%; }
.pg__dot--r { background: #FF5F57; } .pg__dot--y { background: #FEBC2E; } .pg__dot--g { background: #28C840; }
.pg__url { display: flex; align-items: center; gap: 7px; margin-left: 8px; padding: 5px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; font-size: 12.5px; color: var(--ink-3); }
.pg__live { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--ink-3); display: inline-flex; align-items: center; gap: 6px; }
.pg__live::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--ink-3); }
.pg__live.running { color: var(--accent); }
.pg__live.running::before { background: var(--accent); animation: pulse2 1s infinite; }
.pg__live.done { color: var(--brand); } .pg__live.done::before { background: var(--brand); }
@keyframes pulse2 { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.pg__controls { padding: 20px; border-bottom: 1px solid var(--border-2); }
.pg__search { display: flex; align-items: center; gap: 10px; padding: 13px 16px; background: var(--surface-2); border: 1.5px solid var(--border); border-radius: 12px; transition: border-color .2s; }
.pg__search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(33,136,61,.1); }
.pg__search svg { color: var(--ink-3); flex: none; }
.pg__search input { flex: 1; border: none; background: none; outline: none; font-size: 15px; color: var(--ink); }
.pg__chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 16px; }
.chip { font-size: 13px; font-weight: 600; padding: 7px 13px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); color: var(--ink-2); transition: all .2s; }
.chip:hover { border-color: var(--brand); color: var(--brand); background: var(--mint-soft); }
.pg__row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.switch { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink-2); cursor: pointer; }
.switch input { display: none; }
.switch__track { width: 42px; height: 24px; border-radius: 999px; background: var(--border); position: relative; transition: background .25s; flex: none; }
.switch__thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .25s; }
.switch input:checked + .switch__track { background: var(--brand); }
.switch input:checked + .switch__track .switch__thumb { transform: translateX(18px); }
.pg__table-wrap { position: relative; overflow-x: auto; }
.pg__table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
.pg__table thead th { text-align: left; padding: 13px 16px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); background: var(--surface-2); border-bottom: 1px solid var(--border); position: sticky; top: 0; }
.pg__table tbody td { padding: 13px 16px; border-bottom: 1px solid var(--border-2); color: var(--ink-2); vertical-align: middle; }
.pg__table tbody tr { animation: rowIn .4s ease both; }
@keyframes rowIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.pg__table tbody tr:hover { background: var(--surface-2); }
.pg__empty td { text-align: center; color: var(--ink-3); padding: 44px 16px; font-style: italic; }
.col-rating, .col-wa, .col-score { text-align: center; }
.lead-name { font-weight: 700; color: var(--ink); }
.lead-cat { font-size: 12px; color: var(--ink-3); }
.stars { color: #F59E0B; font-weight: 700; }
.score-pill { display: inline-block; font-weight: 700; font-size: 13px; padding: 3px 10px; border-radius: 8px; }
.score-hi { background: rgba(16,185,129,.16); color: #047857; }
.score-md { background: rgba(245,158,11,.16); color: #B45309; }
[data-theme="dark"] .score-hi { color: #34D399; } [data-theme="dark"] .score-md { color: #FBBF24; }
.ph-link { color: var(--brand); font-weight: 600; }
.pg__skeleton { padding: 8px 16px; }
.sk-row { height: 46px; border-bottom: 1px solid var(--border-2); border-radius: 8px; margin: 6px 0; background: linear-gradient(90deg, var(--surface-2) 25%, var(--border-2) 50%, var(--surface-2) 75%); background-size: 200% 100%; animation: shimmer 1.3s infinite; }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.pg__footer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-top: 1px solid var(--border); }
.pg__stat { background: var(--surface); padding: 16px; text-align: center; }
.pg__stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--brand); }
.pg__stat span { font-size: 12px; color: var(--ink-3); }
.pg__note { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; font-size: 13px; color: var(--ink-3); margin-top: 28px; margin-bottom: 16px; padding: 0 8px; }
.pg__wa-cta { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #fff; text-decoration: none; padding: 8px 18px; background: var(--grad); border-radius: 999px; box-shadow: var(--shadow-brand); transition: opacity .2s, transform .15s; }
.pg__wa-cta:hover { opacity: 0.92; transform: translateY(-1px); }

/* ============================================================
   12. STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding: 28px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: transform .25s, box-shadow .25s, border-color .25s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--mint); }
.step__num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; color: var(--mint); margin-bottom: 10px; line-height: 1; }
[data-theme="dark"] .step__num { color: rgba(33,136,61,.5); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-2); }

/* ============================================================
   13. FEATURES
   ============================================================ */
.features { background: var(--surface); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { position: relative; padding: 26px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); transition: transform .25s, box-shadow .25s, border-color .25s; }
[data-theme="dark"] .feature { background: var(--bg-2); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-light); }
.feature--hl { background: var(--grad-soft); border-color: var(--mint); }
[data-theme="dark"] .feature--hl { background: var(--bg-2); border-color: var(--brand); }
.feature__ico { font-size: 1.8rem; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.feature--hl .feature__ico { background: rgba(255,255,255,.6); }
[data-theme="dark"] .feature--hl .feature__ico { background: var(--surface-2); }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--ink-2); }
.feature__tag { position: absolute; top: 14px; right: 14px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--brand); background: rgba(255,255,255,.85); padding: 3px 8px; border-radius: 999px; box-shadow: var(--shadow-sm); z-index: 2; }
[data-theme="dark"] .feature__tag { background: var(--surface-2); }

/* ============================================================
   14. REVIEWS (VERTICAL 9:16 VIDEO STORIES & CTA CARD)
   ============================================================ */
.reviews { background: var(--bg); border-top: 1px solid var(--border); }
.reviews__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.review-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; cursor: pointer; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }

/* Vertical 9:16 Media Container */
.review-card__media { position: relative; width: 100%; aspect-ratio: 9 / 14; max-height: 380px; overflow: hidden; background: #000; }
.review-card__video { width: 100%; height: 100%; object-fit: cover; border: none; outline: none; display: block; }
.review-card__overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle, rgba(11, 18, 32, 0.15) 0%, rgba(11, 18, 32, 0.6) 100%); transition: opacity .3s ease, visibility .3s ease; }
.review-card__overlay.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.review-card__play { width: 52px; height: 52px; border-radius: 50%; background: var(--grad); color: #fff; border: none; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-brand); transition: transform .2s ease, box-shadow .2s ease; cursor: pointer; }
.review-card:hover .review-card__play { transform: scale(1.12); box-shadow: 0 8px 24px rgba(33, 136, 61, 0.45); }
.review-card__dur { position: absolute; bottom: 12px; right: 12px; font-size: 11px; font-weight: 700; color: #fff; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); padding: 3px 9px; border-radius: 6px; }

.review-card__content { padding: 18px 20px; display: flex; flex-direction: column; flex: 1; justify-content: center; background: var(--surface); }
.review-card__quote { font-size: 14px; color: var(--ink); line-height: 1.5; font-weight: 500; margin: 0; }

/* 4th Card: Submit Experience CTA Card */
.review-card--cta { background: var(--grad-soft); border: 2px dashed var(--mint); cursor: default; }
[data-theme="dark"] .review-card--cta { background: var(--surface-2); border-color: var(--border); }
.review-card--cta:hover { transform: translateY(-4px); border-color: var(--brand); }
.review-card__cta-inner { padding: 32px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 100%; min-height: 420px; }
.review-card__cta-ico { width: 60px; height: 60px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.review-card__cta-inner h3 { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.review-card__cta-inner p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin-bottom: 20px; }
.review-card__cta-inner .btn { margin-top: 0; }

/* ============================================================
   15. PRICING
   ============================================================ */
/* Two-column single-plan layout: price card (left) + capabilities (right) */
.pricing2 { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 26px; align-items: stretch; }

/* LEFT — price card */
.price-card { position: relative; display: flex; flex-direction: column; padding: 34px 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.price-card::before { content: ''; position: absolute; top: -90px; right: -90px; width: 220px; height: 220px; background: radial-gradient(circle, var(--accent), transparent 70%); opacity: .14; filter: blur(40px); pointer-events: none; }
.price-card__top { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; position: relative; }
.price-card__pill { font-size: 12px; font-weight: 800; letter-spacing: .02em; padding: 6px 13px; border-radius: 999px; background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }
.price-card__pill--ghost { background: var(--surface-2); color: var(--ink-2); box-shadow: none; border: 1px solid var(--border); }
.price-card__pill--exclusive { background: rgba(234, 179, 8, 0.12); color: #a16207; border: 1px solid rgba(234, 179, 8, 0.25); box-shadow: none; }
[data-theme="dark"] .price-card__pill--exclusive { background: rgba(253, 224, 71, 0.14); color: #fde047; border-color: rgba(253, 224, 71, 0.3); }
.price-card h3 { font-size: 1.4rem; margin-bottom: 4px; position: relative; }
.price-card__tag { font-size: 14px; color: var(--ink-3); margin-bottom: 22px; position: relative; }
.price-card__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; position: relative; }
.price-card__now { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; color: var(--brand); line-height: 1; }
.price-card__was { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink-3); text-decoration: line-through; text-decoration-color: #EF4444; text-decoration-thickness: 2px; }
.price-card__note { font-size: 13px; color: var(--ink-3); margin-bottom: 24px; position: relative; }
.price-card .btn { position: relative; margin-bottom: 20px; }
.price-card__assure { display: flex; flex-direction: column; gap: 9px; margin-top: auto; position: relative; }
.price-card__assure li { position: relative; padding-left: 24px; font-size: 13.5px; color: var(--ink-2); }
.price-card__assure li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 17px; height: 17px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; background: var(--brand); border-radius: 50%; }

/* RIGHT — what's included (capability grid) */
.whats-in { padding: 34px 30px; background: var(--grad-soft); border: 1px solid var(--mint); border-radius: var(--radius-lg); }
[data-theme="dark"] .whats-in { background: var(--surface); border-color: var(--border); }
.whats-in h3 { font-size: 1.25rem; margin-bottom: 20px; }
.whats-in__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.wi { display: flex; align-items: flex-start; gap: 12px; padding: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: transform .2s, border-color .2s; }
[data-theme="dark"] .wi { background: var(--bg-2); }
.wi:hover { transform: translateY(-2px); border-color: var(--brand-light); }
.wi__ico { width: 40px; height: 40px; flex: none; display: flex; align-items: center; justify-content: center; background: var(--surface-2); border-radius: 10px; color: var(--brand); }
.wi div { display: flex; flex-direction: column; }
.wi strong { font-size: 14px; font-weight: 700; color: var(--ink); }
.wi span { font-size: 12.5px; color: var(--ink-3); line-height: 1.4; }

/* Urgency (brand gradient, white text — safe in both modes) */
.urgency { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 32px; margin-bottom: 32px; padding: 22px 30px; background: var(--grad); border-radius: var(--radius-lg); color: #fff; box-shadow: var(--shadow-brand); }
.urgency__txt strong { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; }
.urgency__txt span { display: block; font-size: 14.5px; opacity: .92; }
.urgency__subnote { display: block; font-size: 12px; opacity: .8; margin-top: 3px; font-weight: 500; }
.urgency__timer { display: flex; gap: 10px; }
.t-cell { background: rgba(255,255,255,.2); backdrop-filter: blur(6px); border-radius: 12px; padding: 10px 16px; text-align: center; min-width: 64px; }
.t-cell span { display: block; font-family: var(--font-display); font-size: 1.65rem; font-weight: 800; line-height: 1; }
.t-cell small { font-size: 11px; opacity: .9; letter-spacing: .05em; }

/* ============================================================
   15. FAQ
   ============================================================ */
.faq { background: var(--surface); border-top: 1px solid var(--border); padding: 80px 0 64px; }
.accordion { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.acc { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, box-shadow .2s; height: 100%; }
[data-theme="dark"] .acc { background: var(--surface-2); }
.acc[open] { border-color: var(--border); box-shadow: none; }
.acc summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-weight: 600; font-size: 1.02rem; color: var(--ink); cursor: pointer; list-style: none; }
.acc summary::-webkit-details-marker { display: none; }
.acc__chev { flex: none; color: var(--ink-3); transition: transform .3s; }
.acc[open] .acc__chev { transform: rotate(180deg); color: var(--brand); }
.acc__body { padding: 0 22px 20px; }
.acc__body p { color: var(--ink-2); font-size: 15px; }

/* ============================================================
   16. CTA BAND (FIXED DARK — always #0B1220→#131C2E)
   ============================================================ */
.cta-band { padding: 48px 0 80px; }
.cta-band__inner { background: var(--grad-dark); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-xl); padding: 50px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band__inner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; background: radial-gradient(circle, var(--accent), transparent 70%); opacity: .35; filter: blur(60px); }
.cta-band__inner h2 { color: var(--dark-ink); font-size: clamp(1.45rem, 2.8vw, 2rem); max-width: 560px; position: relative; }
.cta-band__inner p { color: var(--dark-ink-2); margin-top: 8px; position: relative; }
.cta-band__inner .btn { position: relative; }

/* ============================================================
   17. FOOTER
   ============================================================ */
.footer { background: var(--bg-2); padding: 60px 0 26px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; margin-bottom: 36px; }
.footer__tag { font-size: 14.5px; color: var(--ink-3); max-width: 340px; margin-top: 14px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-bottom: 14px; }
.footer__col a { display: block; font-size: 14.5px; color: var(--ink-2); padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--brand); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--ink-3); }
.footer__status { display: inline-flex; align-items: center; gap: 7px; }
.footer__socials { display: flex; gap: 12px; margin-top: 18px; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); color: var(--ink-2); background: var(--surface); transition: all 0.2s; }
.social-icon:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(16,185,129,.2); }

/* ============================================================
   18. BACK-TO-TOP
   ============================================================ */
.to-top { position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 46px; height: 46px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-lg); color: var(--brand); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ============================================================
   19. REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: .001s !important; transition-duration: .001s !important; scroll-behavior: auto !important; }
}

/* ============================================================
   20. RESPONSIVE (TABLET & MOBILE)
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links, .nav__cta, .nav__actions .currency-switch { display: none; }
  .nav__burger { display: flex; }
  .hero { padding-top: calc(var(--nav-h) + 56px); }
  .showcase__grid { grid-template-columns: 1fr; gap: 28px; min-height: auto; }
  .showcase__copy { text-align: left; }
  .ticks { max-width: 100%; margin: 0 0 20px; text-align: left; }
  .steps, .grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pricing2 { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; gap: 24px; }
  
  /* Horizontal 2-card slider on Tablet */
  .reviews__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 14px;
    margin: 0 -18px;
    padding-left: 18px;
    padding-right: 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .reviews__grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 280px;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .hero { padding-top: calc(var(--nav-h) + 44px); }
  .container { padding: 0 18px; }
  .steps, .grid { grid-template-columns: 1fr; }
  .review-card {
    flex: 0 0 85%;
    min-width: 260px;
    scroll-snap-align: center;
  }
  .whats-in__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .accordion { grid-template-columns: 1fr; }
  .pg__note { flex-direction: column; gap: 12px; }
  .mobile-br { display: block; }
  .hero__badge { font-size: 11px; padding: 5px 12px; white-space: nowrap; }
  .hero__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 0; width: 100%; justify-items: stretch; }
  .hero__trust .trust { padding: 14px 4px; justify-content: center; }
  .hero__trust > div:nth-child(1) { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .hero__trust > div:nth-child(3) { border-bottom: 1px solid var(--border); }
  .hero__trust > div:nth-child(5) { border-right: 1px solid var(--border); }
  .trust strong { font-size: 1.15rem; }
  .trust span { font-size: 10px; letter-spacing: -0.01em; }
  .trust__sep { display: none; }
  .pg__footer { grid-template-columns: repeat(2, 1fr); }
  .urgency { flex-direction: column; align-items: flex-start; padding: 24px; }
  .hero__cta, .hero__cta .btn { width: 100%; }
  .hero__cta .btn { flex: 1; }
  .icon-btn#langToggle { display: none; }
  .cta-band__inner { padding: 34px 24px; }
  .tabs__bar { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; border-radius: var(--radius-lg); padding: 5px; -webkit-overflow-scrolling: touch; }
  .tab { flex: none; font-size: 13px; padding: 8px 12px; }
  .mock--export .mock__export { grid-template-columns: repeat(2, 1fr); }
}
