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

:root {
  --blue: #1d4ed8;
  --blue-dark: #1e40af;
  --blue-light: #dbeafe;
  --blue-muted: #bfdbfe;
  --green: #16a34a;
  --green-light: #dcfce7;
  --red: #dc2626;
  --amber: #d97706;
  --gold: #f59e0b;
  --bg: #fafaf7;
  --surface: #ffffff;
  --border: #e8e3d9;
  --text: #111827;
  --muted: #6b7280;
  --radius: 12px;

  /* Layout */
  --gutter: clamp(20px, 5vw, 40px);
  --content-max: 1406px;

  /* Hero */
  --navy-deep: #060d1f;
  --navy-mid: #0a1628;
  --navy-light: #0f2254;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(6, 13, 31, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav-inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  max-width: calc(var(--content-max) + var(--gutter) * 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(140deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.4);
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: "Inter", sans-serif;
}
.nav-logo-name {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}
.nav-logo-name span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: #fff;
}
.nav-dropdown-toggle svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 180px;
  list-style: none;
  background: #0a1628;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.nav-cta {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    145deg,
    var(--navy-deep) 0%,
    var(--navy-mid) 55%,
    var(--navy-light) 100%
  );
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.18) 0%, transparent 65%);
  top: -180px;
  right: -160px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 65%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: 140px 80px;
  max-width: calc(var(--content-max) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero — left content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.1px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.22);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.22); }
  50%       { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.08); }
}
.hero-content h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-content h1 .gold  { color: var(--gold); }
.hero-content h1 .block { display: block; }
.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.btn-play {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 6px 28px rgba(29, 78, 216, 0.45);
}
.btn-play:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-play svg   { width: 22px; height: 22px; flex-shrink: 0; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-ghost svg { width: 24px; height: 24px; flex-shrink: 0; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.hero-trust-item .tick { color: var(--green); font-weight: 700; font-size: 14px; }

/* Hero — right visual */
.hero-visual { position: relative; height: 520px; }
.hero-photo-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 74%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
}
.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo-main .photo-fallback {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #1e3a8a 0%, #1d4ed8 100%);
}
.hero-photo-main .photo-fallback.is-visible { display: flex; }
.hero-photo-main .photo-fallback svg { width: 84px; height: 84px; }
.hero-photo-main img.is-hidden { display: none; }

/* Phone mockup */
.hero-phone {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 148px;
  height: 300px;
  background: #0d1117;
  border-radius: 28px;
  border: 2.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  z-index: 3;
}
.phone-notch {
  width: 44px;
  height: 7px;
  background: #0d1117;
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.phone-screen {
  background: #f8faff;
  height: calc(100% - 9px);
  margin: 2px 3px 3px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-topbar { background: var(--blue); padding: 8px 9px 7px; flex-shrink: 0; }
.phone-shop-name { font-size: 6.5px; font-weight: 700; color: rgba(255,255,255,0.65); letter-spacing: 0.3px; }
.phone-greeting  { font-size: 9px; font-weight: 800; color: #fff; }
.wave-icon { vertical-align: -2px; }
.phone-body { padding: 7px 7px 0; flex: 1; overflow: hidden; }
.phone-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 6px; }
.phone-stat-card { background: #fff; border-radius: 7px; padding: 5px 6px; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.psc-label { font-size: 5.5px; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.psc-value { font-size: 9px; font-weight: 900; color: #111; line-height: 1.3; }
.psc-value.green { color: var(--green); }
.psc-value.red   { color: #dc2626; }
.phone-section-label { font-size: 6px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 4px; }
.phone-sale-row { display: flex; justify-content: space-between; align-items: center; background: #fff; border-radius: 6px; padding: 4px 6px; margin-bottom: 3px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.psr-name   { font-size: 7px; font-weight: 600; color: #111; }
.psr-amount { font-size: 7px; font-weight: 700; color: var(--green); }
.phone-alert { background: #fef2f2; border: 1px solid #fecaca; border-radius: 6px; padding: 4px 6px; display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.phone-alert-dot  { width: 5px; height: 5px; border-radius: 50%; background: #dc2626; flex-shrink: 0; }
.phone-alert-text { font-size: 6px; font-weight: 600; color: #dc2626; line-height: 1.4; }

/* Floating stat cards */
.hero-stat {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  z-index: 4;
  min-width: 144px;
}
.hero-stat-a { bottom: 44px; right: -16px; }
.hero-stat-b { top: 28px; left: 72px; }
.stat-label {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 3px;
}
.stat-value {
  font-size: 18px;
  font-weight: 900;
  color: #111827;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.stat-value .green   { color: var(--green); }
.stat-value .red-val { color: #dc2626; }
.stat-sub { font-size: 11px; color: #9ca3af; margin-top: 2px; font-weight: 500; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust { background: var(--surface); border-bottom: 1px solid var(--border); padding: 20px 24px; }
.trust-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--muted); }
.trust-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ── SECTIONS ────────────────────────────────────────────── */
section { padding-block: 80px; }
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  max-width: calc(var(--content-max) + var(--gutter) * 2);
}
.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--muted); max-width: 600px; margin-bottom: 56px; line-height: 1.7; }

/* ── PROBLEM ─────────────────────────────────────────────── */
.problem { background: #fef2f2; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 48px; }
.problem-card { background: #fff; border: 1px solid #fecaca; border-radius: var(--radius); padding: 28px 24px; }
.problem-card .icon { margin-bottom: 12px; }
.problem-card .icon svg { width: 44px; height: 44px; }
.problem-card h3 { font-size: 17px; font-weight: 700; color: var(--red); margin-bottom: 8px; }
.problem-card p  { font-size: 14px; color: #6b7280; line-height: 1.6; }

/* ── FEATURES ────────────────────────────────────────────── */
.features { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(29, 78, 216, 0.1); transform: translateY(-2px); }
.feature-icon { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon svg { width: 32px; height: 32px; }
.feature-icon--blue   { background: #dbeafe; }
.feature-icon--green  { background: #dcfce7; }
.feature-icon--amber  { background: #fef9c3; }
.feature-icon--pink   { background: #fce7f3; }
.feature-icon--purple { background: #ede9fe; }
.feature-icon--orange { background: #ffedd5; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }
.feature-card ul { list-style: none; margin-top: 12px; }
.feature-card ul li { font-size: 13px; color: var(--muted); padding: 3px 0; display: flex; gap: 6px; align-items: flex-start; }
.feature-card ul li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── COMING SOON (Blog / Case Studies placeholders) ───────── */
.coming-soon-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 32px;
}
.coming-soon-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.coming-soon-card p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.coming-soon-card .pricing-cta { display: inline-block; }

/* ── BLOG ────────────────────────────────────────────────── */
.container--article { max-width: 720px; }
.post-date { color: var(--muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.post-body h1, .post-body h2, .post-body h3 { font-weight: 800; margin: 32px 0 12px; line-height: 1.3; color: var(--text); }
.post-body h1 { font-size: 28px; }
.post-body h2 { font-size: 22px; }
.post-body h3 { font-size: 18px; }
.post-body p { color: var(--text); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 16px; color: var(--text); font-size: 16px; line-height: 1.8; }
.post-body a { color: var(--blue); text-decoration: underline; }
.post-body img { max-width: 100%; border-radius: var(--radius); margin: 16px 0; }
.post-back { display: inline-block; margin-top: 24px; }

.blog-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.blog-list-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-list-card:hover { box-shadow: 0 8px 32px rgba(29, 78, 216, 0.1); transform: translateY(-2px); }
.blog-list-card h3 { font-size: 18px; font-weight: 700; margin: 8px 0; color: var(--text); }
.blog-list-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── SECONDARY PAGE HERO ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  color: #fff;
  padding-inline: var(--gutter);
  padding-block: 160px 64px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255, 255, 255, 0.7); max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing { background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
.pricing-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(29, 78, 216, 0.1); transform: translateY(-2px); }
.pricing-card.featured { background: var(--surface); border: 2px solid var(--blue); box-shadow: 0 12px 32px rgba(29, 78, 216, 0.15); }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
}
.pricing-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.price-amount { font-size: 34px; font-weight: 800; letter-spacing: -0.5px; }
.price-period { font-size: 14px; color: var(--muted); font-weight: 500; }
.pricing-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.pricing-card ul { list-style: none; margin-bottom: 24px; }
.pricing-card ul li { font-size: 13px; color: var(--muted); padding: 5px 0; display: flex; gap: 6px; align-items: flex-start; }
.pricing-card ul li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-cta {
  display: block;
  text-align: center;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.pricing-cta:hover { background: var(--blue-dark); }

/* ── ANTI-FRAUD ──────────────────────────────────────────── */
.antifraud { background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); color: #fff; }
.antifraud .section-label { background: rgba(255,255,255,0.1); color: #fcd34d; }
.antifraud h2 { color: #fff; }
.antifraud .section-sub { color: rgba(255,255,255,0.7); }
.fraud-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 0; }
.fraud-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px 20px; }
.fraud-item .tag { display: inline-block; background: rgba(239,68,68,0.2); color: #fca5a5; font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; }
.fraud-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.fraud-item p  { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── WHO IT'S FOR ────────────────────────────────────────── */
.who { background: var(--surface); }
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.who-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: border-color 0.2s, background 0.2s; }
.who-card:hover { border-color: var(--blue); background: var(--blue-light); }
.who-card .emoji { margin-bottom: 12px; }
.who-card .emoji svg { width: 46px; height: 46px; }
.who-card h4 { font-size: 15px; font-weight: 700; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.step { text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(29,78,216,0.3); }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── OFFLINE BANNER ──────────────────────────────────────── */
.offline-banner { background: var(--green-light); border: 1px solid #86efac; border-radius: var(--radius); padding: 32px 40px; display: flex; align-items: center; gap: 24px; margin-top: 56px; flex-wrap: wrap; }
.offline-banner .big-icon { flex-shrink: 0; }
.offline-banner .big-icon svg { width: 60px; height: 60px; }
.offline-banner h3 { font-size: 20px; font-weight: 800; color: #14532d; margin-bottom: 6px; }
.offline-banner p  { font-size: 15px; color: #166534; line-height: 1.6; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: var(--blue); color: #fff; text-align: center; padding-block: 80px; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 500px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 24px; font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.btn-white { position: relative; display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--blue-dark); padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 16px; text-decoration: none; transition: transform 0.2s; }
.badge-soon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gold);
  color: #1e1200;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.btn-white:hover { transform: translateY(-2px); }
.btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 16px; text-decoration: none; transition: background 0.2s; }
.btn-wa:hover { background: #1ebe5a; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: #0f172a; color: rgba(255,255,255,0.5); padding: 40px 24px; text-align: center; }
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-logo { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.footer-logo span { color: #fcd34d; }
footer p { font-size: 14px; margin-bottom: 6px; }
.footer-copyright { margin-top: 4px; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: #fff; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: var(--navy-mid);
    padding: 8px var(--gutter) 24px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    display: block;
    padding: 14px 4px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-dropdown { display: block; width: 100%; }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 4px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-dropdown-menu {
    display: none;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; transform: none; }
  .nav-dropdown-menu a { padding: 12px 4px; }

  .hero-inner { grid-template-columns: 1fr; padding-block: 120px 64px; gap: 48px; }
  .hero-visual { height: 360px; }
  .hero-photo-main { width: 76%; height: 100%; }
  .hero-phone { width: 120px; height: 240px; bottom: 20px; }
  .hero-stat { display: none; }
  .hero-content h1 { font-size: clamp(34px, 8vw, 48px); }
  .hero-sub { max-width: 100%; }
}
@media (max-width: 600px) {
  :root { --gutter: 20px; }
  section { padding-block: 56px; }
  .offline-banner { padding: 24px 20px; flex-direction: column; }
  .trust-inner { gap: 20px; }
  .hero-visual { height: 280px; }
  .hero-photo-main { width: 78%; height: 100%; }
  .hero-phone { width: 100px; height: 200px; bottom: 16px; }
  .hero-buttons { flex-direction: column; }
  .btn-play, .btn-ghost { justify-content: center; }
}
