:root {
  --navy-950: #061722;
  --navy-900: #082330;
  --navy-800: #0c3443;
  --navy-700: #125064;
  --cyan: #22bdd3;
  --cyan-dark: #129bb0;
  --cyan-soft: #e7f9fc;
  --orange: #ff7a1a;
  --orange-dark: #db5d00;
  --ink: #12232d;
  --muted: #5c6f78;
  --line: #dce5e8;
  --surface: #f4f8f9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 28, 40, 0.14);
  --radius: 24px;
  --wrap: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  border: 0;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: none;
}

.notice-bar {
  color: #d8eff3;
  background: var(--navy-950);
  font-size: 0.82rem;
}

.notice-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.notice-inner span,
.notice-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.notice-inner a {
  color: var(--white);
  font-weight: 800;
}

.notice-inner svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #55dd95;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(85, 221, 149, 0.13);
}

.notice-services {
  opacity: 0.68;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(9, 47, 61, 0.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-symbol {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--cyan), var(--navy-700));
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 8px 25px rgba(21, 165, 186, 0.25);
}

.brand-symbol svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy b {
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.brand-copy em {
  color: var(--cyan-dark);
  font-style: normal;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.035em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
}

.desktop-nav a,
.text-call {
  position: relative;
  color: #243740;
  font-size: 0.93rem;
  font-weight: 750;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg,
.service-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.88rem;
}

.button-dark {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 10px 28px rgba(4, 37, 51, 0.18);
}

.button-primary {
  color: #151d20;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 122, 26, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff8b39;
  box-shadow: 0 18px 38px rgba(255, 122, 26, 0.3);
}

.button-outline {
  color: var(--navy-900);
  background: transparent;
  border-color: #b8c9cf;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--white);
  border-color: var(--navy-700);
}

.button-light {
  color: var(--navy-900);
  background: var(--white);
}

.menu-button {
  width: 46px;
  height: 44px;
  display: none;
  padding: 11px;
  background: var(--surface);
  border-radius: 10px;
}

.menu-button span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: var(--navy-900);
}

.mobile-menu {
  padding: 4px 20px 20px;
  background: var(--white);
}

.mobile-menu a {
  display: block;
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.hero {
  overflow: hidden;
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 3% 12%, rgba(34, 189, 211, 0.14), transparent 28%),
    linear-gradient(120deg, #f4fafb 0%, #ffffff 62%, #eef7f8 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, rgba(8, 55, 70, 0.09), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: clamp(52px, 7vw, 90px);
}

.hero-copy {
  padding: 10px 0 28px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--cyan-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--cyan-dark);
}

.eyebrow.light {
  color: #6adcec;
}

.hero h1 em {
  display: block;
  color: var(--cyan-dark);
  font-style: normal;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: #3e555f;
  font-size: 0.84rem;
  font-weight: 750;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 16px;
  color: var(--cyan-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.hero-visual {
  min-height: 610px;
  position: relative;
  border-radius: 34px 8px 34px 8px;
  box-shadow: var(--shadow);
}

.hero-visual > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: 86% center;
  border-radius: inherit;
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 23, 33, 0.38));
  border-radius: inherit;
  pointer-events: none;
}

.quick-request {
  position: absolute;
  right: -35px;
  bottom: 28px;
  left: -58px;
  padding: 20px;
  color: var(--white);
  background: rgba(6, 29, 42, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(1, 19, 28, 0.27);
  backdrop-filter: blur(10px);
}

.quick-request-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.quick-request-head > div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.quick-request-head small {
  color: #a9c3cc;
}

.quick-request-head strong {
  font-size: 1.04rem;
}

.quick-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--cyan);
  border-radius: 10px;
}

.quick-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.issue-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.issue-buttons button {
  min-height: 42px;
  padding: 9px 10px;
  color: #e8f4f6;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
  font-size: 0.72rem;
  font-weight: 800;
}

.issue-buttons button:hover,
.issue-buttons button:focus-visible {
  color: #10232b;
  background: var(--cyan);
}

.coverage-badge {
  position: absolute;
  top: 28px;
  right: -25px;
  width: 128px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--orange);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(219, 93, 0, 0.28);
  text-align: center;
}

.coverage-badge b {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  line-height: 0.95;
}

.coverage-badge span {
  font-size: 0.75rem;
  font-weight: 900;
}

.coverage-badge small {
  max-width: 90px;
  margin-top: 3px;
  font-size: 0.55rem;
  line-height: 1.2;
}

.confidence-bar {
  position: relative;
  z-index: 3;
  width: min(1060px, calc(100% - 40px));
  margin: -42px auto 0;
  background: var(--white);
  border: 1px solid rgba(7, 51, 66, 0.09);
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(4, 38, 52, 0.11);
}

.confidence-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.confidence-grid > div {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px;
}

.confidence-grid > div + div {
  border-left: 1px solid var(--line);
}

.confidence-grid > div > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.confidence-grid b {
  font-size: 0.93rem;
}

.confidence-grid small {
  color: var(--muted);
  font-size: 0.76rem;
}

.confidence-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  border-radius: 50%;
}

.confidence-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  width: var(--wrap);
  margin-inline: auto;
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 155, 176, 0.55);
  box-shadow: 0 20px 45px rgba(8, 47, 61, 0.08);
}

.service-card.featured {
  background: linear-gradient(145deg, #e8fafc, #faffff);
  border-color: rgba(34, 189, 211, 0.45);
}

.urgent-card {
  color: #d9ecf0;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.urgent-card h3 {
  color: var(--white);
}

.urgent-card p {
  color: #bcd0d6;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  border-radius: 15px;
}

.service-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.heat,
.service-icon.urgent {
  color: var(--orange-dark);
  background: #fff0e6;
}

.service-number {
  color: #9fb0b7;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-style: italic;
}

.service-card p {
  max-width: 570px;
  margin-bottom: 28px;
  color: var(--muted);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  color: var(--navy-800);
  background: transparent;
  font-weight: 900;
}

.urgent-card .service-link {
  color: var(--white);
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--orange-dark);
}

.process {
  padding: 108px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(34, 189, 211, 0.1), transparent 38%),
    var(--navy-950);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  gap: clamp(70px, 10vw, 140px);
}

.process h2,
.process h3 {
  color: var(--white);
}

.process-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: #b9ced5;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 0 0 42px;
}

.process-steps li:not(:last-child)::before {
  position: absolute;
  top: 53px;
  bottom: 8px;
  left: 26px;
  width: 1px;
  content: "";
  background: rgba(106, 220, 236, 0.35);
}

.process-steps li > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--cyan);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.process-steps h3 {
  margin: 5px 0 8px;
  font-size: 1.45rem;
}

.process-steps p {
  margin: 0;
  color: #a9c1c9;
}

.coverage {
  padding-bottom: 50px;
}

.coverage-panel {
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  min-height: 480px;
  padding: clamp(38px, 6vw, 74px);
  background: var(--surface);
  border-radius: 32px;
}

.coverage-copy {
  position: relative;
  z-index: 2;
}

.coverage-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.region-tags span {
  padding: 8px 13px;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid #d4e2e6;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 800;
}

.coverage-mark {
  width: min(360px, 100%);
  aspect-ratio: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: end;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07), 0 35px 70px rgba(8, 47, 61, 0.18);
}

.coverage-mark svg {
  width: 62px;
  margin-bottom: 16px;
  color: var(--cyan);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.coverage-mark b {
  font-family: Georgia, serif;
  font-size: 2.2rem;
}

.coverage-mark small {
  color: #b5d0d7;
}

.coverage-ring {
  position: absolute;
  border: 1px solid rgba(83, 217, 235, 0.2);
  border-radius: 50%;
}

.ring-one {
  inset: 28px;
}

.ring-two {
  inset: 60px;
}

.ring-three {
  inset: 94px;
}

.request {
  padding: 108px 0;
  color: var(--white);
  background: var(--navy-800);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: start;
  gap: clamp(52px, 8vw, 100px);
}

.request h2 {
  color: var(--white);
}

.request-copy > p:not(.eyebrow) {
  color: #bdd2d8;
}

.request-contact {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.request-contact a {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 0 13px;
  align-items: center;
  padding: 13px 0;
}

.request-contact a > span {
  grid-row: span 2;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--cyan);
  border-radius: 50%;
}

.request-contact svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.request-contact small {
  color: #aac2c9;
  line-height: 1.25;
}

.request-contact b {
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.request-note {
  display: flex;
  gap: 13px;
  margin-top: 27px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.request-note svg {
  width: 23px;
  flex: 0 0 auto;
  color: var(--cyan);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.request-note p {
  margin: 0;
  color: #c5d9df;
  font-size: 0.82rem;
}

.request-note a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
}

.request-form {
  padding: clamp(28px, 4vw, 42px);
  color: var(--ink);
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(1, 17, 25, 0.25);
}

.form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  font-family: Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.form-heading small {
  color: var(--muted);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.request-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
  color: #31464f;
  font-size: 0.82rem;
  font-weight: 850;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f7f9fa;
  border: 1px solid #d7e0e3;
  border-radius: 10px;
  outline: 0;
  font-size: 0.94rem;
  font-weight: 500;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.request-form textarea {
  min-height: 118px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  background: var(--white);
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(34, 189, 211, 0.14);
}

.consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px !important;
  margin-top: 4px;
  color: var(--muted) !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan-dark);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  display: none;
  margin-top: 15px;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 750;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  color: #145c35;
  background: #e5f7ed;
  border: 1px solid #9bd7b5;
}

.form-status.error {
  color: #84291f;
  background: #fff0ed;
  border: 1px solid #efb0a8;
}

.form-footnote {
  margin: 16px 0 0;
  color: #78888e;
  font-size: 0.72rem;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: minmax(290px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(60px, 10vw, 130px);
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro > p:last-child {
  color: var(--muted);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 23px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 48px 23px 0;
  color: var(--muted);
}

.final-cta {
  padding: 72px 0;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.final-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

footer {
  padding: 70px 0 30px;
  color: #b6cbd2;
  background: #04131c;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.5fr) repeat(3, minmax(130px, 0.55fr));
  gap: 55px;
  padding-bottom: 52px;
}

.footer-brand .brand-copy b,
.footer-links h3 {
  color: var(--white);
}

.footer-brand .brand-copy small {
  color: #8ba7af;
}

.footer-about p {
  max-width: 370px;
  margin: 22px 0 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links h3 {
  margin: 0 0 6px;
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 0.88rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 690px;
  text-align: right;
}

.mobile-actions {
  display: none;
}

/* Legal pages */
.legal-main {
  background: var(--surface);
}

.legal-hero {
  padding: 82px 0 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(34, 189, 211, 0.2), transparent 30%),
    var(--navy-900);
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 17px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.legal-hero p:last-child {
  margin: 0;
  color: #b7d0d7;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 780px);
  justify-content: center;
  gap: 60px;
  padding: 70px 0 110px;
}

.legal-nav {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-nav b {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
}

.legal-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--cyan-dark);
}

.legal-content {
  padding: clamp(30px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(8, 47, 61, 0.06);
}

.legal-content section + section {
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: 22px;
  font-family: inherit;
  font-size: 1.02rem;
  letter-spacing: normal;
}

.legal-content p,
.legal-content li {
  color: #52666f;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: var(--cyan-dark);
  font-weight: 800;
  text-decoration: underline;
}

.legal-callout {
  padding: 18px 20px;
  background: var(--cyan-soft);
  border-left: 4px solid var(--cyan-dark);
  border-radius: 8px;
}

.legal-callout p {
  margin: 0;
}

@media (max-width: 1060px) {
  .desktop-nav,
  .text-call {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .hero-visual,
  .hero-visual > img {
    height: 570px;
    min-height: 570px;
  }

  .quick-request {
    right: -10px;
    left: -30px;
  }

  .coverage-badge {
    right: -8px;
  }

  .issue-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .request-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(470px, 1.28fr);
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 55px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid,
  .process-grid,
  .coverage-panel,
  .request-grid,
  .faq,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    padding-bottom: 0;
  }

  .hero-visual {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .quick-request {
    right: 22px;
    left: 22px;
  }

  .coverage-badge {
    right: 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-grid {
    gap: 60px;
  }

  .coverage-mark {
    justify-self: center;
    margin-top: 30px;
  }

  .request-copy {
    max-width: 700px;
  }

  .faq {
    gap: 35px;
  }

  .faq-intro,
  .legal-nav {
    position: static;
  }

  .legal-nav {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-links:last-child {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  :root {
    --wrap: min(100% - 28px, 1180px);
  }

  body {
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .notice-inner {
    min-height: 34px;
  }

  .notice-services,
  .notice-inner > span:first-child {
    display: none;
  }

  .notice-inner {
    justify-content: center;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-symbol {
    width: 41px;
    height: 41px;
  }

  .brand-copy b {
    font-size: 1rem;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    padding: 44px 0 80px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 9px;
  }

  .hero-visual,
  .hero-visual > img {
    height: 510px;
    min-height: 510px;
  }

  .hero-visual > img {
    object-position: 82% center;
  }

  .coverage-badge {
    top: 14px;
    right: 12px;
    width: 105px;
    min-height: 105px;
    border-width: 4px;
  }

  .coverage-badge b {
    font-size: 1.75rem;
  }

  .quick-request {
    right: 12px;
    bottom: 14px;
    left: 12px;
    padding: 15px;
  }

  .issue-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .confidence-bar {
    margin-top: -35px;
  }

  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .confidence-grid > div {
    min-height: 88px;
    justify-content: flex-start;
    padding: 16px 24px;
  }

  .confidence-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section,
  .process,
  .request {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .services-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 26px;
  }

  .coverage {
    padding-bottom: 35px;
  }

  .coverage-panel {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .coverage-mark {
    width: 280px;
  }

  .request-form {
    margin-inline: -2px;
    padding: 25px 20px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .faq-list summary {
    padding: 20px 0;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 25px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-links:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .mobile-actions {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(4, 36, 49, 0.11);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--navy-900);
    font-size: 0.86rem;
    font-weight: 900;
  }

  .mobile-actions a:last-child {
    color: #182125;
    background: var(--orange);
  }

  .mobile-actions svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }

  .legal-hero {
    padding: 58px 0;
  }

  .legal-layout {
    padding: 35px 0 80px;
  }

  .legal-content {
    padding: 28px 20px;
  }
}

@media (max-width: 390px) {
  .brand-copy b {
    font-size: 0.9rem;
  }

  .menu-button {
    width: 42px;
  }

  .hero-visual,
  .hero-visual > img {
    height: 540px;
    min-height: 540px;
  }

  .quick-request-head strong {
    font-size: 0.92rem;
  }

  .issue-buttons button {
    font-size: 0.66rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
