:root {
  --ink: #17211f;
  --muted: #5d6864;
  --line: #dfe6e2;
  --paper: #fbfcfa;
  --soft: #eef5f2;
  --green: #147d64;
  --blue: #145c8f;
  --gold: #b8873b;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; }
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  background: #17211f;
}
nav { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--muted); font-weight: 700; font-size: 14px; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}
.pulse-cta {
  animation: pulseCta 1.45s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(20, 125, 100, 0.48);
}
@keyframes pulseCta {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(20, 125, 100, 0.50); }
  70% { transform: scale(1.035); box-shadow: 0 0 0 12px rgba(20, 125, 100, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(20, 125, 100, 0); }
}
.button.secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 32px;
  align-items: center;
  min-height: 76vh;
  padding: clamp(42px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #f7faf8 0%, #eaf3ef 56%, #f8f3ea 100%);
}
.hero h1, .article h1 { font-size: clamp(34px, 6vw, 68px); line-height: 1.02; margin: 0 0 18px; letter-spacing: 0; }
.hero p, .lead { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 760px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(23, 33, 31, 0.08);
}
.hero-panel img {
  width: 132px;
  height: 132px;
  max-width: 100%;
  display: block;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  background: #17211f;
}
.section, .article {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px) 0;
}
.article { width: min(960px, calc(100% - 36px)); }
.article section { margin-top: 34px; }
.article h2, .section h2 { font-size: clamp(26px, 3vw, 40px); line-height: 1.15; margin: 0 0 16px; letter-spacing: 0; }
.article p, .article li, .section p, details { color: var(--muted); font-size: 17px; }
.eyebrow { color: var(--green); font-size: 13px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 12px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.logo-grid, .operator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.logo-card, .operator-mini {
  min-height: 168px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}
.logo-card img, .operator-mini img { max-width: 170px; height: 64px; object-fit: contain; object-position: left center; display: block; }
.operator-mini span { display: block; margin-top: 12px; font-weight: 800; }
.city-grid, .related div, .related.compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}
.city-grid a, .related a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  text-decoration: none;
  font-weight: 700;
  color: var(--blue);
}
.article-brand {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
}
.article-brand img { max-width: 100%; object-fit: contain; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.trust-row span {
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  color: var(--ink);
  font-size: 14px;
}
.check-list { padding-left: 22px; }
.check-list li { margin: 10px 0; }
details { border-top: 1px solid var(--line); padding: 14px 0; }
summary { cursor: pointer; font-weight: 800; color: var(--ink); }
.cta-band {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  background: #17211f;
  color: var(--white);
  border-radius: 8px;
}
.cta-band p { color: #d7e2dd; margin: 0; }
.cta-band h2 { margin: 0 0 10px; }
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #17211f;
  color: var(--white);
}
.site-footer p { color: #c7d3ce; margin-bottom: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; align-content: start; justify-content: flex-end; }
.footer-links a { color: #ffffff; }
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(23, 33, 31, 0.15);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; color: var(--muted); }
.cookie-banner button {
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}
.quote-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 30px;
  align-items: center;
  padding: clamp(42px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #10201c 0%, #147d64 58%, #f0b84f 100%);
  color: var(--white);
}
.quote-hero h1 { font-size: clamp(34px, 6vw, 64px); line-height: 1.02; margin: 0 0 18px; }
.quote-hero p { color: #eef7f3; font-size: 20px; max-width: 780px; }
.quote-logo-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.quote-logo-wall img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  padding: 14px;
  background: var(--white);
  border-radius: 8px;
}
.urgent-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: #f0b84f;
  color: #17211f;
  font-weight: 800;
}
.urgent-banner span { color: #2b3633; }
.urgent-banner .button { background: #17211f; border-color: #17211f; }
.mini-cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--active-brand) 12%, white);
  border: 1px solid color-mix(in srgb, var(--active-brand) 30%, var(--line));
  font-weight: 800;
}
.mini-cta-strip a { color: var(--active-brand); }
.quote-form {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(14px, 4vw, 22px);
  background: var(--white);
  border: 2px solid color-mix(in srgb, var(--active-brand) 25%, var(--line));
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(23, 33, 31, 0.08);
}
.form-alert {
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--active-brand);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.quote-form label, .quote-form fieldset { display: grid; gap: 6px; min-width: 0; font-weight: 800; }
.quote-form label span { font-size: 13px; color: var(--ink); }
.quote-form input, .quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #ffffff;
}
.quote-form input:focus, .quote-form textarea:focus { outline: 3px solid color-mix(in srgb, var(--active-brand) 22%, transparent); border-color: var(--active-brand); }
.quote-form textarea { min-height: 78px; resize: vertical; }
.quote-form fieldset { border: 1px solid var(--line); border-radius: 8px; padding: 12px; min-width: 0; }
.quote-form legend { padding: 0 8px; color: var(--active-brand); font-weight: 900; font-size: 14px; }
.pill-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.pill-radio { display: block !important; margin: 0; }
.pill-radio input { position: absolute; opacity: 0; pointer-events: none; }
.pill-radio span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-size: 13px;
  text-align: center;
}
.pill-radio input:checked + span { border-color: var(--active-brand); background: var(--active-brand); color: #ffffff; }
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.logo-choice { position: relative; min-width: 0; }
.logo-choice input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.logo-choice span {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 8px 6px;
  cursor: pointer;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}
.logo-choice img { width: 92px; max-width: 100%; height: 34px; object-fit: contain; object-position: center; display: block; }
.logo-choice strong { font-size: 11px; line-height: 1.15; white-space: normal; overflow-wrap: anywhere; }
.logo-choice input:checked + span { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 9%, white); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent); }
.captcha-box { padding: 14px; border-radius: 8px; background: var(--soft); }
.privacy-check { grid-template-columns: auto 1fr !important; align-items: start; font-weight: 700 !important; color: var(--muted); }
.privacy-check input { width: auto; margin-top: 4px; }
.form-submit { width: min(100%, 420px); min-height: 50px; justify-self: center; font-size: 17px; background: var(--active-brand); border-color: var(--active-brand); }
.compare-panel {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: #17211f;
  color: var(--white);
  border-radius: 8px;
}
.compare-panel p { color: #d7e2dd; margin: 0; }
.brand-band {
  padding: 24px;
  border-left: 8px solid var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, white);
  border-radius: 8px;
}
.three-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.three-columns div {
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand);
  border-radius: 8px;
  background: var(--white);
}
.plan-types-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: stretch;
}
.plan-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.plan-type-card,
.plan-type-cta {
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand);
  border-radius: 8px;
  background: var(--white);
}
.plan-type-card {
  padding: 18px;
}
.plan-type-card h3 {
  margin-top: 0;
  color: var(--ink);
}
.plan-type-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
}
.plan-type-card ul {
  margin: 0;
  padding-left: 18px;
}
.plan-type-card li {
  margin: 8px 0;
}
.plan-type-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: color-mix(in srgb, var(--brand) 8%, white);
}
.plan-type-cta h4,
.plan-type-cta p {
  margin: 0;
}
.logo-card { border-top: 5px solid var(--brand); }
.logo-card a { color: var(--brand); font-weight: 900; }
.quote-popup {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 20;
  width: min(330px, calc(100% - 36px));
  display: none;
  padding: 18px;
  border-radius: 8px;
  background: #17211f;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}
.quote-popup.is-visible { display: block; }
.quote-popup p { color: #d7e2dd; margin: 6px 0 14px; }
.quote-popup button {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}
.sticky-quote-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 24;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--active-brand);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.24);
}
.sticky-quote-bar span { font-size: 13px; opacity: 0.92; }
.sticky-quote-bar strong { font-size: 15px; }
.lead-float-cta {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 32;
  display: grid;
  gap: 2px;
  width: 190px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #12846d;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.22);
}
.lead-float-cta span {
  font-size: 12px;
  opacity: .9;
  font-weight: 800;
}
.lead-float-cta strong {
  font-size: 17px;
  line-height: 1.1;
}
.legal { max-width: 860px; }
.thank-you-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 84px) 18px;
  background:
    radial-gradient(circle at 20% 18%, rgba(240,184,79,.22), transparent 28%),
    linear-gradient(180deg, #f5faf7 0%, #ffffff 52%, #edf6f2 100%);
}
.thank-you-card {
  width: min(760px, 100%);
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--brand);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(20,33,30,.14);
  text-align: center;
}
.thank-you-icon {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
}
.thank-you-card h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 52px);
}
.thank-you-card .lead {
  max-width: 640px;
  margin-inline: auto;
}
.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}
.thank-you-steps span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-weight: 900;
  color: var(--ink);
}
@media (max-width: 760px) {
  .site-header, .hero, .split, .article-brand, .site-footer, .cta-band, .quote-hero, .form-grid, .three-columns, .plan-types-section, .plan-type-grid, .thank-you-steps { grid-template-columns: 1fr; }
  .site-header { align-items: flex-start; }
  nav { gap: 10px; }
  .hero { min-height: auto; }
  .article-brand { display: block; }
  .article-brand img { margin-bottom: 18px; }
  .footer-links { justify-content: flex-start; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .compare-panel { display: grid; }
  .quote-hero { padding: 30px 16px; }
  .quote-hero h1 { font-size: 32px; }
  .quote-hero p { font-size: 16px; }
  .quote-logo-wall { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .quote-logo-wall img { height: 46px; padding: 7px; }
  .urgent-banner { display: grid; align-items: start; justify-content: stretch; gap: 8px; padding: 14px 16px; }
  .mini-cta-strip { display: grid; font-size: 13px; }
  .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-choice span { min-height: 68px; padding: 7px 5px; }
  .logo-choice img { width: 82px; height: 28px; }
  .logo-choice strong { font-size: 10px; }
  .pill-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pill-radio span { min-height: 36px; padding: 7px 5px; font-size: 12px; }
  .quote-form { width: min(100%, 430px); }
  .form-section { width: min(100% - 20px, 450px); }
  .sticky-quote-bar { display: flex; }
  .lead-float-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    padding: 12px 14px;
  }
  .lead-float-cta span { font-size: 13px; }
  .lead-float-cta strong { font-size: 15px; }
  .cookie-banner { bottom: 76px; }
  .quote-popup { display: none !important; }
}

/* Lead form final mobile-first polish */
.form-section {
  width: min(100% - 24px, 820px);
}
.quote-form {
  position: relative;
  border: 0;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--active-brand), #f0b84f) border-box;
  border: 2px solid transparent;
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(23, 33, 31, 0.16);
}
.quote-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.quote-form legend {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  font-size: 13px;
  color: #17211f;
}
.quote-form label span,
.captcha-box span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #4b5753;
}
.quote-form input,
.quote-form textarea {
  border-radius: 12px;
  border: 1px solid #d8e2dd;
  background: #f8fbf9;
}
.form-alert {
  border-radius: 14px;
  background: linear-gradient(135deg, var(--active-brand), color-mix(in srgb, var(--active-brand) 72%, #111));
}
.pill-radio span {
  border-radius: 12px;
  background: #f8fbf9;
}
.choice-grid {
  padding: 8px;
  border-radius: 16px;
  background: #f4f8f6;
}
.logo-choice span {
  min-height: 74px;
  border-radius: 14px;
  border: 1px solid #dce7e2;
  box-shadow: 0 4px 16px rgba(23, 33, 31, .05);
}
.logo-choice input:checked + span {
  transform: translateY(-1px);
}
.quote-logo-wall img,
.logo-card img,
.operator-mini img {
  mix-blend-mode: multiply;
}
.brand img {
  box-shadow: 0 4px 14px rgba(0,0,0,.10);
}
@media (max-width: 760px) {
  body { padding-bottom: 78px; }
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
  }
  .brand { gap: 8px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 15px; line-height: 1.1; max-width: 120px; }
  .site-header nav {
    justify-content: end;
    gap: 0;
  }
  .site-header nav a:not(.nav-cta) {
    display: none;
  }
  .nav-cta {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }
  .form-section {
    width: min(100% - 18px, 430px);
    padding-top: 28px;
  }
  .form-section h2 {
    font-size: 25px;
  }
  .quote-form {
    gap: 12px;
    padding: 13px;
    border-radius: 16px;
  }
  .form-alert {
    font-size: 12px;
    line-height: 1.35;
  }
  .quote-form input,
  .quote-form textarea {
    min-height: 42px;
    font-size: 14px;
  }
  .quote-form textarea {
    min-height: 66px;
  }
  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 7px;
  }
  .logo-choice span {
    min-height: 66px;
    padding: 7px 5px;
  }
  .logo-choice img {
    width: 86px;
    height: 28px;
  }
  .logo-choice strong {
    font-size: 10px;
  }
  .pill-row {
    gap: 6px;
  }
  .pill-radio span {
    min-height: 36px;
  }
  .urgent-banner {
    margin: 0;
  }
}