@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,650;9..144,800&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #130c42;
  --night: #0b1230;
  --blue: #2c46ff;
  --sky: #2ca5ff;
  --accent: #e8edf4;
  --accent-strong: #d8e0ea;
  --paper: #fbfcff;
  --soft: #f0f6ff;
  --mist: #f3f6fa;
  --line: rgba(19, 12, 66, 0.13);
  --text: #4f5672;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(19, 12, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(44, 70, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 46%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image: linear-gradient(rgba(19, 12, 66, 0.055) 1px, transparent 1px);
  background-size: 100% 10px;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 14px;
  left: clamp(12px, 3vw, 42px);
  right: clamp(12px, 3vw, 42px);
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 45px rgba(19, 12, 66, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: clamp(150px, 15vw, 210px);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.89rem;
  font-weight: 800;
}

.nav-links a,
.header-call,
.text-link {
  text-decoration: none;
}

.nav-links a:hover,
.header-call:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 118px clamp(18px, 5vw, 72px) 86px;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(1.12) brightness(1.08);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 18, 48, 0.72) 0%, rgba(11, 18, 48, 0.48) 46%, rgba(11, 18, 48, 0.12) 78%),
    linear-gradient(0deg, rgba(11, 18, 48, 0.44), transparent 42%),
    linear-gradient(135deg, rgba(44, 165, 255, 0.2), rgba(255, 255, 255, 0.08) 48%, rgba(232, 237, 244, 0.16) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(44, 165, 255, 0.34), transparent 24rem),
    radial-gradient(circle at 16% 78%, rgba(232, 237, 244, 0.34), transparent 22rem);
}

.hero-content {
  max-width: 780px;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(11, 18, 48, 0.52);
  animation: rise-in 0.7s ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.coverage-band .eyebrow {
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  max-width: 790px;
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-size: clamp(3.4rem, 7.4vw, 7.3rem);
  font-weight: 800;
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.9rem);
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.06rem, 2vw, 1.34rem);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button.primary {
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(19, 12, 66, 0.16);
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(11, 18, 48, 0.24);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(11, 18, 48, 0.28);
  backdrop-filter: blur(10px);
  font-size: 0.84rem;
  font-weight: 700;
}

section:not(.hero) {
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

section {
  scroll-margin-top: 108px;
}

[id] {
  scroll-margin-top: 118px;
}

.choice-panel {
  position: relative;
  z-index: 5;
  padding-top: 0 !important;
  background:
    linear-gradient(180deg, transparent 0%, rgba(247, 251, 255, 0.94) 34%, #ffffff 100%),
    radial-gradient(circle at 88% 20%, rgba(44, 165, 255, 0.14), transparent 24rem);
}

.choice-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(18px, 3vw, 34px);
  width: min(1180px, 100%);
  margin: -54px auto 0;
  padding: clamp(14px, 2.2vw, 24px);
  border: 1px solid rgba(19, 12, 66, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 80px rgba(19, 12, 66, 0.14);
  backdrop-filter: blur(18px);
}

.choice-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 3.3vw, 38px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(44, 70, 255, 0.08), transparent 46%),
    var(--paper);
}

.choice-intro h2 {
  max-width: 620px;
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 4.7rem);
  font-weight: 800;
  line-height: 0.96;
}

.choice-intro p {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.7;
}

.choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.keyword-strip a {
  padding: 9px 11px;
  border: 1px solid rgba(44, 70, 255, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(19, 12, 66, 0.06);
}

.keyword-strip a:hover {
  border-color: rgba(44, 70, 255, 0.34);
  color: var(--blue);
}

.choice-actions .button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(44, 70, 255, 0.22);
}

.choice-actions .button.primary:hover {
  background: #2038e8;
}

.choice-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  text-decoration: none;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(19, 12, 66, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(232, 237, 244, 0.42), transparent),
    var(--white);
}

.choice-grid article:first-child {
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(44, 165, 255, 0.34), transparent 48%),
    linear-gradient(160deg, var(--blue), #182069);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.choice-grid article:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(44, 70, 255, 0.08), transparent 52%),
    var(--white);
}

.choice-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(44, 165, 255, 0.1), transparent 58%),
    var(--paper);
}

.choice-grid span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.choice-grid article:first-child span {
  color: rgba(255, 255, 255, 0.92);
}

.choice-grid strong {
  display: block;
  margin-top: auto;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.choice-grid p {
  margin: 16px 0 0;
  color: var(--text);
  line-height: 1.55;
}

.choice-grid article:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.carrier-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(44, 70, 255, 0.06), transparent 36%),
    linear-gradient(240deg, rgba(232, 237, 244, 0.74), transparent 42%),
    var(--white);
}

.carrier-copy h2 {
  max-width: 440px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.carrier-copy p:not(.eyebrow) {
  max-width: 460px;
  color: var(--text);
  line-height: 1.65;
}

.carrier-cluster {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: clamp(7px, 1vw, 12px);
  width: min(100%, 820px);
  max-width: 820px;
  min-height: clamp(360px, 42vw, 520px);
  margin-left: auto;
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(ellipse at 45% 48%, rgba(44, 70, 255, 0.08), transparent 62%),
    radial-gradient(ellipse at 55% 58%, rgba(216, 224, 234, 0.42), transparent 58%);
}

.covermax-hub {
  position: relative;
  z-index: 2;
  flex: 0 0 clamp(190px, 24vw, 280px);
  display: grid;
  place-items: center;
  width: clamp(190px, 24vw, 280px);
  height: clamp(84px, 11vw, 118px);
  border: 1px solid rgba(44, 70, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(19, 12, 66, 0.16);
}

.covermax-hub::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 30px;
  background:
    radial-gradient(circle at 25% 25%, rgba(44, 165, 255, 0.32), transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(184, 244, 71, 0.34), transparent 52%);
  filter: blur(8px);
}

.covermax-hub img {
  width: 82%;
  height: 70%;
  object-fit: contain;
}

.logo-pill {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(82px, 8.5vw, 118px);
  height: clamp(40px, 4.9vw, 58px);
  padding: 8px 10px;
  border: 1px solid rgba(19, 12, 66, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(19, 12, 66, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-pill.is-wide {
  width: clamp(102px, 10.5vw, 146px);
}

.logo-pill.is-ultrawide {
  width: clamp(122px, 13vw, 176px);
}

.logo-pill.is-short {
  width: clamp(72px, 7.6vw, 102px);
}

.logo-pill.is-dark {
  background: var(--night);
}

.logo-pill img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.94);
}

.logo-pill:nth-child(2n) {
  transform: translateY(-10px);
}

.logo-pill:nth-child(3n) {
  transform: translateY(12px);
}

.logo-pill:nth-child(5n) {
  transform: translateY(-18px);
}

.logo-pill:nth-child(7n) {
  transform: translateY(18px);
}

.logo-pill:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 30px rgba(19, 12, 66, 0.13);
}

.quick-quote {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(44, 70, 255, 0.08), transparent 38%),
    var(--soft);
}

.quote-copy p,
.section-heading p,
.business-section p,
.trust-content p {
  max-width: 690px;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.7;
}

.quote-steps {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.quote-steps div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.quote-steps strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.9rem;
}

.quote-steps span {
  font-weight: 700;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form .wide,
.lead-form .hp-field,
.form-button,
.form-note {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(216, 224, 234, 0.76);
  border-color: rgba(44, 70, 255, 0.6);
}

.form-note {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-note a {
  color: var(--blue);
  font-weight: 800;
}

.form-note.is-success {
  color: #17603b;
  font-weight: 800;
}

.form-note.is-error {
  color: #8c2a2a;
  font-weight: 800;
}

.coverage-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(44, 165, 255, 0.32), transparent 42%),
    var(--ink);
}

.section-heading {
  max-width: 920px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.coverage-band .section-heading p {
  color: rgba(255, 255, 255, 0.73);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.14);
}

.coverage-grid article {
  min-height: 294px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.coverage-grid span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coverage-grid p,
.review-grid blockquote {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: var(--white);
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-metrics div {
  min-height: 170px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(216, 224, 234, 0.42), transparent),
    var(--white);
}

.trust-metrics strong {
  display: block;
  color: var(--blue);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
}

.trust-metrics span {
  display: block;
  margin-top: 12px;
  color: var(--text);
  line-height: 1.45;
  font-weight: 700;
}

.business-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background: var(--mist);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.business-list {
  display: grid;
  gap: 12px;
}

.business-list div {
  padding: 20px;
  border-left: 5px solid var(--accent-strong);
  background: rgba(255, 255, 255, 0.74);
}

.business-list strong,
.business-list span {
  display: block;
}

.business-list span {
  margin-top: 7px;
  color: var(--text);
  line-height: 1.5;
}

.reviews {
  background: var(--night);
  color: var(--white);
}

.reviews .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.google-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  font-size: 0.9rem;
  font-weight: 900;
}

.stars,
.review-stars span {
  color: #fbbc05;
  letter-spacing: 0.08em;
  text-shadow: 0 8px 22px rgba(251, 188, 5, 0.18);
}

.google-rating strong {
  font-size: 0.9rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.review-grid figure {
  min-height: 230px;
  margin: 0;
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
}

.review-stars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.review-stars small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.review-grid blockquote {
  margin: 0;
  font-size: 1.08rem;
}

.review-grid figcaption {
  margin-top: 24px;
  color: var(--accent);
  font-weight: 800;
}

.locations {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(44, 70, 255, 0.06), transparent 44%),
    var(--paper);
}

.location-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-panel img {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 22px;
}

.location-panel p {
  margin: 0 0 17px;
  color: var(--text);
  line-height: 1.55;
}

.location-panel p:last-child {
  margin-bottom: 0;
}

.location-panel a,
.license {
  color: var(--ink);
  font-weight: 800;
}

.mobile-cta {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 170px;
  height: auto;
}

.site-footer p {
  margin: 0;
  color: var(--text);
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .carrier-strip,
  .choice-shell,
  .quick-quote,
  .trust-section,
  .business-section,
  .locations {
    grid-template-columns: 1fr;
  }

  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carrier-copy {
    text-align: center;
  }

  .carrier-copy h2,
  .carrier-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .carrier-cluster {
    margin: 0 auto;
    min-height: auto;
  }

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

  .choice-grid article {
    min-height: 210px;
  }

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

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 9px 9px 9px 12px;
  }

  .brand img {
    width: 144px;
  }

  .header-call {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 88vh;
    align-items: flex-end;
    padding: 104px 18px 124px;
  }

  .hero-image {
    object-position: 28% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(11, 18, 48, 0.72) 0%, rgba(11, 18, 48, 0.5) 58%, rgba(11, 18, 48, 0.14) 100%),
      linear-gradient(90deg, rgba(11, 18, 48, 0.34), transparent),
      linear-gradient(135deg, rgba(44, 165, 255, 0.18), rgba(255, 255, 255, 0.08));
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, transparent 26%),
      radial-gradient(circle at 82% 18%, rgba(44, 165, 255, 0.32), transparent 17rem),
      radial-gradient(circle at 22% 84%, rgba(232, 237, 244, 0.34), transparent 18rem);
  }

  h1 {
    max-width: 430px;
    font-size: clamp(3.05rem, 13vw, 4.25rem);
  }

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

  .hero-actions {
    margin-top: 24px;
  }

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

  .hero-proof {
    flex-wrap: nowrap;
    gap: 7px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .hero-proof::-webkit-scrollbar {
    display: none;
  }

  .hero-proof span {
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  section:not(.hero) {
    padding: 58px 18px;
  }

  .choice-panel {
    padding: 0 12px 52px !important;
  }

  .choice-shell {
    margin-top: -34px;
    padding: 12px;
    border-radius: 24px;
  }

  .choice-intro {
    padding: 18px;
    border-radius: 18px;
  }

  .choice-intro h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .choice-intro p,
  .choice-grid p {
    font-size: 0.98rem;
  }

  .keyword-strip {
    gap: 7px;
    margin-top: 18px;
  }

  .keyword-strip a {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .choice-actions,
  .choice-actions .button,
  .choice-phone {
    width: 100%;
  }

  .choice-grid {
    gap: 10px;
  }

  .choice-grid article {
    min-height: 188px;
    padding: 18px;
    border-radius: 18px;
  }

  .carrier-cluster {
    width: min(100%, 430px);
    padding: 12px 0;
    gap: 6px;
  }

  .logo-pill {
    width: 70px;
    height: 36px;
    padding: 6px;
  }

  .logo-pill.is-wide {
    width: 88px;
  }

  .logo-pill.is-ultrawide {
    width: 108px;
  }

  .logo-pill.is-short {
    width: 60px;
  }

  .covermax-hub {
    flex-basis: 196px;
    width: 196px;
    height: 76px;
    border-radius: 18px;
  }

  .covermax-hub::before {
    inset: -9px;
    border-radius: 24px;
  }

  .logo-pill:nth-child(n) {
    transform: none;
  }

  .lead-form,
  .coverage-grid,
  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .coverage-grid article,
  .trust-metrics div {
    min-height: auto;
  }

  .coverage-grid span {
    margin-bottom: 26px;
  }

  .google-rating {
    justify-content: center;
    width: 100%;
    border-radius: 18px;
  }

  .review-grid figure {
    padding: 22px;
  }

  .review-stars {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 42px rgba(19, 12, 66, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 46px;
    place-items: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
  }

  .mobile-cta a:first-child {
    color: var(--blue);
    background: var(--soft);
  }

  .mobile-cta a:last-child {
    color: var(--ink);
    background: var(--accent);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 92px;
  }
}

@media (max-width: 360px) {
  .carrier-cluster {
    padding: 10px 0;
    gap: 4px;
  }

  .logo-pill {
    width: 60px;
    height: 31px;
    padding: 5px;
  }

  .logo-pill.is-wide {
    width: 78px;
  }

  .logo-pill.is-ultrawide {
    width: 94px;
  }

  .logo-pill.is-short {
    width: 54px;
  }

  .covermax-hub {
    flex-basis: 168px;
    width: 168px;
    height: 66px;
  }
}
