  :root {
    --navy:#1F3A6A; --navy-700:#16294C; --navy-900:#0E1B33; --navy-50:#EEF2F9;
    --accent:#3FB8C8; --accent-600:#2E9CAB; --accent-50:#E8F7F9;
    --bg:#fff; --bg-soft:#F5F7FA; --bg-sand:#F3F1EC;
    --line:#E6EAF0; --line-strong:#D2D8E2;
    --ink:#1A1F2B; --ink-2:#3F4756; --ink-3:#6B7480; --ink-4:#98A0AD;
    --radius:14px; --radius-lg:22px;
    --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 1px rgba(15,23,42,.03);
    --shadow-md: 0 6px 24px -8px rgba(15,23,42,.18), 0 2px 6px rgba(15,23,42,.05);
    --container:1180px;
    --pad: clamp(20px, 5vw, 56px);
  }
  html[data-accent="turquoise"] { --accent:#3FB8C8; --accent-600:#2E9CAB; --accent-50:#E8F7F9; }
  html[data-accent="orange"]    { --accent:#FF7A3D; --accent-600:#E5632A; --accent-50:#FFEFE6; }
  html[data-accent="green"]     { --accent:#1F8A5B; --accent-600:#176E48; --accent-50:#E6F3EC; }

  *,*::before,*::after { box-sizing: border-box; }
  html, body { margin:0; padding:0; }
  body {
    font-family:'Manrope',-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
    color:var(--ink); background:var(--bg);
    font-size:17px; line-height:1.55;
    -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
    overflow-x:hidden;
  }
  img, svg { max-width:100%; display:block; }
  a { color:inherit; text-decoration:none; }
  button { font:inherit; cursor:pointer; }
  h1,h2,h3,h4 { margin:0; letter-spacing:-0.02em; text-wrap:balance; }
  p { margin:0; text-wrap:pretty; }

  .container { width:100%; max-width:var(--container); margin:0 auto; padding-left:var(--pad); padding-right:var(--pad); }
  .section { padding: clamp(56px, 9vw, 96px) 0; }
  .section--soft { background:var(--bg-soft); }
  .section--navy { background:var(--navy); color:#fff; }
  .section--navy h2 { color:#fff; }

  .eyebrow {
    display:inline-flex; align-items:center; gap:8px;
    font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
    color:var(--accent-600);
  }
  html[data-accent="turquoise"] .eyebrow { color:#1F6E78; }
  .eyebrow::before { display: none; }

  /* ─── BREADCRUMB ─── */
  .crumbs {
    padding-top:18px;
    font-size:13px;
    color:var(--ink-3);
    display:flex; gap:6px; flex-wrap:wrap;
  }
  .crumbs a:hover { color:var(--ink); }
  .crumbs span { color:var(--ink-4); }
  .crumbs strong { color:var(--ink-2); font-weight:600; }

  /* ─── HERO ─── */
  .hero { padding: 28px 0 clamp(40px, 6vw, 72px); }
  .hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 800; line-height: 1.05;
    color: var(--navy);
    margin: 16px 0 18px;
  }
  .hero p {
    font-size: 18px; color:var(--ink-2); max-width: 60ch;
  }

  /* ─── SERVICE CARDS ─── */
  .services-grid {
    display: grid; grid-template-columns: 1fr; gap: 18px;
    margin-top: 36px;
  }
  @media (min-width: 720px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
  .svc {
    background:#fff;
    border:1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color .15s, transform .15s, box-shadow .15s;
  }
  .svc:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .svc__icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--accent-50); color: var(--navy);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .svc__icon svg { width: 28px; height: 28px; }
  .svc h3 { font-size: 19px; color: var(--ink); }
  .svc p  { color: var(--ink-2); font-size: 15px; }
  .svc ul {
    margin: 0; padding: 0; list-style: none;
    display: flex; flex-direction: column; gap: 8px;
    color: var(--ink-2); font-size: 14.5px;
  }
  .svc ul li {
    position: relative; padding-left: 22px;
  }
  .svc ul li::before {
    content: ""; position: absolute; left: 0; top: 9px;
    width: 14px; height: 2px; background: var(--accent); border-radius: 2px;
  }

  /* ─── COVERAGE ─── */
  .coverage {
    display: grid; grid-template-columns: 1fr; gap: 22px;
    margin-top: 36px;
  }
  @media (min-width: 800px) { .coverage { grid-template-columns: repeat(3, 1fr); } }
  .coverage__card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
  }
  .coverage__card h4 { font-size: 16px; color: var(--navy); margin-bottom: 6px; }
  .coverage__card p  { color: var(--ink-2); font-size: 15px; }
  .coverage__card .city { font-weight: 700; color: var(--ink); }

  /* ─── BUTTONS ─── */
  .btn {
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    height:50px; padding:0 22px;
    border-radius:999px;
    font-weight:600; font-size:15.5px;
    border:1px solid transparent;
    transition: background .15s, border-color .15s, color .15s, transform .15s;
  }
  .btn--primary { background: var(--accent); color: var(--navy-900); }
  .btn--primary:hover { background: var(--accent-600); color:#fff; }
  .btn--ghost  { background:#fff; color: var(--ink); border-color: var(--line-strong); }
  .btn--ghost:hover { background: var(--bg-soft); }
  .btn--lg { height: 54px; padding: 0 28px; font-size: 16px; }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 56px);
    display: grid; gap: 22px;
    grid-template-columns: 1fr;
    align-items: center;
    position: relative; overflow: hidden;
    margin-top: 36px;
  }
  @media (min-width: 800px) { .cta-banner { grid-template-columns: 1.2fr auto; } }
  .cta-banner h2 { font-size: clamp(22px, 3vw, 32px); line-height: 1.1; color:#fff; }
  .cta-banner p { color: rgba(255,255,255,.78); margin-top: 10px; max-width: 50ch; }
  .cta-banner__wave {
    position: absolute; right: -120px; top: -180px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
    opacity: .18;
    pointer-events: none;
  }
  .cta-banner .btns { display: flex; gap: 10px; flex-wrap: wrap; z-index: 1; }
  .btn--ghost-light {
    background: transparent; color:#fff; border-color: rgba(255,255,255,.25);
  }
  .btn--ghost-light:hover { background: rgba(255,255,255,.08); }

  /* ─── FOOTER ─── */
  .footer { background: var(--navy-900); color: rgba(255,255,255,.78); padding: 56px 0 28px; }
  .footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin: 0 0 14px; }
  .footer__grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
  @media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
  .footer a { color: rgba(255,255,255,.78); transition: color .15s; display: inline-block; padding: 4px 0; }
  .footer a:hover { color: #fff; }
  .footer__brand p { margin-top: 16px; font-size: 14.5px; max-width: 36ch; }
  .footer__bottom {
    margin-top: 48px; padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: space-between;
    font-size: 13px; color: rgba(255,255,255,.5);
  }
  .footer__socials { display: flex; gap: 8px; margin-top: 14px; }
  .footer__socials a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,.06); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .footer__socials a:hover { background: rgba(255,255,255,.12); }
  .footer__socials svg { width: 18px; height: 18px; }

  /* ─── Mobile centering ─── */
  @media (max-width: 959px) {
    .eyebrow { display: flex; justify-content: center; }
    .hero h1, .hero p { text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .h2, .lede { text-align: center; }
    .section h2, .section h3 { text-align: center; }
    .svc { text-align: center; align-items: center; }
    .svc ul { text-align: left; }
    .coverage__card { text-align: center; }
    .cta-banner { text-align: center; }
    .cta-banner p { margin-left: auto; margin-right: auto; }
    .cta-banner .btns { justify-content: center; }
    .footer__grid > div { text-align: center; }
    .footer__brand .wordmark__img { margin-left: auto; margin-right: auto; }
    .footer__brand p { margin-left: auto; margin-right: auto; }
    .footer__socials { justify-content: center; }
    .footer__bottom { justify-content: center; text-align: center; }
  }
