:root {
  --ink: #102a2e;
  --ink-soft: #40585b;
  --spruce: #0b3b35;
  --spruce-2: #0f5147;
  --mint: #d9ebe4;
  --mint-2: #eef7f3;
  --sand: #f3b562;
  --paper: #fbfcfb;
  --white: #ffffff;
  --line: #dce5e1;
  --shadow: 0 18px 50px rgba(16, 42, 46, 0.1);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--spruce-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 8vw, 6.4rem); max-width: 900px; }
h2 { font-size: clamp(2.25rem, 5vw, 4.2rem); max-width: 820px; }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.lede { max-width: 760px; color: var(--ink-soft); font-size: clamp(1.15rem, 2vw, 1.4rem); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 229, 225, .9);
  background: rgba(251, 252, 251, .9);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: min(320px, 58vw); text-decoration: none; }
.nav-list { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.nav-list a { color: var(--ink-soft); font-size: .96rem; font-weight: 700; text-decoration: none; }
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--spruce); }
.nav-toggle { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 6px 0; background: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--spruce);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--spruce-2); }
.button-secondary { border-color: var(--line); background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--white); border-color: #b6c7c0; }
.button-small { min-height: 42px; padding-inline: 18px; font-size: .92rem; }

.hero { position: relative; overflow: hidden; padding: 92px 0 76px; }
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 184, 166, .28), rgba(121, 184, 166, 0) 68%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr 340px; align-items: end; gap: 70px; }
.hero-copy { display: grid; gap: 28px; }
.hero-copy h1 span { color: var(--spruce-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}
.hero-panel strong { display: block; margin-bottom: 8px; font-size: 1.1rem; }
.hero-panel p { color: var(--ink-soft); }
.signal { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--spruce-2); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.signal::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--sand); box-shadow: 0 0 0 6px rgba(243, 181, 98, .17); }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 28px 34px; text-align: center; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { display: block; font-size: 1.15rem; }
.trust-item span { color: var(--ink-soft); font-size: .95rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading .lede { max-width: 480px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); border-color: #b9ccc4; box-shadow: var(--shadow); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 58px; border-radius: 14px; background: var(--mint-2); color: var(--spruce); font-weight: 900; }
.card p { margin-top: 14px; color: var(--ink-soft); }

.dark-section { background: var(--spruce); color: var(--white); }
.dark-section .eyebrow { color: #9bd5c4; }
.dark-section .lede { color: #c9ded8; }
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.process-step { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .24); }
.process-number { display: block; margin-bottom: 42px; color: var(--sand); font-weight: 900; }
.process-step p { margin-top: 12px; color: #c9ded8; }

.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.feature-panel { padding: 38px; border-radius: 28px; background: var(--mint-2); }
.feature-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid #cfe0d9; }
.feature-list li:last-child { border-bottom: 0; }
.feature-list span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--spruce); color: white; font-size: .8rem; font-weight: 900; }
.feature-list strong { display: block; margin-bottom: 5px; }
.feature-list p { color: var(--ink-soft); }

.cta { padding: 80px 0; }
.cta-box { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 54px; border-radius: 30px; background: var(--ink); color: var(--white); }
.cta-box p { max-width: 690px; margin-top: 16px; color: #c7d6d8; font-size: 1.1rem; }
.cta-box .button { background: var(--sand); color: var(--ink); }
.cta-box .button:hover { background: #f7c77f; }

.page-hero { padding: 84px 0 68px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 1000px; font-size: clamp(3rem, 7vw, 5.6rem); }
.page-hero .lede { margin-top: 24px; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-detail { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.service-detail p { margin-top: 14px; color: var(--ink-soft); }
.service-detail ul { margin: 20px 0 0; padding-left: 1.2rem; color: var(--ink-soft); }

.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.fact { padding: 28px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.fact strong { display: block; margin-bottom: 10px; font-size: 1.2rem; }
.fact p { color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
.contact-stack { display: grid; gap: 16px; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.contact-card small { display: block; margin-bottom: 8px; color: var(--ink-soft); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.contact-card a { font-size: 1.2rem; font-weight: 800; text-decoration: none; }
.contact-note { padding: 32px; border-radius: var(--radius); background: var(--mint-2); }
.contact-note p + p { margin-top: 14px; }

.prose { max-width: 790px; }
.prose h2 { margin-top: 54px; font-size: 2rem; }
.prose h3 { margin-top: 34px; }
.prose p, .prose ul { margin-top: 16px; color: var(--ink-soft); }

.site-footer { padding: 56px 0 28px; border-top: 1px solid var(--line); background: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 72px; align-items: start; }
.footer-brand { width: 290px; }
.footer-copy { max-width: 470px; margin-top: 18px; color: var(--ink-soft); }
.footer-nav { display: grid; gap: 10px; }
.footer-nav strong { margin-bottom: 5px; }
.footer-nav a { color: var(--ink-soft); text-decoration: none; }
.footer-nav a:hover { color: var(--spruce); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .9rem; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; inset: 82px 0 auto; display: none; padding: 16px 20px 24px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .site-nav.is-open { display: block; }
  .nav-list { align-items: stretch; flex-direction: column; gap: 0; }
  .nav-list a { display: block; padding: 14px 4px; }
  .nav-list .button { margin-top: 10px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 520px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: start; flex-direction: column; }
  .process, .trust-grid, .fact-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .cta-box, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 36px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 74px 0; }
  .hero { padding-top: 64px; }
  .hero-grid { gap: 42px; }
  .cards, .service-detail-grid { grid-template-columns: 1fr; }
  .card { min-height: 245px; }
  .card-icon { margin-bottom: 38px; }
  .cta-box { padding: 34px 26px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-30 { margin-top: 30px; }
.mt-36 { margin-top: 36px; }
.bg-mint { background: var(--mint-2); }
.text-ink { color: var(--ink); }
.nav-list .button { color: var(--white); }
.nav-list .button:hover { color: var(--white); }
.button { white-space: nowrap; }
