:root {
  --ink:#11212d;
  --navy:#071d2e;
  --navy-soft:#0d3046;
  --teal:#007c83;
  --teal-dark:#006269;
  --aqua:#d9f1f0;
  --coral:#ef5a3f;
  --coral-dark:#d9442b;
  --gold:#f4c568;
  --cream:#f5f1e8;
  --paper:#f7f9f8;
  --white:#fff;
  --muted:#5c6d78;
  --line:#d9e1e4;
  --shadow:0 24px 70px rgba(7,29,46,.14);
  --radius:22px;
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  overflow-x:clip;
  background:var(--white);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:16px;
  line-height:1.65;
  text-rendering:optimizeLegibility;
}
body.nav-open { overflow:hidden; }
img { display:block; max-width:100%; }
a { color:inherit; }
button { font:inherit; }
main { display:block; }
:focus-visible { outline:3px solid var(--gold); outline-offset:3px; }
.skip-link {
  position:fixed;
  top:-80px;
  left:16px;
  z-index:200;
  padding:10px 15px;
  border-radius:10px;
  background:#fff;
  color:var(--navy);
  font-weight:850;
}
.skip-link:focus { top:16px; }
.container { width:min(1180px,calc(100% - 40px)); margin-inline:auto; }
.narrow { width:min(800px,100%); }
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--teal);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.eyebrow::before { width:20px; height:3px; border-radius:99px; background:currentColor; content:""; }
.eyebrow-light { color:var(--gold); }
.top-alert {
  padding:7px 18px;
  background:var(--gold);
  color:#17212a;
  text-align:center;
  font-size:.82rem;
  font-weight:850;
}
.site-header {
  position:sticky;
  top:0;
  z-index:100;
  border-bottom:1px solid rgba(217,225,228,.9);
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(18px);
}
.header-row { position:relative; display:flex; align-items:center; gap:16px; min-height:78px; }
.brand { display:flex; align-items:center; min-width:0; gap:11px; flex:0 1 auto; color:var(--navy); text-decoration:none; }
.brand-mark {
  position:relative;
  flex:0 0 38px;
  width:38px;
  height:38px;
  border-radius:50% 50% 50% 8px;
  background:linear-gradient(145deg,var(--teal),#14aab0);
  box-shadow:inset 0 -8px 18px rgba(0,44,48,.18);
  transform:rotate(-45deg);
}
.brand-mark::after {
  position:absolute;
  width:12px;
  height:12px;
  top:8px;
  right:8px;
  border-radius:50%;
  background:rgba(255,255,255,.75);
  content:"";
}
.brand-copy { display:flex; min-width:0; flex-direction:column; line-height:1.02; }
.brand-copy strong { font-size:.98rem; letter-spacing:-.015em; white-space:nowrap; }
.brand-copy small { margin-top:5px; color:var(--teal); font-size:.58rem; font-weight:900; letter-spacing:.13em; text-transform:uppercase; white-space:nowrap; }
.primary-nav { margin-left:auto; }
.primary-list { display:flex; align-items:center; gap:2px; margin:0; padding:0; list-style:none; }
.primary-link,
.services-button {
  display:flex;
  align-items:center;
  gap:7px;
  padding:10px 10px;
  border:0;
  border-radius:9px;
  background:transparent;
  color:var(--navy);
  text-decoration:none;
  font-size:.86rem;
  font-weight:820;
  white-space:nowrap;
  cursor:pointer;
}
.primary-link:hover,
.primary-link:focus-visible,
.primary-link[aria-current="page"],
.services-button:hover,
.services-button:focus-visible,
.services-button.is-current,
.services-button[aria-expanded="true"] { background:var(--aqua); color:var(--teal-dark); }
.chevron { width:7px; height:7px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:translateY(-2px) rotate(45deg); }
.services-button[aria-expanded="true"] .chevron { transform:translateY(2px) rotate(225deg); }
.header-call {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 17px;
  border-radius:12px;
  background:var(--coral);
  box-shadow:0 10px 24px rgba(239,90,63,.25);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  white-space:nowrap;
}
.header-call:hover { background:var(--coral-dark); }
.nav-toggle {
  display:none;
  min-width:48px;
  min-height:46px;
  margin-left:auto;
  border:1px solid var(--line);
  border-radius:11px;
  background:#fff;
  color:var(--navy);
  cursor:pointer;
  font-weight:900;
}
.mega-menu {
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  left:220px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
}
.mega-head { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:16px; }
.mega-head strong { color:var(--navy); font-size:1.12rem; }
.mega-head span { color:var(--muted); font-size:.82rem; }
.mega-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; }
.mega-link { display:flex; flex-direction:column; padding:12px 14px; border-radius:12px; background:var(--paper); text-decoration:none; }
.mega-link:hover { background:var(--aqua); }
.mega-link strong { color:var(--navy); font-size:.88rem; }
.mega-link small { color:var(--muted); font-size:.72rem; }
.home-hero {
  position:relative;
  min-height:700px;
  overflow:hidden;
  background:var(--navy);
  color:#fff;
}
.home-hero-media { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.home-hero::after {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(5,24,39,.98) 0%,rgba(5,24,39,.91) 44%,rgba(5,24,39,.45) 72%,rgba(5,24,39,.14) 100%);
  content:"";
}
.home-hero .container { position:relative; z-index:1; display:grid; align-items:center; min-height:700px; }
.hero-copy { max-width:770px; padding:86px 0 92px; }
.hero-copy h1 { margin:18px 0 24px; max-width:780px; font-size:clamp(3.25rem,6.8vw,6.35rem); letter-spacing:-.058em; line-height:.92; }
.hero-copy > p { max-width:700px; margin:0; color:#d8e7ec; font-size:clamp(1.08rem,1.7vw,1.24rem); }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin:30px 0 18px; }
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:14px 21px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
}
.button-primary { background:var(--coral); color:#fff; box-shadow:0 12px 26px rgba(239,90,63,.26); }
.button-primary:hover { background:var(--coral-dark); }
.button-light { background:#fff; color:var(--navy); }
.button-light:hover { background:var(--aqua); }
.button-outline { border:1px solid var(--line); background:#fff; color:var(--navy); }
.button-outline:hover { border-color:#9ac8c9; background:var(--aqua); }
.hero-disclosure { max-width:700px; color:#adc1c9; font-size:.82rem; }
.proof-bar { position:relative; z-index:2; margin-top:-1px; background:var(--navy-soft); color:#fff; }
.proof-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.proof-item { padding:23px 24px; border-right:1px solid rgba(255,255,255,.14); }
.proof-item:last-child { border-right:0; }
.proof-item strong { display:block; color:var(--gold); font-size:.96rem; }
.proof-item span { display:block; margin-top:3px; color:#bed0d7; font-size:.8rem; }
.section { padding:88px 0; }
.section-soft { background:var(--paper); }
.section-cream { background:var(--cream); }
.section-dark { background:var(--navy); color:#fff; }
.section-heading { display:grid; grid-template-columns:1.08fr .92fr; align-items:end; gap:48px; margin-bottom:38px; }
.section-heading h2 { margin:12px 0 0; font-size:clamp(2.35rem,4.6vw,4.35rem); letter-spacing:-.046em; line-height:.98; }
.section-heading p { margin:0; color:var(--muted); font-size:1.04rem; }
.section-dark .section-heading p { color:#b9cdd5; }
.priority-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:17px; }
.priority-card {
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:310px;
  padding:26px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 8px 28px rgba(7,29,46,.05);
  text-decoration:none;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.priority-card:hover { transform:translateY(-5px); border-color:#9ccacc; box-shadow:var(--shadow); }
.priority-card::after { position:absolute; right:-24px; bottom:-34px; width:120px; height:120px; border-radius:50%; background:var(--aqua); content:""; }
.card-tag { position:relative; z-index:1; color:var(--teal); font-size:.72rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.priority-card h3 { position:relative; z-index:1; margin:14px 0 10px; color:var(--navy); font-size:1.55rem; letter-spacing:-.025em; line-height:1.1; }
.priority-card p { position:relative; z-index:1; margin:0; color:var(--muted); }
.card-link { position:relative; z-index:1; margin-top:auto; padding-top:22px; color:var(--coral); font-weight:900; }
.service-directory { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.service-directory a { padding:16px 17px; border:1px solid var(--line); border-radius:14px; background:#fff; color:var(--navy); text-decoration:none; font-size:.9rem; font-weight:820; }
.service-directory a:hover { border-color:#9ccacc; background:var(--aqua); }
.split-feature { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:64px; }
.feature-panel { position:relative; min-height:520px; overflow:hidden; border-radius:28px; background:var(--navy); }
.feature-panel img { width:100%; height:100%; min-height:520px; object-fit:cover; }
.feature-panel::after { position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(7,29,46,.85)); content:""; }
.feature-note { position:absolute; right:24px; bottom:24px; left:24px; z-index:1; padding:20px; border:1px solid rgba(255,255,255,.18); border-radius:16px; background:rgba(7,29,46,.82); color:#fff; backdrop-filter:blur(12px); }
.feature-note strong { color:var(--gold); }
.feature-copy h2 { margin:14px 0 20px; font-size:clamp(2.25rem,4.2vw,4rem); letter-spacing:-.045em; line-height:1; }
.feature-copy p { color:var(--muted); }
.feature-list { margin:24px 0 30px; padding:0; list-style:none; }
.feature-list li { position:relative; padding:12px 0 12px 31px; border-bottom:1px solid var(--line); }
.feature-list li::before { position:absolute; left:0; color:var(--teal); content:"✓"; font-weight:950; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.process-card { padding:24px; border:1px solid rgba(255,255,255,.13); border-radius:18px; background:rgba(255,255,255,.055); }
.process-number { display:grid; place-items:center; width:38px; height:38px; margin-bottom:26px; border-radius:50%; background:var(--gold); color:var(--navy); font-weight:950; }
.process-card h3 { margin:0 0 8px; color:#fff; font-size:1.16rem; }
.process-card p { margin:0; color:#b9cdd5; font-size:.9rem; }
.guide-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:17px; }
.guide-card { display:flex; flex-direction:column; min-height:270px; padding:25px; border:1px solid var(--line); border-radius:18px; background:#fff; text-decoration:none; }
.guide-card:hover { border-color:#9ccacc; box-shadow:0 16px 42px rgba(7,29,46,.09); }
.guide-card small { color:var(--teal); font-weight:850; }
.guide-card h3 { margin:13px 0 10px; color:var(--navy); font-size:1.34rem; letter-spacing:-.02em; line-height:1.13; }
.guide-card p { margin:0; color:var(--muted); }
.guide-card .card-link { margin-top:auto; }
.location-row { display:flex; flex-wrap:wrap; gap:9px; margin:24px 0 30px; }
.location-pill { padding:8px 12px; border:1px solid rgba(255,255,255,.18); border-radius:999px; background:rgba(255,255,255,.07); color:#e1eef1; font-size:.8rem; font-weight:750; }
.cta-band { padding:58px 0; background:var(--teal); color:#fff; }
.cta-row { display:flex; align-items:center; justify-content:space-between; gap:32px; }
.cta-row h2 { margin:0; font-size:clamp(2rem,3.5vw,3.3rem); letter-spacing:-.04em; line-height:1; }
.cta-row p { margin:9px 0 0; color:#d8eeee; }
.breadcrumbs { padding:14px 0; color:var(--muted); font-size:.82rem; }
.breadcrumbs ol { display:flex; flex-wrap:wrap; margin:0; padding:0; list-style:none; }
.breadcrumbs li + li::before { margin:0 8px; color:#92a0a8; content:"/"; }
.breadcrumbs a { color:var(--teal); text-decoration:none; }
.page-hero { position:relative; overflow:hidden; padding:76px 0 78px; background:linear-gradient(135deg,var(--navy) 0%,var(--navy-soft) 68%,#0c5660 140%); color:#fff; }
.page-hero::after { position:absolute; right:-140px; bottom:-260px; width:520px; height:520px; border:90px solid rgba(255,255,255,.04); border-radius:50%; content:""; }
.page-hero .container { position:relative; z-index:1; }
.page-hero h1 { max-width:980px; margin:17px 0 20px; font-size:clamp(2.7rem,5.5vw,5.3rem); letter-spacing:-.052em; line-height:.94; }
.page-hero p { max-width:820px; margin:0; color:#d2e2e7; font-size:1.1rem; }
.hero-meta { display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.hero-meta span { padding:7px 11px; border:1px solid rgba(255,255,255,.18); border-radius:999px; background:rgba(255,255,255,.07); color:#e8f2f4; font-size:.76rem; font-weight:750; }
.content-layout { display:grid; grid-template-columns:minmax(0,1fr) 340px; align-items:start; gap:56px; }
.article { min-width:0; }
.article > p:first-child { margin-top:0; color:#293e4c; font-size:1.08rem; }
.article h2 { margin:50px 0 15px; color:var(--navy); font-size:clamp(1.8rem,3.1vw,2.55rem); letter-spacing:-.035em; line-height:1.08; }
.article h2:first-child { margin-top:0; }
.article h3 { margin:27px 0 8px; color:var(--navy); }
.article p,
.article li { color:#40535f; }
.article ul { padding-left:1.25rem; }
.article li { margin:8px 0; }
.safety-note { margin-bottom:32px; padding:20px 22px; border-left:5px solid var(--coral); border-radius:0 14px 14px 0; background:#fff1ed; color:#47322e; }
.step-list { display:grid; grid-template-columns:repeat(2,1fr); gap:13px; margin:20px 0; }
.step-card { padding:20px; border:1px solid var(--line); border-radius:16px; background:var(--paper); }
.step-card b { display:inline-grid; place-items:center; width:32px; height:32px; margin-bottom:12px; border-radius:50%; background:var(--aqua); color:var(--teal-dark); }
.step-card h3 { margin:0 0 6px; font-size:1.06rem; }
.step-card p { margin:0; font-size:.9rem; }
.check-list { margin:18px 0; padding:0; list-style:none; }
.check-list li { position:relative; padding:12px 0 12px 31px; border-bottom:1px solid var(--line); }
.check-list li::before { position:absolute; left:0; color:var(--teal); content:"✓"; font-weight:950; }
.scope-box { margin:34px 0; padding:23px; border:1px solid #a8d4d5; border-radius:17px; background:var(--aqua); }
.scope-box strong { color:var(--navy); }
.sidebar { position:sticky; top:100px; padding:23px; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:0 12px 38px rgba(7,29,46,.08); }
.sidebar h2 { margin:0 0 10px; color:var(--navy); font-size:1.05rem; }
.sidebar h2:not(:first-child) { margin-top:25px; }
.sidebar-link { display:block; padding:9px 0; border-bottom:1px solid var(--line); color:var(--navy); text-decoration:none; font-size:.86rem; font-weight:800; }
.sidebar-link:hover { color:var(--coral); }
.sidebar-call { width:100%; margin-top:22px; }
.faq { margin-top:10px; border-top:1px solid var(--line); }
.faq details { padding:17px 0; border-bottom:1px solid var(--line); }
.faq summary { cursor:pointer; color:var(--navy); font-weight:900; }
.faq p { margin:10px 0 0; }
.editorial-note { margin-top:36px; padding:20px; border-radius:14px; background:var(--paper); color:var(--muted); font-size:.85rem; }
.trust-layout { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.trust-card { padding:27px; border:1px solid var(--line); border-radius:18px; background:#fff; }
.trust-card h2,
.trust-card h3 { margin-top:0; color:var(--navy); }
.contact-panel { padding:30px; border-radius:22px; background:var(--navy); color:#fff; }
.contact-panel p { color:#c7d9df; }
.site-footer { padding:66px 0 28px; background:#051621; color:#c7d6db; }
.footer-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:38px; }
.footer-title { margin:0 0 13px; color:#fff; font-size:1rem; }
.footer-brand p { max-width:320px; color:#9fb4bc; font-size:.88rem; }
.site-footer a { display:block; padding:4px 0; color:#c7d6db; text-decoration:none; font-size:.85rem; }
.site-footer .footer-phone { color:var(--gold); font-size:1.06rem; font-weight:900; }
.site-footer a:hover { color:var(--gold); }
.footer-disclosure { margin-top:38px; padding-top:24px; border-top:1px solid rgba(255,255,255,.13); color:#8ea4ad; font-size:.75rem; }
.footer-disclosure p { margin:7px 0; }
.mobile-call { display:none; }

@media (max-width:1080px) {
  .nav-toggle { display:inline-grid; place-items:center; }
  .header-row > .header-call { display:none; }
  .primary-nav {
    position:absolute;
    top:calc(100% + 8px);
    right:0;
    left:0;
    display:none;
    max-height:calc(100vh - 100px);
    max-height:calc(100dvh - 88px);
    overflow-y:auto;
    overscroll-behavior:contain;
    padding:12px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
    box-shadow:var(--shadow);
  }
  .nav-open .primary-nav { display:block; }
  .primary-list { align-items:stretch; flex-direction:column; }
  .primary-link,
  .services-button { width:100%; justify-content:space-between; padding:13px; font-size:.96rem; }
  .mega-menu { position:static; margin-top:8px; padding:13px; border-radius:13px; box-shadow:none; }
  .mega-head { display:none; }
  .mega-grid { grid-template-columns:repeat(2,1fr); }
  .section-heading,
  .split-feature,
  .content-layout { grid-template-columns:1fr; }
  .priority-grid,
  .guide-grid { grid-template-columns:repeat(2,1fr); }
  .service-directory,
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .sidebar { position:static; }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:680px) {
  .container { width:min(calc(100% - 24px),1180px); }
  .top-alert { padding:6px 12px; font-size:.68rem; line-height:1.35; }
  .header-row { min-height:64px; gap:8px; }
  .brand { gap:8px; }
  .brand-copy strong { overflow:hidden; font-size:.84rem; text-overflow:ellipsis; }
  .brand-copy small { display:none; }
  .brand-mark { width:30px; height:30px; flex-basis:30px; }
  .brand-mark::after { top:6px; right:6px; width:10px; height:10px; }
  .nav-toggle { min-width:44px; min-height:44px; padding:0 8px; }
  .home-hero,
  .home-hero .container { min-height:560px; }
  .home-hero::after { background:linear-gradient(90deg,rgba(5,24,39,.97) 0%,rgba(5,24,39,.86) 68%,rgba(5,24,39,.54) 100%); }
  .hero-copy { padding:48px 0 54px; }
  .hero-copy h1 { margin:14px 0 18px; font-size:clamp(2.4rem,12vw,3rem); line-height:.96; }
  .hero-copy > p { font-size:1rem; line-height:1.55; }
  .hero-actions { gap:10px; margin:24px 0 14px; }
  .hero-disclosure { font-size:.7rem; line-height:1.5; }
  .hero-actions { display:grid; }
  .button { width:100%; }
  .proof-grid,
  .priority-grid,
  .guide-grid,
  .service-directory,
  .process-grid,
  .step-list,
  .trust-layout,
  .footer-grid,
  .mega-grid { grid-template-columns:1fr; }
  .proof-item { border-right:0; border-bottom:1px solid rgba(255,255,255,.14); }
  .section { padding:54px 0; }
  .section-heading { gap:18px; }
  .feature-panel,
  .feature-panel img { min-height:380px; }
  .page-hero { padding:48px 0 52px; }
  .page-hero h1 { margin:14px 0 18px; font-size:clamp(2.25rem,11.5vw,2.75rem); line-height:.98; }
  .page-hero p { font-size:1rem; }
  .hero-meta { gap:7px; margin-top:20px; }
  .hero-meta span { padding:7px 10px; font-size:.72rem; }
  .cta-row { align-items:flex-start; flex-direction:column; }
  .mega-menu { max-height:52vh; overflow-y:auto; overscroll-behavior:contain; }
  .mobile-call { position:fixed; right:10px; bottom:max(10px,env(safe-area-inset-bottom)); left:10px; z-index:120; display:block; opacity:0; pointer-events:none; transform:translateY(calc(100% + 24px)); transition:opacity .2s ease,transform .2s ease; }
  .mobile-call.is-visible { opacity:1; pointer-events:auto; transform:translateY(0); }
  .mobile-call .header-call { width:100%; min-height:56px; }
  .site-footer { padding-bottom:44px; }
}

@media (max-width:360px) {
  .container { width:calc(100% - 20px); }
  .brand-copy strong { font-size:.78rem; }
  .brand-mark { width:28px; height:28px; flex-basis:28px; }
  .hero-copy h1 { font-size:2.3rem; }
  .home-hero,
  .home-hero .container { min-height:530px; }
  .button { min-height:50px; padding:12px 16px; }
}

@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  .priority-card { transition:none; }
}
