:root {
  --ink: #241b45;
  --ink-elevated: #352965;
  --brand: #159447;
  --brand-bright: #45b960;
  --signal: #f0cf35;
  --canvas: #f7f8f4;
  --surface: #ffffff;
  --line: #e8eae4;
  --muted: #5a5b62;
  --on-dark: #dad6e8;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Segoe UI", "Aptos", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.shell {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand { flex: 0 0 184px; }
.brand img { width: 184px; height: 58px; object-fit: contain; }
.main-nav { display: flex; gap: 27px; margin-left: auto; }
.main-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 650;
}
.main-nav a:hover { color: var(--brand); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.1;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.button-primary { color: #fff; background: #117d3d; }
.button-primary:hover { background: #0b6732; }
.button-secondary { color: var(--ink); border-color: var(--ink); }
.button-secondary:hover { color: #fff; background: var(--ink); }
.button:focus-visible, .main-nav a:focus-visible, .brand:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}
.header-cta { min-height: 46px; padding-inline: 20px; font-size: 0.92rem; }
.header-cta-short { display: none; }

.hero { padding: 74px 0 0; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  column-gap: 70px;
  row-gap: 0;
  align-items: center;
}
.hero-copy {
  position: relative;
  padding-left: 34px;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 7px auto 8px 0;
  width: 6px;
  background: var(--brand);
}
.section-label {
  margin: 0 0 22px;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 760;
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 6.15rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}
.hero-lede {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.58;
}
.hero-actions { display: flex; gap: 14px; margin-top: 35px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px 24px 0 24px;
  background: var(--ink);
}
.hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 63%, rgba(36, 27, 69, 0.84));
  pointer-events: none;
}
.hero-media img { width: 100%; height: 520px; object-fit: cover; object-position: 48% center; }
.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 650;
}

.proof-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-strip p {
  margin: 0;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}
.proof-strip p:first-child { padding-left: 0; }
.proof-strip p:last-child { border-right: 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { font-size: 1.04rem; }
.proof-strip span { margin-top: 2px; color: var(--muted); font-size: 0.9rem; }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 20px; height: 2px; background: var(--ink); }
.mobile-menu nav {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(280px, calc(100vw - 40px));
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 35px rgba(36, 27, 69, 0.15);
}
.mobile-menu nav a { display: block; padding: 11px 10px; text-decoration: none; font-weight: 700; }

.section-intro { max-width: 950px; margin-left: max(40px, calc((100vw - var(--container)) / 2)); margin-right: auto; }
.section-intro h2,
.process-heading h2,
.services-heading h2,
.trust-layout h2,
.contact-heading h2,
.simp-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.15vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
  text-wrap: balance;
}
.section-intro > p:last-child,
.process-heading > p,
.services-heading > p,
.trust-layout > div > p:last-child,
.contact-heading > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.context-section { padding: 116px 0; }
.context-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; margin-top: 52px; }
.context-panel { position: relative; min-height: 620px; overflow: hidden; }
.context-home { display: grid; grid-template-columns: 1.08fr 0.92fr; background: #fff; border-radius: 24px 0 0 24px; }
.context-copy { padding: 50px 42px; }
.context-kicker { margin: 0 0 20px; font-size: 0.9rem; font-weight: 760; }
.context-panel h3 { margin: 0; font-size: clamp(2rem, 3.1vw, 3.4rem); line-height: 1.05; letter-spacing: -0.045em; }
.context-panel > p:not(.context-kicker), .context-copy > p:not(.context-kicker) { margin-top: 24px; font-size: 1.04rem; }
.context-photo { position: relative; margin: 0; min-width: 0; }
.context-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.context-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 32%; background: linear-gradient(transparent, rgba(36,27,69,.72)); }
.context-photo figcaption { position: absolute; z-index: 1; right: 16px; bottom: 14px; left: 16px; color: #fff; font-size: 0.75rem; font-weight: 650; }
.context-business { padding: 50px 48px; color: #fff; background: var(--ink); border-radius: 0 24px 24px 0; }
.context-business > p:not(.context-kicker) { max-width: 540px; color: var(--on-dark); }
.check-list { margin: 30px 0 36px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 12px 0 12px 30px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.check-list-dark li { border-color: rgba(255,255,255,.17); }
.check-list-dark li::before { color: var(--brand-bright); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; font-weight: 800; border-bottom: 2px solid currentColor; }
.text-link span { font-size: 1.2em; }
.text-link-light { color: #fff; }
.business-mark { position: absolute; right: 22px; bottom: 6px; display: grid; grid-template-columns: repeat(4, auto); color: rgba(255,255,255,.065); font-size: clamp(4rem, 8.2vw, 8rem); font-weight: 900; letter-spacing: -0.08em; line-height: 1; pointer-events: none; }

.process-section { padding: 112px 0; background: #fff; }
.process-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 90px; align-items: start; }
.process-heading { position: sticky; top: 120px; }
.process-heading .button { margin-top: 24px; }
.process-track { position: relative; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-track::before { content: ""; position: absolute; left: 52px; top: 54px; bottom: 54px; width: 2px; background: var(--line); }
.process-track li { position: relative; display: grid; grid-template-columns: 104px 1fr; gap: 30px; padding: 0 0 58px; }
.process-track li:last-child { padding-bottom: 0; }
.step-number { position: relative; z-index: 1; width: 104px; height: 104px; display: grid; place-items: center; border: 2px solid var(--brand); border-radius: 50%; color: var(--brand); background: #fff; font-size: 1.25rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.process-track h3 { margin: 8px 0 10px; font-size: 1.5rem; line-height: 1.2; }
.process-track p { margin: 0; color: var(--muted); font-size: 1.02rem; }

.services-section { padding: 116px 0; }
.services-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 96px; }
.services-heading .button { margin-top: 26px; }
.service-index { border-top: 1px solid #cfd3ca; }
.service-index article { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid #cfd3ca; }
.service-index span { font-size: 1.08rem; font-weight: 800; }
.service-index p { margin: 0; color: var(--muted); }

.simp-section { padding: 104px 0 94px; color: #fff; background: var(--ink); }
.simp-topline { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.2); }
.simp-topline p, .simp-topline span { margin: 0; font-size: 0.9rem; font-weight: 760; }
.simp-topline span { color: var(--brand-bright); }
.simp-grid { display: grid; grid-template-columns: 1.05fr 0.72fr 0.9fr; gap: 46px; margin-top: 62px; align-items: start; }
.simp-copy h2 { font-size: clamp(2.7rem, 4.45vw, 4.9rem); }
.simp-copy > p { max-width: 670px; margin: 28px 0 0; color: var(--on-dark); font-size: 1.06rem; }
.button-on-dark { margin-top: 32px; color: var(--ink); background: var(--brand-bright); }
.button-on-dark:hover { background: #66ca7d; }
.simp-evidence { padding-left: 28px; border-left: 3px solid var(--brand-bright); }
.evidence-title { margin: 0 0 20px; color: var(--brand-bright); font-weight: 800; }
.simp-evidence ul { margin: 0; padding: 0; list-style: none; }
.simp-evidence li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.16); color: var(--on-dark); }
.simp-figure { margin: 0; padding: 14px; color: var(--ink); background: #fff; border-radius: 18px; }
.simp-figure img { width: 100%; aspect-ratio: 1.25; object-fit: cover; }
.simp-figure figcaption { padding: 10px 4px 0; color: var(--muted); font-size: 0.78rem; }
.sector-line { margin: 64px 0 0; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.2); color: #fff; font-size: clamp(1.1rem, 1.8vw, 1.55rem); font-weight: 750; word-spacing: 0.3em; }
.sector-line span { color: var(--brand-bright); }

.trust-section { padding: 116px 0 90px; background: #fff; }
.trust-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 90px; align-items: start; }
.trust-facts { margin: 0; }
.trust-facts > div { display: grid; grid-template-columns: 0.62fr 1.38fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.trust-facts dt { color: var(--muted); font-size: 0.88rem; font-weight: 760; }
.trust-facts dd { margin: 0; font-size: clamp(1.35rem, 2vw, 2.1rem); font-weight: 850; letter-spacing: -0.03em; }
.trust-facts p { grid-column: 2; margin: -10px 0 0; color: var(--muted); }
.regional-line { display: grid; grid-template-columns: 0.52fr 1.55fr auto; gap: 24px; margin-top: 62px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); align-items: center; }
.regional-line p { margin: 0; }
.regional-line p:first-child { color: var(--muted); font-size: 0.88rem; font-weight: 760; }
.regional-line a { color: var(--brand); font-weight: 800; text-decoration: none; }
.coverage-note { padding-top: 16px; color: var(--muted); font-size: 0.86rem; }

.contact-section { padding: 108px 0; color: #fff; background: #117d3d; }
.contact-grid { display: grid; grid-template-columns: 1.03fr 1fr; gap: 72px 96px; align-items: start; }
.contact-label { margin: 0 0 22px; color: #c9f4d2; font-weight: 760; }
.contact-heading h2 { font-size: clamp(3rem, 5vw, 5.6rem); }
.contact-heading > p:last-child { color: #d8f2df; }
.contact-questions { margin: 0; padding: 0; list-style: none; }
.contact-questions li { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.26); }
.contact-questions li:first-child { border-top: 1px solid rgba(255,255,255,.26); }
.contact-questions span { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-weight: 800; }
.contact-questions p { margin: 0; color: #d8f2df; }
.contact-questions strong { display: block; color: #fff; font-size: 1.1rem; }
.contact-action { grid-column: 1 / -1; display: flex; align-items: center; gap: 24px 34px; flex-wrap: wrap; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.26); }
.button-contact { min-height: 58px; color: var(--ink); background: var(--signal); }
.button-contact:hover { background: #ffe36a; }
.contact-action p { margin: 0; color: #d8f2df; }
.contact-action a:not(.button) { color: #fff; font-weight: 700; }

.site-footer { padding: 72px 0 28px; color: #fff; background: #191430; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 0.8fr 0.8fr; gap: 80px; }
.footer-brand img { width: 164px; height: 52px; object-fit: contain; background: #fff; border-radius: 5px; }
.footer-brand p { max-width: 420px; color: var(--on-dark); }
.footer-grid nav { display: grid; align-content: start; gap: 10px; }
.footer-grid nav a, .footer-contact a { color: #fff; text-decoration: none; }
.footer-grid nav a:hover, .footer-contact a:hover { color: var(--brand-bright); }
.footer-contact p { margin: 0 0 11px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 28px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: #aaa5bb; font-size: 0.82rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 1060px) {
  .main-nav { display: none; }
  .mobile-menu { display: block; margin-left: auto; }
  .header-cta { margin-left: auto; }
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); column-gap: 40px; row-gap: 0; }
  .hero h1 { font-size: clamp(3.2rem, 6.5vw, 5rem); }
  .context-grid { grid-template-columns: 1fr; }
  .context-home { border-radius: 24px 24px 0 0; }
  .context-business { border-radius: 0 0 24px 24px; }
  .process-layout, .services-layout, .trust-layout { gap: 55px; }
  .simp-grid { grid-template-columns: 1.1fr .9fr; }
  .simp-figure { grid-column: 2; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 40px), var(--container)); }
  .header-inner { min-height: 70px; gap: 14px; }
  .brand { flex-basis: 132px; }
  .brand img { width: 132px; height: 46px; }
  .mobile-menu { order: 3; margin-left: 0; }
  .header-cta { margin-left: auto; min-height: 44px; padding-inline: 16px; font-size: 0.82rem; }
  .header-cta-long { display: none; }
  .header-cta-short { display: inline; }
  .hero { padding-top: 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { padding-left: 22px; }
  .hero-copy::before { width: 5px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 3.55rem); line-height: 0.98; letter-spacing: -0.058em; }
  .hero-lede { margin-top: 24px; font-size: 1.06rem; }
  .hero-actions { display: grid; margin-top: 28px; }
  .button { width: 100%; }
  .hero-media { order: 3; min-height: 330px; border-radius: 18px 18px 0 18px; }
  .hero-media img { height: 330px; object-position: 48% center; }
  .proof-strip { order: 2; grid-template-columns: 1fr; margin-top: 0; }
  .proof-strip p, .proof-strip p:first-child { padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip p:last-child { border-bottom: 0; }
  .context-section, .process-section, .services-section, .trust-section { padding: 76px 0; }
  .section-intro { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
  .section-intro h2, .process-heading h2, .services-heading h2, .trust-layout h2, .contact-heading h2 { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .context-grid { width: 100%; }
  .context-panel { min-height: 0; border-radius: 0; }
  .context-home { grid-template-columns: 1fr; }
  .context-copy, .context-business { padding: 42px 20px; }
  .context-photo { min-height: 390px; }
  .context-photo img { height: 390px; object-position: 48% 42%; }
  .business-mark { right: 12px; bottom: 18px; font-size: 4.6rem; }
  .process-layout, .services-layout, .trust-layout, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .process-heading { position: static; }
  .process-track::before { left: 31px; top: 38px; bottom: 38px; }
  .process-track li { grid-template-columns: 64px 1fr; gap: 20px; padding-bottom: 38px; }
  .step-number { width: 64px; height: 64px; font-size: 0.96rem; }
  .process-track h3 { margin-top: 0; }
  .service-index article { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .simp-section { padding: 72px 0 66px; }
  .simp-topline { display: block; }
  .simp-topline span { display: block; margin-top: 6px; }
  .simp-grid { grid-template-columns: 1fr; gap: 42px; margin-top: 44px; }
  .simp-copy h2 { font-size: clamp(2.5rem, 11vw, 3.3rem); }
  .simp-evidence { padding-left: 20px; }
  .simp-figure { grid-column: auto; }
  .sector-line { line-height: 1.8; word-spacing: 0.1em; }
  .trust-facts > div { grid-template-columns: 1fr; gap: 5px; }
  .trust-facts p { grid-column: 1; margin: 0; }
  .regional-line { grid-template-columns: 1fr; gap: 10px; }
  .contact-section { padding: 76px 0; }
  .contact-grid { gap: 44px; }
  .contact-action { display: grid; gap: 16px; }
  .button-contact { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { display: grid; gap: 8px; }
}

@media (max-width: 420px) {
  .brand { flex-basis: 112px; }
  .brand img { width: 112px; }
  .header-inner { gap: 9px; }
  .mobile-menu summary { width: 42px; height: 42px; }
  .header-cta { min-height: 42px; padding-inline: 13px; }
}

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