:root {
  --teal: #0f766e;
  --teal-dark: #075e59;
  --teal-soft: #e8f6f4;
  --silver-soft: #f4f7f9;
  --white: #fff;
  --charcoal: #1f2937;
  --ink: #0b1f2a;
  --muted: #5f6b7a;
  --line: #dfe5eb;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--charcoal); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: var(--teal-dark); font-weight: 850; }
.wrap { width: min(1060px, calc(100% - 36px)); margin: 0 auto; }
header, footer { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); }
footer { border-top: 1px solid var(--line); border-bottom: 0; padding: 24px 0; color: var(--muted); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 76px; }
.brand { color: var(--teal-dark); font-size: 1.35rem; font-weight: 900; text-decoration: none; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border: 1px solid var(--teal); border-radius: 7px; background: var(--teal); color: var(--white); font-weight: 850; text-decoration: none; }
.button.secondary { background: var(--white); color: var(--teal-dark); }
.hero { padding: 64px 0 44px; background: linear-gradient(135deg, var(--silver-soft), #fff); border-bottom: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: 34px; align-items: center; }
.kicker { margin: 0 0 12px; color: var(--muted); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; color: var(--ink); font-size: clamp(2.55rem, 5vw, 4.2rem); line-height: 1.04; }
h2 { margin-bottom: 14px; color: var(--ink); font-size: clamp(1.65rem, 3vw, 2.25rem); line-height: 1.12; }
p, li { line-height: 1.65; }
.lead { max-width: 650px; font-size: 1.12rem; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 18px 44px rgba(31,41,55,.08); }
section { padding: 40px 0; }
.actions, .links .wrap { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.links { background: var(--teal-soft); }
.links h2 { flex-basis: 100%; margin-bottom: 4px; }
.links a { padding: 10px 12px; border: 1px solid rgba(15,118,110,.22); border-radius: 7px; background: var(--white); text-decoration: none; }
@media (max-width: 780px) { .grid { grid-template-columns: 1fr; } .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; } }
