:root {
  --bg: #FEF4E2;
  --bg-warm: #FBE9C9;
  --surface: #FFFFFF;
  --surface-sunken: #FAEFD8;
  --text: #2A1F3D;
  --text-soft: #5C5170;
  --text-muted: #908799;
  --accent: #FF6B6B;
  --accent-deep: #E84D4D;
  --accent-soft: #FBE0DC;
  --gold: #FFC93C;
  --gold-deep: #E5A800;
  --green: #52C77E;
  --divider: rgba(73,47,25,0.06);
  --shadow-soft: 0 8px 24px rgba(73,47,25,0.10);
  --shadow-chunky: 0 6px 0 rgba(73,47,25,0.10);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --pad-xs: 8px;
  --pad-sm: 12px;
  --pad-md: 16px;
  --pad-lg: 24px;
  --pad-xl: 32px;
  --pad-xxl: 48px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   NAV
============================================================ */
.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px var(--pad-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pad-md);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.4px;
  text-decoration: none;
}
.nav-brand .dot {
  width: 26px; height: 26px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: var(--shadow-chunky);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
}
.nav-links a:hover { background: var(--surface); color: var(--text); text-decoration: none; }
.lang-switch {
  margin-left: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: var(--surface);
  border-radius: 999px;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--pad-xxl) var(--pad-lg) calc(var(--pad-xxl) + 12px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--pad-xxl);
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--accent-deep);
  margin-bottom: 16px;
}
.hero-title {
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -1.6px;
  font-weight: 900;
  margin: 0 0 20px;
  color: var(--text);
}
.hero-title .accent { color: var(--accent); }
.hero-sub {
  font-size: 19px;
  color: var(--text-soft);
  margin: 0 0 32px;
  max-width: 520px;
  line-height: 1.55;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: white;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2px;
  box-shadow: var(--shadow-chunky);
}
.hero-cta:hover { text-decoration: none; transform: translateY(-1px); }
.hero-cta .small { font-size: 11px; font-weight: 600; opacity: 0.7; display: block; line-height: 1; margin-bottom: 2px; }
.hero-cta .big { font-size: 17px; font-weight: 900; display: block; line-height: 1; }
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: radial-gradient(circle at 50% 50%, rgba(255,201,60,0.35), transparent 65%);
}
.hero-art img {
  width: 78%;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SECTIONS
============================================================ */
.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--pad-xxl) var(--pad-lg);
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.section-title {
  font-size: 40px;
  letter-spacing: -0.8px;
  font-weight: 900;
  margin: 0 0 18px;
  color: var(--text);
}
.section-lead {
  font-size: 18px;
  color: var(--text-soft);
  margin: 0 0 36px;
  max-width: 640px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-soft);
}
.card h3 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin: 14px 0 8px;
  color: var(--text);
}
.card p {
  font-size: 15px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.55;
}
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
}
.card-icon.gold { background: rgba(255,201,60,0.18); color: var(--gold-deep); }
.card-icon.green { background: rgba(82,199,126,0.18); color: #2E9D54; }

.split {
  background: var(--surface-sunken);
  border-radius: var(--radius-lg);
  padding: var(--pad-xxl);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--pad-xxl);
  align-items: center;
}
.split img { width: 70%; max-width: 280px; margin: 0 auto; }
.split ol { padding-left: 22px; margin: 0; }
.split ol li {
  font-size: 17px;
  color: var(--text);
  padding-left: 8px;
  margin-bottom: 14px;
}
.split ol li::marker { color: var(--accent-deep); font-weight: 900; }
.split ol li b { color: var(--text); }

.trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-chip {
  background: var(--surface);
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
  box-shadow: var(--shadow-soft);
}
.trust-chip span.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ============================================================
   LEGAL / LONG-FORM
============================================================ */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--pad-xl) var(--pad-lg) var(--pad-xxl);
}
.legal h1 {
  font-size: 44px;
  letter-spacing: -1px;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--text);
}
.legal .updated {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin: 36px 0 12px;
  color: var(--text);
}
.legal p, .legal li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}
.legal strong { color: var(--text); }
.legal ul { padding-left: 22px; }
.legal ul li { margin-bottom: 6px; }
.legal a { color: var(--accent-deep); border-bottom: 1px solid currentColor; }
.legal a:hover { text-decoration: none; }
.legal-lede {
  font-size: 18px;
  color: var(--text);
  background: var(--surface);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border-left: 0;
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  display: grid;
  gap: 14px;
}
.faq details {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
}
.faq summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-deep);
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--pad-xxl);
  text-align: center;
  box-shadow: var(--shadow-soft);
  max-width: 560px;
  margin: 0 auto;
}
.contact-card img { width: 96px; margin: 0 auto 18px; }
.contact-card h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
  color: var(--text);
}
.contact-card p { color: var(--text-soft); margin: 0 0 24px; }
.mail-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-chunky);
}
.mail-pill:hover { text-decoration: none; background: var(--accent-deep); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--pad-xl) var(--pad-lg) var(--pad-xxl);
  border-top: 1px solid var(--divider);
  margin-top: var(--pad-xl);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }
.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding: var(--pad-xl) var(--pad-lg);
    gap: var(--pad-xl);
  }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-title { font-size: 44px; letter-spacing: -1.2px; }
  .hero-sub { font-size: 17px; }
  .section { padding: var(--pad-xl) var(--pad-lg); }
  .section-title { font-size: 30px; }
  .cards-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; padding: var(--pad-xl); gap: var(--pad-lg); }
  .split img { max-width: 200px; }
  .legal h1 { font-size: 32px; }
  .nav { padding: 16px var(--pad-md); }
  .nav-links a { padding: 6px 10px; font-size: 14px; }
}
