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

/* ─── RESET ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  /* palette */
  --ink-900: #0a0f1e;
  --ink-800: #0f1628;
  --ink-700: #162040;
  --ink-600: #1e2d55;
  --ink-400: #3a4f7a;
  --ink-200: #7a90be;
  --ink-100: #b8c8e8;
  --ink-50:  #e8eef8;

  --emerald:      #00e5a0;
  --emerald-dim:  #00b87e;
  --emerald-glow: rgba(0,229,160,.18);

  --gold:      #f0c060;
  --gold-dim:  #c89a30;

  --white:   #ffffff;
  --surface: #f5f8ff;
  --surface-card: #ffffff;
  --border:  #dce6f7;

  /* typography */
  --ff-display: 'Syne', sans-serif;
  --ff-body:    'Inter', sans-serif;

  /* spacing scale (t-shirt) */
  --sp-2:  0.125rem;
  --sp-4:  0.25rem;
  --sp-8:  0.5rem;
  --sp-12: 0.75rem;
  --sp-16: 1rem;
  --sp-24: 1.5rem;
  --sp-32: 2rem;
  --sp-48: 3rem;
  --sp-64: 4rem;
  --sp-80: 5rem;
  --sp-96: 6rem;
  --sp-128:8rem;

  /* radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full:9999px;

  /* shadows */
  --sh-card:  0 2px 16px rgba(10,15,30,.08), 0 0 0 1px rgba(10,15,30,.06);
  --sh-lift:  0 8px 40px rgba(10,15,30,.13), 0 1px 4px rgba(10,15,30,.08);
  --sh-glow:  0 0 32px rgba(0,229,160,.22);
  --sh-gold:  0 0 24px rgba(240,192,96,.18);

  /* transitions */
  --ease: cubic-bezier(.22,.68,0,1.2);
  --t-fast: 160ms;
  --t-med:  260ms;
}

/* ─── BASE ───────────────────────────────────────────────────────────────── */
body {
  font-family: var(--ff-body);
  font-size: clamp(0.9375rem, 1vw + 0.6rem, 1.0625rem);
  line-height: 1.7;
  color: var(--ink-800);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

/* ─── CONTAINER ──────────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 5vw, 3rem);
  padding-right: clamp(1rem, 5vw, 3rem);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
h1 { font-size: clamp(2.4rem, 5.5vw + .5rem, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw + .4rem, 3rem);  font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw + .3rem, 1.6rem);   font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { max-width: 68ch; color: var(--ink-600); }
p.lead {
  font-size: clamp(1.05rem, 1.5vw + .4rem, 1.3rem);
  color: var(--ink-400);
  max-width: 58ch;
}
strong { color: var(--ink-900); font-weight: 600; }

/* ─── LINKS ──────────────────────────────────────────────────────────────── */
a.text-link {
  color: var(--emerald-dim);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) ease, color var(--t-fast) ease;
}
a.text-link:hover { border-color: var(--emerald-dim); color: var(--ink-800); }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-12) var(--sp-24);
  border-radius: var(--r-full);
  font-family: var(--ff-body);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) ease,
              background var(--t-fast) ease,
              color var(--t-fast) ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--emerald);
  color: var(--ink-900);
  box-shadow: 0 2px 16px rgba(0,229,160,.28);
}
.btn-primary:hover {
  background: #00ffc0;
  box-shadow: var(--sh-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink-800);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--emerald-dim);
  color: var(--emerald-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-400);
  padding: var(--sp-12) var(--sp-16);
}
.btn-ghost:hover { color: var(--emerald-dim); }

.btn-gold {
  background: var(--gold);
  color: var(--ink-900);
  box-shadow: var(--sh-gold);
}
.btn-gold:hover {
  background: #ffd878;
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(240,192,96,.32);
}

/* ─── EYEBROW ────────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald-dim);
  margin-bottom: var(--sp-16);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--emerald);
  border-radius: var(--r-full);
}

/* ─── HEADER / NAV ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,248,255,.92);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-med) ease;
}
.site-header.scrolled { box-shadow: var(--sh-card); }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border);
  font-size: .8rem;
  color: var(--ink-200);
}
.header-top a { color: var(--ink-400); transition: color var(--t-fast) ease; }
.header-top a:hover { color: var(--emerald-dim); }
.header-top-contact { display: flex; align-items: center; gap: var(--sp-24); }
.header-top-contact span { display: flex; align-items: center; gap: var(--sp-8); }
.header-top-right { display: flex; align-items: center; gap: var(--sp-24); }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
  gap: var(--sp-32);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--ink-900);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px var(--emerald);
}
.nav-logo-mark svg { width: 22px; height: 22px; }
.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -.03em;
}
.nav-logo-text span { color: var(--emerald-dim); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-600);
  padding: var(--sp-8) var(--sp-12);
  border-radius: var(--r-sm);
  transition: color var(--t-fast) ease, background var(--t-fast) ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink-900);
  background: rgba(0,184,126,.08);
}
.nav-links a.active { color: var(--emerald-dim); font-weight: 600; }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  flex-shrink: 0;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink-800);
  border-radius: var(--r-full);
  transition: transform var(--t-med) ease, opacity var(--t-fast) ease;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-100);
  padding-top: var(--sp-80);
  padding-bottom: var(--sp-48);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(0,229,160,.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-48);
  padding-bottom: var(--sp-64);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand {}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}
.footer-brand-mark {
  width: 36px; height: 36px;
  background: var(--emerald);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.footer-brand-mark svg { width: 22px; height: 22px; }
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
}
.footer-tagline {
  font-size: .9rem;
  color: var(--ink-200);
  margin-bottom: var(--sp-24);
  max-width: 28ch;
  line-height: 1.55;
}
.footer-social {
  display: flex;
  gap: var(--sp-12);
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-200);
  transition: border-color var(--t-fast) ease, color var(--t-fast) ease, background var(--t-fast) ease;
}
.footer-social a:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(0,229,160,.08);
}

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-bottom: var(--sp-16);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-12); }
.footer-col ul a {
  font-size: .9rem;
  color: var(--ink-200);
  transition: color var(--t-fast) ease;
}
.footer-col ul a:hover { color: var(--emerald); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-32);
  font-size: .82rem;
  color: var(--ink-400);
  gap: var(--sp-24);
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: var(--sp-24); }
.footer-legal a { color: var(--ink-400); transition: color var(--t-fast) ease; }
.footer-legal a:hover { color: var(--emerald); }

/* ─── SECTIONS ───────────────────────────────────────────────────────────── */
.section {
  padding-top: var(--sp-96);
  padding-bottom: var(--sp-96);
}
.section-sm {
  padding-top: var(--sp-64);
  padding-bottom: var(--sp-64);
}
.section-lg {
  padding-top: var(--sp-128);
  padding-bottom: var(--sp-128);
}
.section-alt { background: var(--white); }
.section-dark {
  background: var(--ink-900);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: var(--ink-100); }

.section-header {
  margin-bottom: var(--sp-64);
}
.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header h2 { margin-bottom: var(--sp-16); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(165deg, #f0f5ff 0%, #e8f0fa 40%, #f5fff8 100%);
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,229,160,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(240,192,96,.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-content {}
.hero-content .eyebrow { margin-bottom: var(--sp-16); }
.hero-title {
  margin-bottom: var(--sp-24);
  color: var(--ink-900);
}
.hero-title em {
  font-style: normal;
  color: var(--emerald-dim);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw + .3rem, 1.2rem);
  color: var(--ink-600);
  margin-bottom: var(--sp-40);
  max-width: 50ch;
}
--sp-40: 2.5rem;

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  margin-bottom: var(--sp-48);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  font-size: .82rem;
  color: var(--ink-400);
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatars span {
  width: 28px; height: 28px;
  border-radius: var(--r-full);
  border: 2px solid var(--white);
  background: var(--ink-600);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--white);
}
.hero-trust-avatars span:first-child { margin-left: 0; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lift);
  background: var(--ink-700);
  aspect-ratio: 4/3;
  position: relative;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ink-800) 0%, var(--ink-700) 100%);
  min-height: 320px;
}
.hero-float-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-12) var(--sp-16);
  box-shadow: var(--sh-lift);
  display: flex;
  align-items: center;
  gap: var(--sp-12);
}
.hero-float-badge .badge-icon {
  width: 36px; height: 36px;
  background: var(--emerald-glow);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-dim);
  font-size: 1.1rem;
}
.hero-float-badge .badge-text strong {
  display: block;
  font-size: .85rem;
  color: var(--ink-900);
}
.hero-float-badge .badge-text span {
  font-size: .75rem;
  color: var(--ink-400);
}

/* ─── CARDS ──────────────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--sh-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lift);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--emerald-glow);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-16);
  color: var(--emerald-dim);
  font-size: 1.4rem;
}
.card h3 { font-size: 1.1rem; margin-bottom: var(--sp-8); color: var(--ink-900); }
.card p  { font-size: .9rem; color: var(--ink-400); max-width: none; }

.card-dark {
  background: var(--ink-700);
  border-color: rgba(255,255,255,.08);
}
.card-dark h3 { color: var(--white); }
.card-dark p  { color: var(--ink-100); }

/* ─── STATS ──────────────────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
}
.stat-item {
  text-align: center;
  padding: var(--sp-32) var(--sp-24);
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--border);
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw + .5rem, 3.2rem);
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: var(--sp-8);
}
.stat-number span { color: var(--emerald-dim); }
.stat-label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ─── CTA BAND ───────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,229,160,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(240,192,96,.08) 0%, transparent 55%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-24);
}
.cta-inner h2 { color: var(--white); }
.cta-inner p  { color: var(--ink-100); max-width: 52ch; text-align: center; }
.cta-actions  {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  justify-content: center;
}
.cta-note {
  font-size: .8rem;
  color: var(--ink-400);
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-4); max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--sp-20) var(--sp-24);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  background: none;
  cursor: pointer;
  transition: color var(--t-fast) ease;
}
--sp-20: 1.25rem;
.faq-question:hover { color: var(--emerald-dim); }
.faq-question .faq-icon {
  width: 20px; height: 20px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ink-400);
  font-size: .9rem;
  transition: transform var(--t-med) var(--ease), border-color var(--t-fast) ease;
}
.faq-answer {
  padding: 0 var(--sp-24) var(--sp-20);
  font-size: .95rem;
  color: var(--ink-600);
  line-height: 1.7;
}

/* ─── CONTENT SECTION ────────────────────────────────────────────────────── */
.content-section .section-header { margin-bottom: var(--sp-32); }
.content-body { max-width: 72ch; }
.content-body p + p { margin-top: var(--sp-16); }

/* ─── FORMS ──────────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: var(--sp-8); }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-800);
}
.form-input,
.form-textarea {
  padding: var(--sp-12) var(--sp-16);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink-900);
  font-size: .95rem;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--emerald-dim);
  box-shadow: 0 0 0 3px rgba(0,184,126,.12);
}
.form-textarea { min-height: 120px; resize: vertical; }

/* ─── UTILITY ────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-emerald { color: var(--emerald-dim); }
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--ink-400); }
.mt-8  { margin-top: var(--sp-8);  }
.mt-16 { margin-top: var(--sp-16); }
.mt-24 { margin-top: var(--sp-24); }
.mt-32 { margin-top: var(--sp-32); }
.mt-48 { margin-top: var(--sp-48); }
.mb-8  { margin-bottom: var(--sp-8);  }
.mb-16 { margin-bottom: var(--sp-16); }
.mb-24 { margin-bottom: var(--sp-24); }
.mb-32 { margin-bottom: var(--sp-32); }
.mb-48 { margin-bottom: var(--sp-48); }
.gap-8  { gap: var(--sp-8);  }
.gap-12 { gap: var(--sp-12); }
.gap-16 { gap: var(--sp-16); }
.d-flex { display: flex; }
.ai-center { align-items: center; }
.fw-wrap { flex-wrap: wrap; }

/* ─── DIVIDER ────────────────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: var(--sp-64) 0;
}

/* ─── BADGE PILL ─────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-4) var(--sp-12);
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.badge-green {
  background: rgba(0,229,160,.12);
  color: var(--emerald-dim);
  border: 1px solid rgba(0,229,160,.24);
}
.badge-gold {
  background: rgba(240,192,96,.12);
  color: var(--gold-dim);
  border: 1px solid rgba(240,192,96,.24);
}
.badge-navy {
  background: var(--ink-600);
  color: var(--ink-100);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-32); }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .nav-links  { display: none; }
  .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-height: 280px; }

  .card-grid   { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .stats-row   { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-float-badge { display: none; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions  { flex-direction: column; align-items: center; }
}
body{margin:0}
img,svg,video{max-width:100%;height:auto}
*{box-sizing:border-box}
