/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design tokens ────────────────────────────────────────────────────────── */
:root {
  --bg:           #090D12;
  --card:         #100F16;
  --card-hover:   #16132A;
  --green:        #45E31B;
  --green-dim:    #2db30e;
  --purple:       #995CFF;
  --purple-dim:   #7040DD;
  --purple-border:#6B3FC4;
  --pink:         #FF2F92;
  --text:         #F7F7F7;
  --muted:        #A6A6AD;
  --border:       #302B3A;
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── Scrollbar ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── Focus ────────────────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }

/* ═══════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════ */
.gradient-text {
  background: linear-gradient(90deg, var(--green), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-muted  { color: var(--muted); }
.text-green  { color: var(--green); }
.text-purple { color: var(--purple); }
.text-pink   { color: var(--pink); }
.text-center { text-align: center; }
h1,h2,h3,h4 { line-height: 1.1; letter-spacing: -0.03em; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: rgba(9,13,18,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  gap: 32px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar-logo .logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--card);
  border: 1.5px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.navbar-logo .logo-name {
  font-weight: 800; font-size: 17px; letter-spacing: -0.3px; color: var(--text);
}
.navbar-links {
  display: flex; gap: 24px; align-items: center; flex: 1;
}
.navbar-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--text); }
.navbar-actions { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer; color: var(--text);
  padding: 4px; margin-left: auto;
}
.nav-mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: var(--card); border-bottom: 1px solid var(--border);
  padding: 20px 24px; flex-direction: column; gap: 4px;
}
.nav-mobile-menu a {
  display: block; padding: 12px 0; font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.nav-mobile-menu a:last-of-type { border-bottom: none; }
.nav-mobile-menu .mobile-actions { display: flex; gap: 10px; margin-top: 16px; }
.nav-mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: inherit;
  font-weight: 700; border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s;
  border: 1px solid transparent; text-decoration: none; white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-sm  { padding: 8px 16px; font-size: 13px; }
.btn-md  { padding: 10px 20px; font-size: 14px; }
.btn-lg  { padding: 13px 28px; font-size: 15px; }
.btn-xl  { padding: 15px 36px; font-size: 16px; }
.btn-green  { background: var(--green);  color: #050a03; border-color: var(--green); }
.btn-green:hover  { background: var(--green-dim); border-color: var(--green-dim); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.btn-purple { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-purple:hover { background: rgba(153,92,255,0.1); }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-purple { border-color: var(--purple-border); }
.card-hover {
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.card-hover:hover { border-color: var(--purple-border); background: var(--card-hover); }

/* ═══════════════════════════════════════════════════════
   EYEBROW
═══════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(153,92,255,0.12);
  border: 1px solid rgba(153,92,255,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px; font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--muted); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #0D1017;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(166,166,173,0.5); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--purple); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-error { font-size: 12px; color: var(--pink); margin-top: 4px; }
.form-hint  { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════
   ALERTS
═══════════════════════════════════════════════════════ */
.alert {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 13px; line-height: 1.5;
}
.alert-error   { background: rgba(255,47,146,0.08); border: 1px solid rgba(255,47,146,0.3); color: var(--pink); }
.alert-success { background: rgba(69,227,27,0.08);  border: 1px solid rgba(69,227,27,0.25); color: var(--green); }
.alert-info    { background: rgba(153,92,255,0.08); border: 1px solid rgba(153,92,255,0.25); color: var(--purple); }

/* ═══════════════════════════════════════════════════════
   BADGE / TAG
═══════════════════════════════════════════════════════ */
.badge {
  display: inline-block; border-radius: 6px;
  padding: 3px 10px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-experience   { background:rgba(153,92,255,0.15); color:var(--purple); border:1px solid rgba(153,92,255,0.3); }
.badge-warning      { background:rgba(255,47,146,0.12);  color:var(--pink);   border:1px solid rgba(255,47,146,0.3); }
.badge-positive     { background:rgba(69,227,27,0.10);   color:var(--green);  border:1px solid rgba(69,227,27,0.25); }
.badge-scam         { background:rgba(255,140,0,0.12);   color:#FF8C00;       border:1px solid rgba(255,140,0,0.3); }
.badge-catfish      { background:rgba(255,200,0,0.10);   color:#F0C000;       border:1px solid rgba(255,200,0,0.25); }
.badge-demo         { background:rgba(153,92,255,0.08);  color:var(--muted);  border:1px solid var(--border); font-size:10px; }

/* ═══════════════════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════════════════ */
.search-bar {
  display: flex; position: relative; width: 100%;
}
.search-bar input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 120px 14px 48px;
  color: var(--text); font-size: 15px;
  font-family: inherit; outline: none;
  transition: border-color 0.2s;
}
.search-bar input:focus { border-color: var(--purple); }
.search-bar input::placeholder { color: var(--muted); }
.search-bar .search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  pointer-events: none; opacity: 0.5;
}
.search-bar button {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
}

/* ═══════════════════════════════════════════════════════
   GRID HELPERS
═══════════════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero { padding: 80px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.hero-headline {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px; gap: 4px;
  max-width: 400px;
}
.stat-divider-v { width: 1px; background: var(--border); }
.stat-divider-h { grid-column: 1/-1; height: 1px; background: var(--border); }
.stat-item { text-align: center; }
.stat-value { font-size: 26px; font-weight: 900; color: var(--green); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.stat-note { font-size: 11px; color: var(--muted); margin-top: 8px; }

/* ═══════════════════════════════════════════════════════
   TRUST BAND
═══════════════════════════════════════════════════════ */
.trust-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
  text-align: center;
}
.trust-band h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin-bottom: 14px; }
.trust-band p  { font-size: 17px; color: var(--muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   DISCLAIMER
═══════════════════════════════════════════════════════ */
.disclaimer {
  background: rgba(9,13,18,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 12px; color: var(--muted); line-height: 1.6;
}
.disclaimer strong { color: var(--text); }
.disclaimer a { color: var(--purple); }

/* ═══════════════════════════════════════════════════════
   PROFILE CARD
═══════════════════════════════════════════════════════ */
.profile-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none; color: inherit;
}
.profile-card:hover { border-color: var(--purple-border); background: var(--card-hover); }
.profile-avatar {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--purple);
  background: rgba(153,92,255,0.15);
}
.profile-info { flex: 1; min-width: 0; }
.profile-name { font-weight: 700; font-size: 16px; }
.profile-meta { font-size: 13px; color: var(--muted); margin-top: 2px; }
.profile-count { font-size: 12px; font-weight: 700; color: var(--green); margin-top: 6px; }
.profile-chevron { color: var(--muted); margin-top: 4px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   POST CARD
═══════════════════════════════════════════════════════ */
.post-card { display: flex; flex-direction: column; gap: 12px; }
.post-meta  { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.post-body  { font-size: 14px; color: var(--muted); line-height: 1.7; }
.post-footer {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  font-size: 12px; color: var(--muted);
  padding-top: 12px; border-top: 1px solid var(--border);
}
.post-footer a { color: var(--muted); transition: color 0.2s; }
.post-footer a:hover { color: var(--pink); }
.stars { display: flex; gap: 2px; }
.star-on  { color: #F0C000; }
.star-off { color: var(--border); }

/* ═══════════════════════════════════════════════════════
   STEP CARDS
═══════════════════════════════════════════════════════ */
.step-num {
  position: absolute; top: 20px; right: 20px;
  font-size: 52px; font-weight: 900; line-height: 1;
  color: rgba(153,92,255,0.07); pointer-events: none; user-select: none;
}
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step-title { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   FEATURE CARDS
═══════════════════════════════════════════════════════ */
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(153,92,255,0.1);
  border: 1px solid rgba(153,92,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   SECTION HEADINGS
═══════════════════════════════════════════════════════ */
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 50px); font-weight: 900; margin-bottom: 14px; }
.section-head p  { font-size: 17px; color: var(--muted); max-width: 540px; line-height: 1.7; }
.section-head.center p { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   TOOLKIT CARD
═══════════════════════════════════════════════════════ */
.toolkit-wrap {
  background: var(--card); border: 1px solid var(--purple-border);
  border-radius: var(--radius-xl); padding: 56px;
  position: relative; overflow: hidden;
}
.toolkit-wrap::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(153,92,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.toolkit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.toolkit-check { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 8px; transition: background 0.15s; }
.toolkit-check:hover { background: rgba(69,227,27,0.06); }
.toolkit-check svg { flex-shrink: 0; }
.toolkit-check span { font-size: 13px; color: var(--muted); }
.toolkit-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 24px; }
.phone-mock {
  width: 220px; margin: 0 auto;
  background: #0D1017; border-radius: 28px;
  border: 2px solid var(--border);
  padding: 18px 14px;
  box-shadow: 0 0 48px rgba(153,92,255,0.12);
}
.phone-status { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 12px; padding: 0 4px; }
.phone-search {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 10px;
  font-size: 11px; color: var(--muted); margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.phone-item {
  border-radius: 8px; padding: 7px 10px; font-size: 11px;
  margin-bottom: 5px; display: flex; align-items: center; gap: 6px;
}
.phone-item.active {
  background: rgba(69,227,27,0.1); border: 1px solid rgba(69,227,27,0.3); color: var(--green);
}
.phone-item.inactive {
  background: var(--card); border: 1px solid var(--border); color: var(--text);
}

/* ═══════════════════════════════════════════════════════
   SAFETY SECTION
═══════════════════════════════════════════════════════ */
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); padding: 4px 0; }
.check-item svg { flex-shrink: 0; margin-top: 2px; }
.cross-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); padding: 3px 0; }
.cross-item svg { flex-shrink: 0; margin-top: 2px; }
.rights-box {
  background: #0D1017; border: 1px solid rgba(69,227,27,0.2);
  border-radius: var(--radius-lg); padding: 28px;
}
.rights-title { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════ */
.cta-wrap {
  background: var(--card); border: 1px solid var(--purple-border);
  border-radius: var(--radius-xl); padding: 72px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(69,227,27,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-h2 { font-size: clamp(32px, 5vw, 58px); font-weight: 900; margin-bottom: 18px; }
.cta-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--muted); margin-top: 24px; }
.cta-trust span { display: flex; align-items: center; gap: 6px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.6; }
.footer-col-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--muted);
  padding: 4px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════ */
.page-hero { padding: 56px 0 40px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; margin-bottom: 12px; }
.page-hero p  { font-size: 17px; color: var(--muted); max-width: 540px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.75);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--card); border: 1px solid var(--purple-border);
  border-radius: var(--radius-xl); padding: 36px;
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.modal-header h3 { font-size: 20px; font-weight: 800; }
.modal-close {
  background: none; border: none; cursor: pointer; color: var(--muted);
  font-size: 20px; line-height: 1; padding: 4px;
}
.modal-close:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px; }
.pagination span { font-size: 13px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   POLICY PAGES
═══════════════════════════════════════════════════════ */
.policy-section { margin-bottom: 32px; }
.policy-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.policy-section p, .policy-section li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 8px; }
.policy-section ul { padding-left: 20px; list-style: disc; }

/* ═══════════════════════════════════════════════════════
   DEMO NOTICE
═══════════════════════════════════════════════════════ */
.demo-notice {
  background: rgba(153,92,255,0.06);
  border: 1px solid rgba(153,92,255,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 12px; color: var(--muted); text-align: center;
  margin-bottom: 24px;
}
.demo-notice strong { color: var(--purple); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .navbar-links, .navbar-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(36px, 8vw, 56px); }
  .toolkit-grid { grid-template-columns: 1fr; }
  .phone-mock { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .cta-wrap { padding: 48px 24px; }
  .toolkit-wrap { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .toolkit-checks { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
