:root {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --ink: #172033;
  --muted: #5b6475;
  --line: #e2ddd2;
  --gold: #b88a2e;
  --teal: #1f776d;
  --teal-dark: #14514b;
  --shadow: 0 24px 70px rgba(23, 32, 51, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(247, 245, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 221, 210, 0.8);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--teal); color: white; }
nav { display: flex; gap: 24px; align-items: center; color: var(--muted); font-weight: 600; }
.nav-cta { color: var(--teal); }
.hero { padding: 94px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 5.8rem); line-height: 0.95; letter-spacing: -0.07em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.05em; margin-bottom: 20px; }
h3 { font-size: 1.15rem; letter-spacing: -0.02em; margin-bottom: 10px; }
.hero-text { font-size: 1.25rem; max-width: 650px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; background: var(--teal); color: white; font-weight: 800; box-shadow: 0 10px 24px rgba(31, 119, 109, 0.2); }
.button:hover { background: var(--teal-dark); }
.button.secondary { background: transparent; color: var(--teal); border: 1px solid var(--line); box-shadow: none; }
.hero-card { background: var(--surface); border: 1px solid var(--line); border-radius: 28px; padding: 22px; box-shadow: var(--shadow); }
.metric { padding: 22px; border-bottom: 1px solid var(--line); }
.metric:last-child { border-bottom: 0; }
.metric span { color: var(--gold); font-weight: 900; font-size: 0.85rem; }
.metric strong { display: block; font-size: 1.6rem; letter-spacing: -0.04em; margin: 4px 0; }
.metric p, .card p, .steps p, .contact p { color: var(--muted); margin-bottom: 0; }
.section { padding: 74px 0; }
.trust { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust p { margin: 0; text-align: center; font-weight: 700; color: var(--muted); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 26px; min-height: 210px; }
.accent { background: #102f2c; color: white; }
.accent .eyebrow { color: #d6b46a; }
.split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
.steps { display: grid; gap: 18px; }
.steps > div { padding: 24px; border-radius: 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); }
.steps p { color: rgba(255,255,255,0.72); }
.contact-box { text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: 30px; padding: 54px 28px; box-shadow: var(--shadow); }
.contact-box p { max-width: 620px; margin-left: auto; margin-right: auto; margin-bottom: 28px; }
.footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
@media (max-width: 850px) {
  nav { display: none; }
  .hero { padding-top: 64px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
}
