@font-face {
  font-family: "Manrope";
  src: local("Manrope");
  font-display: swap;
}

:root {
  --ink: #14304d;
  --ink-dark: #0e2338;
  --text: #1a2733;
  --muted: #5a6b7b;
  --teal: #16827d;
  --teal-dark: #11625e;
  --paper: #f7f9fb;
  --surface: #ffffff;
  --border: #dce5e9;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(20, 48, 77, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img, svg { display: block; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; color: white; background: var(--ink); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--border); }
.header-row { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { width: 242px; max-width: 58vw; text-decoration: none; }
.logo svg { width: 100%; height: auto; }
.logo-text { color: #11171d; font-family: Manrope, ui-sans-serif, system-ui, sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -.04em; }
.logo-text span { color: var(--teal); }
.desktop-nav { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 700; }
.desktop-nav a { text-decoration: none; }
.desktop-nav a:hover { color: var(--teal-dark); }
.desktop-nav a[aria-current="page"]:not(.button) { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 7px; }
.menu-button { display: none; border: 0; background: transparent; color: var(--ink); padding: 8px; cursor: pointer; }
.mobile-menu { padding: 8px 20px 20px; border-top: 1px solid var(--border); }
.mobile-menu a { display: block; padding: 10px 0; font-weight: 700; text-decoration: none; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 24px; border: 2px solid transparent; border-radius: 999px; background: var(--teal); color: white; font-weight: 800; text-decoration: none; cursor: pointer; transition: background .15s ease, transform .15s ease; }
.button:hover { background: var(--teal-dark); transform: translateY(-1px); }
.button-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.button-outline:hover { color: white; border-color: var(--teal-dark); }

.hero { padding: 88px 0 72px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(250px, .5fr); align-items: center; gap: 64px; }
.eyebrow { margin: 0 0 12px; color: var(--teal-dark); font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--ink); font-family: Manrope, ui-sans-serif, system-ui, sans-serif; line-height: 1.12; }
h1 { margin-bottom: 24px; font-size: clamp(42px, 6.3vw, 76px); letter-spacing: -.04em; }
h2 { margin-bottom: 16px; font-size: clamp(32px, 4vw, 48px); letter-spacing: -.025em; }
h3 { margin-bottom: 10px; font-size: 22px; }
.lead { max-width: 690px; margin: 0; color: var(--muted); font-size: clamp(18px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin: 18px 0 0; color: var(--muted); font-size: 14px; }
.hero-mark { width: min(260px, 80%); justify-self: end; color: var(--teal); }
.trust { border-block: 1px solid var(--border); background: var(--surface); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 32px; padding: 20px 0; color: var(--muted); font-size: 14px; font-weight: 700; }

.section { padding: 86px 0; }
.section-alt { background: var(--surface); }
.section-head { max-width: 720px; margin-bottom: 38px; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { min-height: 100%; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.service-icon { display: grid; width: 52px; height: 52px; margin-bottom: 22px; place-items: center; border-radius: 14px; color: var(--teal-dark); background: #e9f5f4; }
.service-card p { margin-bottom: 0; color: var(--muted); }
.service-card ul { padding-left: 20px; color: var(--muted); }
.card-link { display: block; color: inherit; text-decoration: none; transition: border-color .15s ease, transform .15s ease; }
.card-link:hover { border-color: var(--teal); transform: translateY(-2px); }
.text-link { display: inline-block; margin-top: 20px; color: var(--teal-dark); }

.page-hero { padding: 90px 0 76px; }
.narrow { max-width: 900px; }
.content-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.detail-card { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.detail-card ul { margin: 0; padding-left: 22px; }
.detail-card li + li { margin-top: 10px; }
.cta-band { padding: 66px 0; text-align: center; color: white; background: var(--ink); }
.cta-band h2 { color: white; }
.cta-band p { margin: 0 auto 24px; color: #dbe9ed; }
.contact-details { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 30px; font-style: normal; font-size: 18px; }
.contact-details strong { color: var(--ink); font-size: 21px; }
.contact-details a { color: var(--teal-dark); font-weight: 800; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 30px 30px 30px 82px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--paper); counter-increment: step; }
.step::before { content: counter(step); position: absolute; left: 26px; top: 28px; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: white; background: var(--teal); font-weight: 800; }
.step p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact-copy p { color: var(--muted); }
.contact-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: 14px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; color: var(--text); background: var(--paper); }
.field textarea { min-height: 150px; resize: vertical; }
.privacy { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.form-message { margin: 14px 0 0; padding: 10px 12px; border-radius: 8px; color: #732b00; background: #fff0cc; font-size: 14px; }

.site-footer { padding: 32px 0; color: #dbe9ed; background: var(--ink-dark); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { width: 206px; }
.footer-copy { margin: 0; font-size: 13px; }

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .hero { padding-top: 58px; }
  .hero-grid, .contact-grid, .content-grid { grid-template-columns: 1fr; }
  .hero-mark { display: none; }
  .services, .steps { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
