:root {
  --bg: hsl(210 40% 98%);
  --fg: hsl(215 30% 12%);
  --muted: hsl(215 16% 46%);
  --card: hsl(0 0% 100%);
  --border: hsl(215 20% 90%);
  --primary: hsl(14 85% 45%);
  --primary-glow: hsl(28 95% 55%);
  --accent: hsl(210 90% 35%);
  --sidebar-bg: hsl(215 35% 14%);
  --sidebar-fg: hsl(0 0% 100%);
  --sidebar-border: hsl(215 20% 25%);
  --shadow-elegant: 0 30px 60px -20px hsl(14 60% 25% / 0.35);
  --shadow-card: 0 12px 28px -12px hsl(215 30% 20% / 0.18);
  --gradient-hero: linear-gradient(135deg, hsl(28 95% 96%), hsl(14 80% 92%));
  --gradient-primary: linear-gradient(135deg, hsl(14 85% 45%), hsl(28 95% 55%));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container-x { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.badge-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .75rem; border-radius: 999px;
  background: hsl(14 85% 45% / .1); color: var(--primary);
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}

.btn-hero {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: .75rem;
  background: var(--gradient-primary); color: #fff;
  font-weight: 600; font-size: .95rem;
  box-shadow: var(--shadow-elegant);
  transition: transform .2s ease;
}
.btn-hero:hover { transform: translateY(-2px); }

.btn-ghost-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: .75rem;
  border: 1px solid var(--primary); color: var(--primary);
  font-weight: 600; font-size: .95rem;
  transition: background .2s ease, color .2s ease;
}
.btn-ghost-primary:hover { background: var(--primary); color: #fff; }

.disclaimer {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: 1rem 1.25rem; border-radius: .75rem;
  background: hsl(210 90% 35% / .08); border-left: 4px solid var(--accent);
  font-size: .85rem; color: var(--fg);
  margin-top: 2rem;
}

.card-elevated {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1.25rem; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-elevated:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(10px); background: hsl(210 40% 98% / .85);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: baseline; gap: .35rem; font-size: 1.125rem; font-family: 'Space Grotesk', sans-serif; }
.brand .b1 { font-weight: 600; }
.brand .b2 { font-weight: 700; color: var(--primary); }
.brand .b3 { font-size: .75rem; color: var(--muted); margin-left: .35rem; }
.nav-links { display: none; gap: 2rem; }
.nav-links a { font-size: .9rem; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: none; }
.nav-toggle { display: inline-flex; padding: .5rem; font-size: 1.25rem; }
.nav-mobile { display: none; flex-direction: column; gap: .25rem; padding: 0 1.5rem 1rem; background: hsl(210 40% 98% / .95); border-bottom: 1px solid var(--border); }
.nav-mobile a { padding: .65rem 0; font-size: .95rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.nav-mobile.open { display: flex; }
@media (min-width: 1024px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 640px) { .brand .b3 { display: none; } }

.hero { background: var(--gradient-hero); padding: 7rem 0 5rem; }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }
.hero h1 { margin-top: 1.25rem; font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 700; }
.hero h1 .pri { color: var(--primary); }
.hero h1 .acc { color: var(--accent); }
.hero p.lead { margin-top: 1.5rem; max-width: 36rem; font-size: 1.05rem; color: var(--muted); }
.hero-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-card-visual {
  background: var(--card); border-radius: 1.5rem; padding: 2rem;
  box-shadow: var(--shadow-elegant); border: 1px solid var(--border);
}
.hero-card-visual h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.hero-card-visual .row { display: flex; justify-content: space-between; padding: .9rem 0; border-bottom: 1px dashed var(--border); }
.hero-card-visual .row:last-child { border-bottom: 0; }
.hero-card-visual .lbl { color: var(--muted); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-card-visual .val { font-weight: 600; color: var(--fg); }
.hero-card-visual .status { color: hsl(140 60% 35%); font-weight: 700; }

.section { padding: 5rem 0; }
.section.alt { background: hsl(28 95% 96% / .5); }
.section-head { max-width: 38rem; }
.section-head.center { margin: 0 auto; text-align: center; }
.section h2 { margin-top: 1rem; font-size: clamp(1.875rem, 3vw, 2.5rem); font-weight: 700; }
.section .sub { margin-top: 1rem; color: var(--muted); }

.grid-svc { margin-top: 3rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-svc { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-svc { grid-template-columns: repeat(3, 1fr); } }

.card-elevated .body { padding: 1.75rem; }
.icon-chip { width: 48px; height: 48px; display: grid; place-items: center; border-radius: .7rem; background: hsl(14 85% 45% / .12); color: var(--primary); font-size: 1.5rem; margin-bottom: 1rem; }
.card-elevated h3 { font-size: 1.05rem; font-weight: 700; }
.card-elevated p { margin-top: .75rem; font-size: .9rem; color: var(--muted); }

.stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stats .stat { border: 1px solid var(--border); background: var(--card); border-radius: .9rem; padding: 1.25rem; }
.stats .k { font-size: 1.6rem; font-weight: 700; color: var(--primary); font-family: 'Space Grotesk', sans-serif; }
.stats .v { font-size: .7rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: .35rem; }

.faq-wrap { max-width: 720px; margin: 3rem auto 0; }
.faq-card { background: var(--card); border: 1px solid var(--border); border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-card); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 0; font-size: .95rem; font-weight: 600; text-align: left; transition: color .2s; }
.faq-q:hover { color: var(--primary); }
.faq-q .ico { color: var(--muted); font-size: 1.25rem; }
.faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s ease, opacity .3s ease, padding .3s ease; font-size: .9rem; color: var(--muted); padding: 0; }
.faq-item.open .faq-a { max-height: 400px; opacity: 1; padding: 0 0 1.15rem; }
.faq-item .ico-minus { display: none; }
.faq-item.open .ico-plus { display: none; }
.faq-item.open .ico-minus { display: inline; }

.contact-grid { display: grid; gap: 2rem; margin-top: 3rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.75rem; text-align: center; box-shadow: var(--shadow-card); transition: transform .2s; }
.contact-card:hover { transform: translateY(-3px); }
.contact-card .ico { font-size: 1.75rem; margin-bottom: .75rem; }
.contact-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--muted); }
.contact-card a:hover { color: var(--primary); }

footer.foot { background: var(--sidebar-bg); color: var(--sidebar-fg); padding: 3.5rem 0 1.5rem; }
.foot-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr; } }
.foot .brand { color: #fff; margin-bottom: 1rem; }
.foot .brand .b2 { color: var(--primary-glow); }
.foot h4 { font-size: .85rem; font-weight: 700; margin-bottom: 1rem; color: var(--primary-glow); letter-spacing: .04em; text-transform: uppercase; }
.foot ul li { padding: .3rem 0; font-size: .88rem; opacity: .8; }
.foot ul li a:hover { color: var(--primary-glow); }
.foot .small { font-size: .85rem; opacity: .75; line-height: 1.6; }
.foot .copy { font-size: .78rem; opacity: .55; text-align: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--sidebar-border); }

/* Legal pages */
.legal-header { position: sticky; top: 0; z-index: 40; background: hsl(210 40% 98% / .9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.legal-header .inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.legal-back { display: inline-flex; align-items: center; gap: .35rem; color: var(--primary); font-weight: 500; font-size: .9rem; }
.legal-hero { padding: 4rem 0 2rem; }
.legal-hero .badge-pill { margin-bottom: 1rem; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.legal-hero .sub { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; max-width: 42rem; }
.legal-hero .updated { margin-top: 1rem; font-size: .8rem; color: var(--muted); }
.legal-content { padding: 2rem 1.5rem 5rem; max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: .75rem; color: var(--fg); }
.legal-content p { margin-bottom: 1rem; color: var(--muted); font-size: .95rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: var(--muted); margin-bottom: .5rem; font-size: .95rem; }
.legal-content strong { color: var(--fg); }
