:root {
  --navy-950: #0b2538;
  --navy-900: #12334b;
  --navy-800: #174761;
  --blue-700: #2e6787;
  --blue-600: #417e9e;
  --blue-200: #cfe2ec;
  --blue-100: #e9f3f7;
  --blue-050: #f4f9fb;
  --red-700: #b70f2b;
  --red-600: #d51332;
  --red-100: #fde8ed;
  --ink: #17232d;
  --muted: #526371;
  --line: #d9e2e8;
  --surface: #ffffff;
  --surface-alt: #f5f7f8;
  --warm: #f7f3ed;
  --success: #0c6b4d;
  --shadow-sm: 0 8px 24px rgba(11, 37, 56, .08);
  --shadow-md: 0 18px 50px rgba(11, 37, 56, .13);
  --radius-sm: .65rem;
  --radius-md: 1.1rem;
  --radius-lg: 1.65rem;
  --container: 76rem;
  --header-offset: 7rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
picture { display: block; max-width: 100%; }
a { color: var(--blue-700); text-underline-offset: .18em; }
a:hover { color: var(--red-700); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--blue-200); color: var(--navy-950); }

h1, h2, h3, h4 {
  margin: 0 0 .72em;
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 6vw, 4.95rem); }
h2 { font-size: clamp(1.85rem, 4vw, 3.15rem); }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.55rem); }
h4 { font-size: 1.08rem; }
p { margin: 0 0 1.25rem; }
ul, ol { margin: 0 0 1.25rem; padding-left: 1.3rem; }
address { font-style: normal; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 2rem, 52rem); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 7rem) 0; }
.section--tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section--alt { background: var(--surface-alt); }
.section--blue { background: var(--blue-050); }
.section--navy { background: var(--navy-950); color: #fff; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p, .section--navy li { color: #d8e5eb; }
.section--warm { background: var(--warm); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: #fff;
  background: var(--navy-950);
  border-radius: .5rem;
  transform: translateY(-150%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

.topbar { background: var(--navy-950); color: #dce8ee; font-size: .88rem; }
.topbar__inner {
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__group { display: flex; align-items: center; gap: 1.25rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 750; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__icon { width: 1rem; height: 1rem; flex: 0 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(217, 226, 232, .9);
  backdrop-filter: blur(14px);
}
.site-header__inner {
  min-height: 5.35rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 12.2rem; height: auto; }
.site-nav { justify-self: end; }
.site-nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .1rem; }
.site-nav__item { position: relative; }
.site-nav__link,
.site-nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 2.9rem;
  padding: .7rem .75rem;
  border: 0;
  border-radius: .55rem;
  color: var(--navy-950);
  background: transparent;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 750;
  white-space: nowrap;
}
.site-nav__link:hover,
.site-nav__toggle:hover,
.site-nav__link[aria-current="page"] { color: var(--blue-700); background: var(--blue-050); }
.site-nav__chevron { width: .8rem; transition: transform .18s ease; }
.site-nav__toggle[aria-expanded="true"] .site-nav__chevron { transform: rotate(180deg); }
.submenu {
  position: absolute;
  top: calc(100% + .55rem);
  left: 50%;
  width: min(23rem, 90vw);
  margin: 0;
  padding: .65rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .9rem;
  box-shadow: var(--shadow-md);
  transform: translateX(-50%) translateY(-.35rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.site-nav__item.is-open .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: .75rem;
  align-items: start;
  padding: .8rem;
  border-radius: .7rem;
  color: var(--ink);
  text-decoration: none;
}
.submenu a:hover, .submenu a[aria-current="page"] { background: var(--blue-050); color: var(--navy-950); }
.submenu__icon {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: .55rem;
}
.submenu__icon svg { width: 1.15rem; }
.submenu strong { display: block; font-size: .96rem; line-height: 1.3; }
.submenu small { display: block; margin-top: .15rem; color: var(--muted); font-size: .82rem; line-height: 1.35; }

.header-cta { display: inline-flex; align-items: center; gap: .5rem; }
.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: .7rem;
  color: var(--navy-950);
  background: #fff;
}
.menu-toggle svg { width: 1.35rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 3rem;
  padding: .78rem 1.18rem;
  border: 2px solid transparent;
  border-radius: .68rem;
  color: #fff;
  background: var(--red-600);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 7px 18px rgba(213, 19, 50, .18);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { color: #fff; background: var(--red-700); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(183, 15, 43, .24); }
.btn:active { transform: translateY(0); }
.btn--navy { background: var(--navy-900); box-shadow: 0 7px 18px rgba(11, 37, 56, .18); }
.btn--navy:hover { background: var(--navy-950); }
.btn--outline { color: var(--navy-950); background: transparent; border-color: var(--navy-900); box-shadow: none; }
.btn--outline:hover { color: #fff; background: var(--navy-900); }
.btn--white { color: var(--navy-950); background: #fff; box-shadow: none; }
.btn--white:hover { color: var(--navy-950); background: var(--blue-100); }
.btn--ghost-white { color: #fff; background: transparent; border-color: rgba(255,255,255,.65); box-shadow: none; }
.btn--ghost-white:hover { color: var(--navy-950); background: #fff; }
.btn svg { width: 1.05rem; height: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.8rem, 7vw, 6.7rem) 0 clamp(4.5rem, 8vw, 7.2rem);
  background:
    radial-gradient(circle at 92% 12%, rgba(65,126,158,.18), transparent 33rem),
    linear-gradient(135deg, #f8fbfc 0%, #eef6f9 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 34rem;
  height: 34rem;
  border: 3rem solid rgba(46,103,135,.055);
  border-radius: 50%;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(22rem, .95fr); gap: clamp(2.5rem, 6vw, 5.7rem); align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.1rem;
  color: var(--blue-700);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2rem; height: .2rem; border-radius: 2rem; background: var(--red-600); }
.hero__lead { max-width: 44rem; color: #354b5b; font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.65; }
.hero__checks { display: flex; flex-wrap: wrap; gap: .65rem 1rem; margin: 1.4rem 0 1.7rem; padding: 0; list-style: none; }
.hero__checks li { display: inline-flex; align-items: center; gap: .45rem; color: var(--navy-900); font-weight: 720; }
.hero__checks svg { width: 1.05rem; color: var(--success); }
.hero__fineprint { margin-top: 1rem; color: var(--muted); font-size: .9rem; }
.hero-media { position: relative; }
.hero-media__frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: .55rem solid #fff;
  border-radius: var(--radius-lg);
  background: #dce9ef;
  box-shadow: var(--shadow-md);
}
.hero-media__frame picture, .page-hero__image picture, .media-card__image picture { width: 100%; height: 100%; }
.hero-media__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media__badge {
  position: absolute;
  left: -1.3rem;
  bottom: 1.35rem;
  max-width: 16rem;
  padding: 1rem 1.15rem;
  color: #fff;
  background: var(--navy-950);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: .9rem;
  box-shadow: var(--shadow-md);
}
.hero-media__badge strong { display: block; font-size: 1.1rem; line-height: 1.25; }
.hero-media__badge span { display: block; margin-top: .3rem; color: #d5e4ec; font-size: .84rem; line-height: 1.4; }

.page-hero { padding: clamp(3rem, 6vw, 5.2rem) 0 clamp(3.6rem, 7vw, 5.8rem); background: linear-gradient(135deg, #f8fbfc, var(--blue-050)); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(18rem, .7fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 4.1rem); }
.page-hero__lead { max-width: 47rem; color: #354b5b; font-size: clamp(1.05rem, 2vw, 1.24rem); }
.page-hero__image { overflow: hidden; aspect-ratio: 16 / 10; border: .4rem solid #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; }

.breadcrumbs { margin-bottom: 1.15rem; color: var(--muted); font-size: .88rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: .35rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: #94a4ae; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue-700); text-decoration: underline; }

.trust-strip { position: relative; z-index: 4; margin-top: -2.2rem; }
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}
.trust-item { display: flex; align-items: center; gap: .8rem; min-height: 6rem; padding: 1.15rem; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item__icon { width: 2.55rem; height: 2.55rem; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue-700); background: var(--blue-100); border-radius: .65rem; }
.trust-item__icon svg { width: 1.3rem; }
.trust-item strong { display: block; color: var(--navy-950); font-size: .96rem; line-height: 1.3; }
.trust-item span { display: block; margin-top: .15rem; color: var(--muted); font-size: .81rem; line-height: 1.35; }

.section-head { max-width: 50rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.07rem; }
.kicker { display: block; margin-bottom: .65rem; color: var(--blue-700); font-size: .8rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--sidebar { grid-template-columns: minmax(0, 1.65fr) minmax(17rem, .75fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.hero__grid > *, .page-hero__grid > *, .split > *, .local-grid > *, .contact-grid > *, .grid > *, .process > *, .site-footer__grid > * { min-width: 0; }

.card {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.card--flat { box-shadow: none; }
.card--blue { background: var(--blue-050); border-color: var(--blue-200); }
.card--navy { color: #dce8ee; background: var(--navy-950); border-color: var(--navy-950); }
.card--navy h3, .card--navy h4 { color: #fff; }
.card--navy a { color: #fff; }
.card__icon { width: 3rem; height: 3rem; display: grid; place-items: center; margin-bottom: 1.1rem; color: var(--blue-700); background: var(--blue-100); border-radius: .75rem; }
.card__icon svg { width: 1.45rem; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted); }
.card--navy p { color: #d6e4ea; }
.card__link { display: inline-flex; align-items: center; gap: .35rem; margin-top: .35rem; font-weight: 800; text-decoration: none; }
.card__link::after { content: "→"; transition: transform .15s ease; }
.card__link:hover::after { transform: translateX(.2rem); }
.card__number { position: absolute; top: 1.1rem; right: 1.2rem; color: #d8e6ed; font-size: 2.7rem; font-weight: 900; line-height: 1; }

.media-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.media-card__image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--blue-100); }
.media-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.media-card:hover .media-card__image img { transform: scale(1.025); }
.media-card__body { padding: 1.35rem; }
.media-card__body p { color: var(--muted); }

.split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(2.2rem, 6vw, 5rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split--reverse > :last-child { order: 1; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split__media::before { content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem; z-index: -1; border: 2px solid var(--blue-200); border-radius: var(--radius-lg); }
.split__content p { color: var(--muted); }

.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 1.75rem; margin-bottom: .7rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .02rem; color: var(--success); font-weight: 900; }
.x-list { list-style: none; padding: 0; }
.x-list li { position: relative; padding-left: 1.75rem; margin-bottom: .7rem; }
.x-list li::before { content: "–"; position: absolute; left: .1rem; color: var(--red-600); font-weight: 900; }

.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.process__step { position: relative; padding: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.process__step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: inline-grid; place-items: center; width: 2.65rem; height: 2.65rem; margin-bottom: 1rem; color: #fff; background: var(--navy-900); border-radius: .65rem; font-weight: 900; }
.process__step:not(:last-child)::after { content: ""; position: absolute; z-index: 2; top: 2.75rem; right: -.75rem; width: 1.5rem; height: 2px; background: var(--blue-200); }
.process__step h3 { margin-bottom: .45rem; font-size: 1.1rem; }
.process__step p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

.comparison { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.comparison table { width: 100%; min-width: 43rem; border-collapse: collapse; background: #fff; }
.comparison th, .comparison td { padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison th { color: #fff; background: var(--navy-900); font-size: .92rem; }
.comparison tr:last-child td { border-bottom: 0; }
.comparison td:first-child { color: var(--navy-950); font-weight: 800; }

.note {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  color: #334b5a;
  background: var(--blue-050);
  border-left: .28rem solid var(--blue-700);
  border-radius: 0 .75rem .75rem 0;
}
.note--warning { background: #fff7e8; border-left-color: #c57a00; }
.note--danger { background: var(--red-100); border-left-color: var(--red-600); }
.note svg { width: 1.35rem; flex: 0 0 auto; margin-top: .15rem; }
.note p:last-child { margin-bottom: 0; }

.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.fact { padding: 1.35rem; background: #fff; border: 1px solid var(--line); border-radius: .9rem; }
.fact strong { display: block; color: var(--navy-950); font-size: 1.05rem; }
.fact span { display: block; margin-top: .25rem; color: var(--muted); font-size: .91rem; }

.faq-list { display: grid; gap: .75rem; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: .85rem; box-shadow: 0 5px 16px rgba(11,37,56,.04); }
.faq-list summary { position: relative; padding: 1.15rem 3.2rem 1.15rem 1.2rem; color: var(--navy-950); font-weight: 800; line-height: 1.35; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 1.15rem; width: 1.8rem; height: 1.8rem; display: grid; place-items: center; color: var(--blue-700); background: var(--blue-100); border-radius: 50%; transform: translateY(-50%); font-size: 1.25rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list__answer { padding: 0 1.2rem 1.2rem; color: var(--muted); }
.faq-list__answer p:last-child { margin-bottom: 0; }

.cta-band { position: relative; overflow: hidden; padding: clamp(2.5rem, 5vw, 4rem); color: #fff; background: var(--navy-950); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.cta-band::after { content: ""; position: absolute; right: -6rem; top: -8rem; width: 25rem; height: 25rem; border: 3rem solid rgba(255,255,255,.04); border-radius: 50%; }
.cta-band__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-band h2 { margin-bottom: .5rem; color: #fff; font-size: clamp(1.8rem, 4vw, 2.75rem); }
.cta-band p { max-width: 45rem; margin-bottom: 0; color: #d9e6ec; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .75rem; }

.service-switch { padding: 1rem 0; background: var(--warm); border-top: 1px solid #e9dfd0; border-bottom: 1px solid #e9dfd0; }
.service-switch__inner { display: flex; align-items: center; justify-content: center; gap: .75rem 1.2rem; text-align: center; flex-wrap: wrap; }
.service-switch strong { color: var(--navy-950); }
.service-switch a { font-weight: 850; }

.sidebar-card { position: sticky; top: 7rem; padding: 1.45rem; background: var(--navy-950); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.sidebar-card h3 { color: #fff; }
.sidebar-card p, .sidebar-card li { color: #d5e3ea; }
.sidebar-card a:not(.btn) { color: #fff; }
.sidebar-card .btn { width: 100%; margin-top: .4rem; }
.sidebar-card__meta { margin-top: 1.25rem; padding-top: 1.15rem; border-top: 1px solid rgba(255,255,255,.15); color: #d5e3ea; font-size: .9rem; }

.local-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.local-grid__map { padding: .7rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.place-list { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1rem 0 1.4rem; padding: 0; list-style: none; }
.place-list li { padding: .45rem .75rem; color: var(--navy-900); background: var(--blue-100); border-radius: 999px; font-size: .9rem; font-weight: 750; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .7fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.form { display: grid; gap: 1rem; padding: clamp(1.4rem, 4vw, 2.3rem); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: .38rem; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--navy-950); font-size: .91rem; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 3rem;
  padding: .72rem .82rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bfcdd6;
  border-radius: .55rem;
  outline: none;
  transition: border .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-700); box-shadow: 0 0 0 .22rem rgba(46,103,135,.15); }
.field__hint { color: var(--muted); font-size: .8rem; }
.checkbox { display: grid; grid-template-columns: 1.2rem 1fr; gap: .65rem; align-items: start; color: var(--muted); font-size: .88rem; }
.checkbox input { width: 1.1rem; height: 1.1rem; margin-top: .18rem; accent-color: var(--blue-700); }
.form__status { display: none; padding: .85rem 1rem; border-radius: .65rem; font-weight: 750; }
.form__status.is-visible { display: block; }
.form__status.is-success { color: #08543c; background: #e7f7f0; border: 1px solid #aad8c7; }
.form__status.is-error { color: #8d1027; background: var(--red-100); border: 1px solid #efb2bf; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-card { padding: 1.5rem; background: var(--navy-950); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.contact-card h2, .contact-card h3 { color: #fff; }
.contact-card p, .contact-card address { color: #d9e6ec; }
.contact-card__item { display: grid; grid-template-columns: 2.5rem 1fr; gap: .8rem; align-items: start; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-card__item:last-child { border-bottom: 0; }
.contact-card__icon { width: 2.5rem; height: 2.5rem; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.1); border-radius: .65rem; }
.contact-card__icon svg { width: 1.25rem; }
.contact-card__item strong { display: block; color: #fff; }
.contact-card__item a { color: #fff; font-weight: 800; }

.legal-content { max-width: 54rem; }
.legal-content h2 { margin-top: 2.4rem; font-size: 1.65rem; }
.legal-content h3 { margin-top: 1.8rem; font-size: 1.25rem; }
.legal-content p, .legal-content li { color: #3d4e5a; }
.legal-note { margin-bottom: 2rem; padding: 1rem 1.15rem; background: #fff7e8; border-left: .3rem solid #c57a00; border-radius: 0 .65rem .65rem 0; }

.site-footer { color: #d9e4ea; background: #081d2c; }
.site-footer__main { padding: 4rem 0 2.7rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1rem; letter-spacing: 0; }
.site-footer p, .site-footer address { color: #b9cbd5; font-size: .92rem; }
.site-footer__brand img { width: 13rem; max-width: 100%; height: auto; padding: .65rem; object-fit: contain; background: #fff; border-radius: .65rem; }
.site-footer__brand p { max-width: 25rem; margin-top: 1rem; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: .5rem; }
.footer-links a { color: #d9e4ea; text-decoration: none; font-size: .92rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.site-footer__contact a { color: #fff; font-weight: 800; }
.site-footer__bottom { padding: 1.15rem 0; border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: #aebfc8; font-size: .82rem; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: .9rem; }
.site-footer__legal a { color: #c6d4dc; text-decoration: none; }
.site-footer__legal a:hover { color: #fff; text-decoration: underline; }

.mobile-actions { display: none; }

.not-found { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 5rem 0; }
.not-found__code { display: block; color: var(--blue-200); font-size: clamp(5rem, 18vw, 12rem); font-weight: 900; line-height: .8; }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

:focus-visible { outline: 3px solid rgba(46,103,135,.5); outline-offset: 3px; }

@media (max-width: 72rem) {
  .header-cta .btn { display: none; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .site-nav__link, .site-nav__toggle { padding-inline: .55rem; font-size: .9rem; }
  .brand img { width: 10.5rem; }
}

@media (max-width: 60rem) {
  :root { --header-offset: 5.5rem; }
  .topbar__group:first-child .topbar__item:nth-child(2) { display: none; }
  .site-header__inner { min-height: 4.8rem; }
  .menu-toggle { display: grid; justify-self: end; }
  .site-nav {
    position: fixed;
    top: calc(2.65rem + 4.8rem);
    right: 0;
    left: 0;
    max-height: calc(100vh - 7.45rem);
    overflow-y: auto;
    padding: .75rem 1rem 1.3rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .2s ease, opacity .2s ease, visibility .2s;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav__list { display: grid; gap: .15rem; }
  .site-nav__link, .site-nav__toggle { width: 100%; justify-content: space-between; min-height: 3.1rem; padding: .8rem .9rem; font-size: 1rem; }
  .submenu { position: static; width: 100%; display: none; margin: .1rem 0 .55rem; padding: .35rem; box-shadow: none; transform: none; opacity: 1; visibility: visible; }
  .site-nav__item.is-open .submenu { display: block; transform: none; }
  .submenu a { padding: .72rem; }
  .header-cta { display: none; }
  .hero__grid, .page-hero__grid, .split, .local-grid, .contact-grid, .grid--sidebar { grid-template-columns: 1fr; }
  .hero-media { max-width: 42rem; }
  .hero-media__badge { left: 1rem; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process__step:nth-child(2)::after { display: none; }
  .split--reverse > :first-child, .split--reverse > :last-child { order: initial; }
  .split__media::before { inset: 1rem 0 -1rem 1rem; }
  .cta-band__grid { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }
  .sidebar-card { position: static; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 42rem) {
  body { padding-bottom: 4.2rem; }
  .container, .container--narrow { width: min(100% - 1.25rem, var(--container)); }
  .topbar__inner { justify-content: center; min-height: 2.45rem; }
  .topbar__group:first-child { display: none; }
  .topbar { font-size: .84rem; }
  .site-nav { top: calc(2.45rem + 4.8rem); max-height: calc(100vh - 7.25rem); }
  .brand img { width: 9.5rem; }
  h1 { font-size: clamp(2.15rem, 12vw, 3.25rem); }
  h2 { font-size: clamp(1.7rem, 9vw, 2.35rem); }
  h1, h2, h3, h4 { text-wrap: wrap; hyphens: auto; overflow-wrap: anywhere; }
  .hero { padding-top: 3rem; }
  .hero__grid { gap: 2.4rem; }
  .hero-media__frame { aspect-ratio: 5 / 4; border-width: .35rem; }
  .hero-media__badge { position: relative; left: auto; bottom: auto; max-width: none; margin: -1.2rem .8rem 0; }
  .page-hero__image { aspect-ratio: 5 / 4; }
  .split__media::before { inset: .75rem 0 -.75rem .75rem; }
  .trust-strip { margin-top: -1.2rem; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .grid--2, .grid--3, .grid--4, .fact-grid, .process { grid-template-columns: 1fr; }
  .process__step::after { display: none; }
  .form__grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .cta-band { padding: 2rem 1.2rem; }
  .cta-band__actions { display: grid; }
  .cta-band__actions .btn { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .mobile-actions {
    position: fixed;
    z-index: 1500;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 4.15rem;
    padding: .45rem;
    background: rgba(255,255,255,.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 25px rgba(11,37,56,.12);
  }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: .4rem; margin: .18rem; border-radius: .55rem; text-decoration: none; font-size: .92rem; font-weight: 850; }
  .mobile-actions__call { color: #fff; background: var(--red-600); }
  .mobile-actions__request { color: #fff; background: var(--navy-900); }
  .mobile-actions svg { width: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

@media print {
  .topbar, .site-header, .mobile-actions, .btn, .service-switch, .site-footer { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .section, .page-hero { padding: 1.2rem 0; }
  .card, .media-card, .comparison { box-shadow: none; break-inside: avoid; }
  a { color: #000; text-decoration: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}

/* Utility used by the error page; avoids inline presentation rules. */
.btn-row--center { justify-content: center; }
