:root {
  --navy: #0d2635;
  --navy-soft: #183847;
  --ink: #172c36;
  --muted: #52656d;
  --paper: #f7f8f6;
  --white: #ffffff;
  --line: #d6dedd;
  --teal: #087f78;
  --teal-dark: #05655f;
  --mint: #dff1eb;
  --amber: #f1b84b;
  --amber-soft: #fff3d8;
  --blue-soft: #e6f1f6;
  --danger: #b63b32;
  --shadow: 0 14px 36px rgba(13, 38, 53, .12);
  --radius: 8px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
button, input, select, textarea { font: inherit; }
button, .button { min-height: 46px; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; }
.skip-link:focus { left: 8px; background: var(--white); padding: 10px 14px; }
.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 70px; display: flex; align-items: center; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 216px; height: auto; }
.nav-toggle { display: none; margin-left: auto; border: 1px solid var(--line); background: var(--white); color: var(--ink); padding: 8px 12px; border-radius: 6px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.main-nav a { color: var(--ink); text-decoration: none; padding: 10px 11px; font-size: 15px; font-weight: 650; border-bottom: 3px solid transparent; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--teal-dark); border-color: var(--teal); }
.main-nav .nav-cta { margin-left: 8px; color: var(--white); background: var(--teal); border: 1px solid var(--teal); border-radius: 6px; padding-inline: 15px; }
.main-nav .nav-cta:hover, .main-nav .nav-cta[aria-current="page"] { color: var(--white); background: var(--teal-dark); border-color: var(--teal-dark); }
.availability { background: var(--navy); color: var(--white); }
.availability .container { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; font-size: 15px; }
.availability strong { color: #ffd474; }
.hero { min-height: clamp(480px, calc(100vh - 108px), 570px); position: relative; display: grid; align-items: center; background: var(--navy) url('../images/hero-service.jpg') center 44% / cover no-repeat; color: var(--white); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,30,43,.94) 0%, rgba(8,30,43,.82) 44%, rgba(8,30,43,.12) 77%); }
.hero-content { position: relative; padding-block: 48px 56px; max-width: 650px; }
.eyebrow { margin: 0 0 10px; color: var(--teal); text-transform: uppercase; font-weight: 800; font-size: 14px; }
.hero .eyebrow { color: #70ded0; }
h1, h2, h3 { line-height: 1.18; margin-top: 0; letter-spacing: 0; }
h1 { margin-bottom: 22px; font-size: clamp(38px, 5vw, 64px); }
h2 { margin-bottom: 20px; font-size: clamp(28px, 3vw, 42px); }
h3 { margin-bottom: 9px; font-size: 22px; }
.hero-lead { max-width: 610px; font-size: 21px; line-height: 1.5; }
.hero-services { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 25px 0 22px; }
.hero-services a { color: #ffffff; font-weight: 750; text-decoration: none; border-bottom: 2px solid #70ded0; padding-bottom: 3px; }
.hero-services a:hover { color: #9af2e7; border-color: var(--amber); }
.hero-note { font-size: 16px; color: #d8e4e7; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; border-radius: 6px; border: 2px solid transparent; background: var(--teal); color: var(--white); font-weight: 750; text-decoration: none; cursor: pointer; }
.button:hover { background: var(--teal-dark); text-decoration: none; }
.button.secondary { background: transparent; border-color: currentColor; color: inherit; }
.button.secondary:hover { background: rgba(255,255,255,.1); }
.button.light { background: var(--white); color: var(--navy); }
.button.small { min-height: 40px; padding: 7px 13px; font-size: 15px; }
.section { padding-block: 58px; }
.section.compact { padding-block: 44px; }
.section.white { background: var(--white); }
.section.navy { background: var(--navy); color: var(--white); }
.section.tint { background: var(--blue-soft); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p { color: var(--muted); font-size: 19px; }
.section.navy .section-head p { color: #d8e4e7; }
.service-grid, .audience-grid, .proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-item, .audience-item, .proof-item { border-top: 4px solid var(--teal); background: var(--white); padding: 25px; box-shadow: 0 4px 16px rgba(13,38,53,.07); }
.service-item { display: flex; flex-direction: column; }
.service-item p, .audience-item p, .proof-item p { margin-bottom: 17px; color: var(--muted); }
.service-item:nth-child(2) { border-top-color: var(--amber); }
.service-item:nth-child(3) { border-top-color: #4c91c8; }
.service-index { display: block; margin-bottom: 10px; color: var(--teal-dark); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.service-item a { margin-top: auto; font-weight: 750; }
.proof-item { box-shadow: none; border: 1px solid var(--line); border-top-width: 4px; }
.proof-item strong { display: block; font-size: 22px; }
.feature-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); align-items: center; gap: 52px; }
.feature-split.reverse .feature-media { order: -1; }
.feature-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 22px 0; }
.check-list li { position: relative; padding-left: 30px; margin: 10px 0; }
.check-list li::before { content: ""; position: absolute; left: 2px; top: .58em; width: 13px; height: 7px; border-left: 3px solid var(--teal); border-bottom: 3px solid var(--teal); transform: rotate(-45deg); }
.page-hero { background: var(--navy); color: var(--white); padding-block: 36px 32px; }
.page-hero .container { max-width: var(--content); }
.page-hero h1 { font-size: clamp(36px, 4vw, 50px); margin-bottom: 10px; }
.page-hero p { max-width: 780px; margin: 0; font-size: 19px; color: #dce7ea; }
.breadcrumb { color: #a9c0c8; font-size: 14px; margin-bottom: 10px; }
.breadcrumb a { color: #d9eeee; }
.two-col { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: start; }
.aside-panel { border-left: 5px solid var(--amber); background: var(--amber-soft); padding: 24px; }
.aside-panel h2 { font-size: 24px; }
.region-list { columns: 2; padding-left: 22px; }
.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-item { counter-increment: step; border-top: 1px solid var(--line); padding-top: 18px; }
.process-item::before { content: counter(step, decimal-leading-zero); display: block; color: var(--teal); font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.cta-band { background: var(--mint); border-block: 1px solid #bedcd3; padding-block: 34px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-inner h2 { font-size: 28px; margin-bottom: 6px; }
.cta-inner p { margin: 0; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 4px; }
.faq summary { cursor: pointer; font-weight: 750; font-size: 19px; }
.faq details p { max-width: 820px; color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 44px; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label, .field legend { font-weight: 700; }
.required { color: var(--danger); }
input, select, textarea { width: 100%; border: 1px solid #9eb0b5; background: var(--white); color: var(--ink); border-radius: 5px; padding: 11px 12px; }
textarea { min-height: 145px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(8,127,120,.22); border-color: var(--teal); }
.choice-row { display: flex; flex-wrap: wrap; gap: 14px 24px; }
.choice { display: inline-flex; align-items: flex-start; gap: 9px; }
.choice input { width: 20px; height: 20px; margin-top: 3px; }
.dynamic-fields { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 20px; background: var(--blue-soft); border-left: 4px solid var(--teal); }
.form-note, .privacy-note { font-size: 14px; color: var(--muted); }
.honeypot { position: absolute !important; left: -10000px !important; }
.form-status { display: none; grid-column: 1 / -1; padding: 16px; border-left: 4px solid var(--teal); background: var(--mint); }
.form-status.error { border-color: var(--danger); background: #fbe8e5; }
.form-status.visible { display: block; }
.contact-box { background: var(--navy); color: var(--white); padding: 28px; border-radius: var(--radius); }
.contact-box h2 { font-size: 27px; }
.contact-box a { color: #7ee5da; }
.contact-box .meta { color: #d8e4e7; font-size: 15px; }
.legal-placeholder { border-left: 5px solid var(--amber); background: var(--amber-soft); padding: 18px; font-weight: 700; }
.site-footer { background: #081c27; color: #d6e2e5; padding-block: 48px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; }
.footer-brand img { width: 210px; background: var(--white); padding: 6px; border-radius: 5px; margin-bottom: 16px; }
.footer-links { display: grid; gap: 7px; }
.footer-links a { color: #d6e2e5; }
.footer-bottom { border-top: 1px solid #29424e; margin-top: 34px; padding-top: 20px; font-size: 14px; color: #9fb3ba; }

@media (max-width: 980px) {
  .header-inner { flex-wrap: wrap; min-height: 70px; padding-block: 10px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav { display: none; width: 100%; margin: 0; flex-direction: column; align-items: stretch; padding-bottom: 10px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 9px 4px; border-bottom-width: 1px; }
  .main-nav .nav-cta { margin: 7px 0 0; text-align: center; padding: 10px; }
  .service-grid, .audience-grid, .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .feature-split, .two-col, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .feature-split.reverse .feature-media { order: 0; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--content)); }
  .brand img { width: 178px; }
  .availability .container { padding-block: 8px; display: block; }
  .hero { min-height: 600px; background-position: 63% center; }
  .hero::before { background: linear-gradient(90deg, rgba(8,30,43,.96), rgba(8,30,43,.76)); }
  .hero-content { padding-block: 64px 74px; }
  .hero-lead { font-size: 19px; }
  .hero-services { display: grid; grid-template-columns: 1fr; gap: 8px; margin-block: 20px 18px; }
  .hero-services a { width: max-content; max-width: 100%; font-size: 16px; }
  .actions, .actions .button { width: 100%; }
  .section { padding-block: 54px; }
  .service-grid, .audience-grid, .proof-grid, .process, .form-grid, .dynamic-fields, .footer-grid { grid-template-columns: 1fr; }
  .field.full, .dynamic-fields { grid-column: auto; }
  .cta-inner { align-items: stretch; flex-direction: column; }
  .cta-inner .button { width: 100%; }
  .region-list { columns: 1; }
  .page-hero { padding-block: 48px 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
