:root {
  --brand: #0b7f6b;
  --brand-dark: #086556;
  --brand-soft: #e7f4f1;
  --ink: #111827;
  --ink-2: #374151;
  --muted: #6b7280;
  --line: #e5e7eb;
  --canvas: #f7f7f4;
  --sand: #f3ede2;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
.top { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 650; letter-spacing: -0.01em; }
.brand:hover { text-decoration: none; }
.logo { width: 34px; height: 34px; border-radius: 9px; background: var(--brand); display: grid; place-items: center; flex: none; }
.brand small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; letter-spacing: 0; line-height: 1.2; }
.brand span { line-height: 1.2; }
.nav { display: flex; gap: 22px; align-items: center; font-size: 14.5px; }
.nav a { color: var(--ink-2); }
.btn { white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding: 0 20px; border-radius: 10px; font-weight: 600; font-size: 15px; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: #fff; }
.btn-sm { height: 36px; padding: 0 14px; font-size: 14px; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--sand) 0%, #fff 100%); padding: 72px 0 56px; }
.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); background: var(--brand-soft); padding: 5px 10px; border-radius: 999px; }
.hero h1 { font-size: clamp(34px, 5.4vw, 54px); line-height: 1.08; letter-spacing: -0.025em; margin: 18px 0 16px; max-width: 760px; }
.hero p.lead { font-size: 18px; color: var(--ink-2); max-width: 620px; margin: 0 0 28px; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--canvas); }
h2 { font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 10px; }
.sub { color: var(--muted); margin: 0 0 36px; max-width: 620px; }
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.card h3 { font-size: 17px; margin: 12px 0 6px; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--ink-2); font-size: 15px; }
.icon { width: 40px; height: 40px; border-radius: 10px; background: var(--brand-soft); display: grid; place-items: center; }
.steps { counter-reset: step; display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { padding: 22px; border-radius: 14px; background: #fff; border: 1px solid var(--line); }
.step::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 30px; height: 30px; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 600; font-size: 14px; }
.step h3 { font-size: 16.5px; margin: 12px 0 4px; }
.step p { margin: 0; color: var(--ink-2); font-size: 15px; }
.contact { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.contact .card a { font-weight: 600; font-size: 16.5px; }
.label { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; }
footer nav { display: flex; gap: 20px; }
footer a { color: var(--ink-2); }

/* Legal pages */
.legal { padding: 48px 0 72px; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: clamp(30px, 4.4vw, 40px); letter-spacing: -0.02em; margin: 0 0 6px; }
.legal .updated { color: var(--muted); margin: 0 0 32px; }
.legal h2 { font-size: 21px; margin: 36px 0 8px; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { padding-left: 20px; }
.legal li { margin: 4px 0; }

@media (max-width: 640px) {
  .nav .hide-sm { display: none; }
  .brand small { font-size: 11px; }
  .brand small .hide-sm { display: none; }
  .hero { padding: 48px 0 40px; }
  section { padding: 48px 0; }
  .cta .btn { flex: 1 1 100%; }
}
