:root {
  --ink: #182026;
  --muted: #5f6b73;
  --line: #d8e0e5;
  --paper: #f7f9f7;
  --white: #ffffff;
  --teal: #0f8f83;
  --teal-dark: #0a5f5a;
  --amber: #c77721;
  --blue: #335c81;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
a { color: inherit; }
main { min-height: 100vh; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  min-height: 76vh;
  padding: 72px clamp(20px, 6vw, 96px) 48px;
  background:
    linear-gradient(135deg, rgba(15,143,131,0.14), rgba(51,92,129,0.12)),
    var(--white);
  border-bottom: 1px solid var(--line);
}
.hero-copy { max-width: 780px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.15; }
.lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}
.button.primary { background: var(--teal); color: white; border-color: var(--teal); }
.button.secondary { background: white; color: var(--ink); }
.proof-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(24,32,38,0.18);
}
.proof-panel strong { font-size: 28px; line-height: 1.05; }
.proof-panel span { color: rgba(255,255,255,0.78); }
.section, .split-section, .cta-band {
  padding: 64px clamp(20px, 6vw, 96px);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-grid article {
  min-height: 190px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.service-grid p, .split-section p, .cta-band p { color: var(--muted); }
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 40px;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-stack { display: grid; gap: 12px; }
blockquote {
  margin: 0;
  padding: 18px;
  background: var(--paper);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  color: var(--ink);
}
.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: var(--blue);
  color: white;
}
.cta-band .eyebrow, .cta-band p { color: rgba(255,255,255,0.78); }
.cta-band .button.primary { background: white; color: var(--blue); border-color: white; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 6vw, 96px);
  color: var(--muted);
  font-size: 13px;
}
.host-shell {
  display: grid;
  align-content: center;
  min-height: 100vh;
  padding: 48px;
}
.host-shell h1 { font-size: 48px; }
@media (max-width: 900px) {
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 48px; }
  .proof-panel { max-width: 520px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band { align-items: start; flex-direction: column; }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .actions, footer { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
}
