:root {
  --ink: #071624;
  --navy: #0b2e5f;
  --navy-2: #123e76;
  --gold: #f5b72f;
  --gold-2: #ffd86a;
  --red: #e00012;
  --red-2: #ff1f2d;
  --red-3: #a6000b;
  --green: #18b957;
  --teal: #0d8a9f;
  --paper: #f4f8fc;
  --paper-2: #ffffff;
  --muted: #607083;
  --line: rgba(7, 22, 36, 0.14);
  --line-strong: rgba(7, 22, 36, 0.22);
  --shadow: 0 24px 70px rgba(7, 22, 36, 0.18);
  --shadow-soft: 0 12px 36px rgba(7, 22, 36, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 82px;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(245, 183, 47, 0.09), transparent 280px),
    linear-gradient(140deg, rgba(13, 138, 159, 0.08), transparent 42%),
    #edf4fb;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(245, 183, 47, 0.9);
  outline-offset: 3px;
}

.brand-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 10px 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: flex;
  align-items: center;
  width: 160px;
  min-width: 132px;
  text-decoration: none;
}

.brand-mark img {
  width: auto;
  height: 62px;
  max-height: none;
  object-fit: contain;
}

.brand-mark-copy {
  display: none;
}

.open-now-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(24, 185, 87, 0.34);
  border-radius: 999px;
  background: rgba(24, 185, 87, 0.09);
  color: #05371c;
  white-space: nowrap;
}

.open-now-pill i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(24, 185, 87, 0.13), 0 0 14px rgba(24, 185, 87, 0.46);
}

.open-now-pill strong,
.open-now-pill span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.desktop-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.desktop-proof > .proof-signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  text-decoration: none;
}

.proof-signal i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: rgba(11, 46, 95, 0.08);
  color: var(--navy);
  font-style: normal;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

.proof-signal > span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.proof-signal b,
.proof-signal small {
  line-height: 1;
  white-space: nowrap;
}

.proof-signal b {
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-signal small {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 850;
}

.call-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.28);
  white-space: nowrap;
}

.call-pill span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.call-pill b {
  font-size: 15px;
  font-weight: 950;
}

.assessment-page {
  padding: 26px 30px 36px;
}

.assessment-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(430px, 1fr);
  gap: 24px;
  max-width: 1240px;
  min-height: calc(100vh - 132px);
  margin: 0 auto;
  align-items: stretch;
}

.brand-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.brand-panel {
  display: grid;
  grid-template-rows: minmax(470px, 1fr) auto;
}

.media-frame {
  position: relative;
  min-height: 470px;
  background: #0a1727;
  overflow: hidden;
  isolation: isolate;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.04);
  transform: scale(1.01);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 14, 25, 0.48) 0%, rgba(5, 14, 25, 0.18) 50%, rgba(5, 14, 25, 0.06) 100%),
    linear-gradient(180deg, rgba(5, 14, 25, 0) 12%, rgba(5, 14, 25, 0.42) 100%);
}

.media-frame::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 183, 47, 0.86), rgba(255, 255, 255, 0.16), transparent);
}

.media-overlay {
  position: absolute;
  inset: auto 26px 26px 26px;
  z-index: 3;
  display: grid;
  gap: 14px;
  max-width: 560px;
  color: #fff;
}

.dispatch-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 4px solid var(--red-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.media-overlay h1 {
  margin: 0;
  max-width: 520px;
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 44px;
  line-height: 0.96;
  font-weight: 950;
}

.media-overlay p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

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

.emergency-button,
.activation-button,
.sticky-emergency-bar button,
.sticky-emergency-bar .sticky-start-service {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.28), transparent 12px),
    linear-gradient(180deg, #ff0018 0%, #ef0010 52%, #b40009 100%);
  color: #fff;
  cursor: pointer;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(75, 0, 5, 0.28);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.28) inset,
    0 0 0 6px rgba(255, 0, 18, 0.16),
    0 24px 52px rgba(255, 0, 18, 0.58),
    0 10px 24px rgba(166, 0, 11, 0.44);
  overflow: visible;
}

.emergency-button::after,
.activation-button::after,
.sticky-emergency-bar button::after,
.sticky-emergency-bar .sticky-start-service::after {
  content: "";
  position: absolute;
  inset: 7px 12px auto;
  height: 34%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.emergency-button > *,
.activation-button > *,
.sticky-emergency-bar button > *,
.sticky-emergency-bar .sticky-start-service > * {
  position: relative;
  z-index: 2;
}

.emergency-button {
  padding: 0 22px;
}

.emergency-button::before,
.activation-button::before,
.sticky-emergency-bar button::before,
.sticky-emergency-bar .sticky-start-service::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 3px solid rgba(255, 0, 18, 0.78);
  border-radius: inherit;
  box-shadow: 0 0 34px rgba(255, 0, 18, 0.42);
  animation: pulseRing 1.08s ease-out infinite;
}

.emergency-button i,
.activation-button i,
.sticky-emergency-bar button i,
.sticky-emergency-bar .sticky-start-service i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.95),
    0 0 26px rgba(255, 255, 255, 0.72);
}

.secondary-call,
.service-area-band a,
.call-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  backdrop-filter: blur(14px);
}

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

.trust-grid div {
  display: grid;
  gap: 7px;
  min-height: 116px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.trust-grid b {
  color: var(--navy);
  font-size: 15px;
  font-weight: 950;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.form-panel {
  display: flex;
  flex-direction: column;
  min-height: 680px;
}

.mobile-hero {
  display: none;
}

.mobile-priority-timer {
  display: none;
}

.form-topline {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.desktop-flow-logo {
  display: flex;
  align-items: center;
  width: 96px;
}

.desktop-flow-logo img {
  width: auto;
  height: 52px;
  max-height: none;
  object-fit: contain;
}

.topline-back-button {
  display: none;
}

.status-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.status-copy span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.status-copy b {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-copy em {
  display: none;
  font-style: normal;
}

.timer-pill {
  display: inline-grid;
  place-items: center;
  gap: 2px;
  min-width: 86px;
  min-height: 60px;
  padding: 7px 12px;
  border: 1px solid rgba(215, 25, 32, 0.24);
  border-radius: var(--radius);
  background: rgba(215, 25, 32, 0.08);
  color: var(--red);
}

.timer-pill small {
  color: #7b2c33;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.timer-pill b {
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

.topline-proof {
  display: none;
}

.progress-track {
  height: 8px;
  background: rgba(7, 22, 36, 0.08);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 240ms ease;
}

.smart-form {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.site-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.activation-screen,
.step {
  display: none;
  flex: 1;
  padding: 28px;
  animation: stepIn 230ms ease both;
}

.activation-screen.is-active,
.step.is-active {
  display: block;
}

.activation-screen {
  align-content: center;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.95)),
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.12), transparent 360px);
}

.step-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin: 0 0 12px;
  padding: 0 13px;
  border: 1px solid rgba(245, 183, 47, 0.3);
  border-radius: 999px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.8), transparent 30px),
    linear-gradient(180deg, rgba(245, 183, 47, 0.2), rgba(245, 183, 47, 0.1));
  color: #6a4a02;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(245, 183, 47, 0.12);
}

.step-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 183, 47, 0.13), 0 0 16px rgba(245, 183, 47, 0.54);
  flex: 0 0 8px;
}

.emergency-kicker {
  min-height: 42px;
  margin-bottom: 10px;
  padding: 0 18px;
  border-color: rgba(224, 0, 18, 0.3);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 34px),
    linear-gradient(180deg, #fff2d3 0%, #ffe6a1 54%, #ffd86a 100%);
  color: #301007;
  font-size: 13px;
  letter-spacing: 0;
  box-shadow:
    0 0 0 4px rgba(224, 0, 18, 0.05),
    0 15px 30px rgba(224, 0, 18, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.emergency-kicker::before {
  width: 11px;
  height: 11px;
  flex-basis: 11px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(224, 0, 18, 0.14), 0 0 18px rgba(224, 0, 18, 0.68);
}

.emergency-kicker::after {
  content: "";
  position: absolute;
  inset: auto 16px -4px 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), transparent);
  opacity: 0.82;
}

.activation-screen h2,
.step h2 {
  margin: 0;
  max-width: 700px;
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.03;
  font-weight: 950;
}

.activation-screen .step-copy,
.step-copy {
  margin: 12px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 700;
}

.activation-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  min-height: 118px;
  margin-top: 24px;
  padding: 18px;
  font-size: 24px;
}

.activation-button i {
  margin-bottom: 3px;
}

.activation-button small {
  font-size: 13px;
  font-weight: 900;
  text-transform: none;
  opacity: 0.92;
}

.activation-callout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  overflow: hidden;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 30, 44, 0.32), transparent 260px),
    linear-gradient(135deg, #07182d 0%, #0a2444 54%, #132b4a 100%);
  box-shadow: 0 22px 48px rgba(7, 24, 45, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.activation-callout::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, #ff3142, #c6000b);
  box-shadow: 0 0 24px rgba(255, 18, 34, 0.62);
}

.activation-callout div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.activation-callout span {
  color: #ffd95e;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.activation-callout b {
  color: #fff;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 950;
}

.activation-callout a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.34), transparent 26px),
    linear-gradient(180deg, #ff1f31 0%, #e00011 46%, #b90009 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(215, 25, 32, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.activation-callout small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.activation-callout strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 950;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.proof-strip span,
.contact-proof-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.zip-entry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f7fbff);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

label span {
  font-size: 13px;
  font-weight: 950;
}

label em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  font-size: 16px;
  font-weight: 800;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 23px,
    calc(100% - 13px) 23px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

input:focus,
select:focus {
  border-color: rgba(245, 183, 47, 0.95);
  box-shadow: 0 0 0 4px rgba(245, 183, 47, 0.18);
}

label small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.zip-submit-inline,
.next-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(11, 46, 95, 0.22);
}

.zip-submit-inline {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.24);
}

.area-result {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  margin-top: 16px;
  overflow: hidden;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 183, 47, 0.22), transparent 140px),
    radial-gradient(circle at 96% 18%, rgba(255, 31, 45, 0.22), transparent 160px),
    linear-gradient(135deg, #071624 0%, #0b2e5f 58%, #102f55 100%);
  box-shadow: 0 20px 46px rgba(7, 22, 36, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.area-result::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, rgba(245, 183, 47, 0.92), rgba(255, 31, 45, 0.72), transparent);
}

.area-result-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(245, 183, 47, 0.42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.36), transparent 28px),
    linear-gradient(145deg, rgba(245, 183, 47, 0.28), rgba(255, 255, 255, 0.08));
  box-shadow: 0 16px 32px rgba(245, 183, 47, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.area-result-icon::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 3px solid var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(245, 183, 47, 0.13);
}

.area-result-icon::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 0 5px rgba(255, 31, 45, 0.16), 0 0 18px rgba(255, 31, 45, 0.72);
}

.area-result-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  min-width: 0;
}

.area-result strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.16;
  font-weight: 950;
}

.area-result span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 850;
}

.area-result.is-service {
  border-color: rgba(24, 185, 87, 0.38);
  background:
    radial-gradient(circle at 12% 0%, rgba(24, 185, 87, 0.26), transparent 150px),
    radial-gradient(circle at 96% 18%, rgba(245, 183, 47, 0.18), transparent 160px),
    linear-gradient(135deg, #06231a 0%, #0b4b35 58%, #0b2e5f 100%);
  box-shadow: 0 20px 46px rgba(24, 185, 87, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.area-result.is-service .area-result-icon {
  border-color: rgba(24, 185, 87, 0.52);
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.36), transparent 28px),
    linear-gradient(145deg, rgba(24, 185, 87, 0.34), rgba(255, 255, 255, 0.08));
}

.area-result.is-service .area-result-icon::before {
  width: 24px;
  height: 13px;
  border-width: 0 0 4px 4px;
  border-color: #fff;
  border-radius: 0;
  transform: rotate(-45deg) translate(1px, -2px);
  box-shadow: none;
}

.area-result.is-service .area-result-icon::after {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(24, 185, 87, 0.14), 0 0 20px rgba(24, 185, 87, 0.72);
}

.area-result.is-warning {
  border-color: rgba(245, 183, 47, 0.48);
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 183, 47, 0.28), transparent 150px),
    linear-gradient(135deg, #2c2107 0%, #533a09 58%, #0b2e5f 100%);
}

.area-result.is-warning .area-result-icon::before {
  width: 4px;
  height: 25px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.area-result.is-warning .area-result-icon::after {
  right: auto;
  bottom: 12px;
  background: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.58);
}

.step-mini-grid,
.detail-grid,
.field-grid,
.contact-proof-row {
  display: grid;
  gap: 12px;
}

.step-mini-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 14px;
}

.zip-proof-card {
  position: relative;
  display: grid !important;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 120px;
  overflow: hidden;
  padding: 18px 19px !important;
  border: 1px solid rgba(11, 46, 95, 0.12) !important;
  background:
    radial-gradient(circle at 0% 28%, rgba(240, 0, 18, 0.08), transparent 155px),
    linear-gradient(105deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.88)) !important;
  box-shadow:
    0 18px 34px rgba(7, 22, 36, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.zip-proof-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #ff0018, #ff6a00, var(--gold));
  box-shadow: 0 0 24px rgba(240, 0, 18, 0.22);
}

.zip-proof-card::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red-2);
  box-shadow:
    0 0 0 5px rgba(255, 31, 45, 0.1),
    0 0 18px rgba(255, 31, 45, 0.42);
}

.zip-proof-visual {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.82), transparent 18px),
    linear-gradient(145deg, #071624 0%, #0b2e5f 58%, #123e76 100%);
  box-shadow:
    0 20px 30px rgba(7, 22, 36, 0.18),
    0 0 0 7px rgba(11, 46, 95, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  isolation: isolate;
}

.zip-proof-visual::before {
  content: "";
  position: absolute;
  inset: -24px -16px auto;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(-14deg);
  pointer-events: none;
}

.zip-proof-visual::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  pointer-events: none;
}

.proof-routing .zip-proof-visual {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.88), transparent 18px),
    radial-gradient(circle at 76% 76%, rgba(255, 31, 45, 0.28), transparent 26px),
    linear-gradient(145deg, #061d3f 0%, #0b3a78 58%, #092248 100%);
}

.proof-coupon .zip-proof-visual {
  background:
    radial-gradient(circle at 34% 18%, rgba(255, 255, 255, 0.88), transparent 18px),
    radial-gradient(circle at 74% 72%, rgba(240, 0, 18, 0.24), transparent 28px),
    linear-gradient(145deg, #4b2500 0%, #d58a00 54%, #ffd86a 100%);
  box-shadow:
    0 20px 30px rgba(145, 85, 0, 0.18),
    0 0 0 7px rgba(245, 183, 47, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.zip-proof-visual svg {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
}

.zip-route-line,
.zip-route-arrow,
.zip-route-road,
.zip-route-grid,
.zip-coupon-cut {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.zip-route-card {
  fill: rgba(255, 255, 255, 0.1);
  stroke: rgba(255, 255, 255, 0.36);
  stroke-width: 2.5;
}

.zip-route-grid {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 2;
}

.zip-route-line {
  stroke: #fff;
  stroke-width: 5.5;
}

.zip-route-line-shadow {
  stroke: rgba(255, 0, 18, 0.42);
  stroke-width: 9;
}

.zip-route-arrow {
  stroke: var(--gold);
  stroke-width: 5;
}

.zip-route-start {
  fill: var(--red-2);
  stroke: #fff;
  stroke-width: 3;
}

.zip-route-stop {
  fill: var(--gold);
  stroke: #fff;
  stroke-width: 3;
}

.zip-route-road {
  stroke: #fff;
  stroke-width: 6;
  filter: drop-shadow(0 5px 8px rgba(7, 22, 36, 0.24));
}

.zip-route-road-glow {
  stroke: rgba(255, 0, 18, 0.45);
  stroke-width: 12;
  filter: none;
}

.zip-route-pin {
  fill: var(--red-2);
  stroke: #fff;
  stroke-width: 3;
  filter: drop-shadow(0 8px 10px rgba(7, 22, 36, 0.24));
}

.zip-route-pin-core {
  fill: #fff;
  stroke: rgba(7, 22, 36, 0.2);
  stroke-width: 2;
}

.zip-route-bolt {
  fill: var(--gold);
  stroke: rgba(7, 22, 36, 0.32);
  stroke-width: 1.2;
}

.zip-route-flash {
  fill: #ffd86a;
  stroke: rgba(7, 22, 36, 0.35);
  stroke-width: 1.2;
  opacity: 0.94;
}

.zip-coupon-ticket {
  fill: rgba(255, 255, 255, 0.96);
  stroke: #fff;
  stroke-width: 3;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 10px rgba(75, 37, 0, 0.22));
}

.zip-coupon-cut {
  stroke: rgba(245, 183, 47, 0.55);
  stroke-width: 2.5;
  stroke-dasharray: 3 4;
}

.zip-coupon-percent {
  fill: var(--red);
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.zip-coupon-seal {
  fill: var(--red-2);
  stroke: #fff;
  stroke-width: 2.5;
}

.zip-coupon-spark {
  fill: #fff;
  stroke: rgba(245, 183, 47, 0.85);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 8px rgba(255, 216, 106, 0.8));
}

.zip-proof-card b {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.18;
}

.zip-proof-card div > span {
  display: block;
  font-size: 13px;
  line-height: 1.42;
}

.step-mini-grid article,
.conversion-grid article,
.estimate-panel,
.address-hint,
.call-band,
.coupon-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step-mini-grid article {
  display: grid;
  gap: 7px;
  padding: 15px;
}

.step-mini-grid b,
.conversion-grid b,
.estimate-panel h3,
.address-hint b,
.call-band b {
  color: var(--navy);
  font-weight: 950;
}

.step-mini-grid span,
.conversion-grid p,
.estimate-panel p,
.address-hint span,
.call-band span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 750;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

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

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

.option-card {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 8px 22px rgba(7, 22, 36, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.option-card:hover,
.option-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(11, 46, 95, 0.34);
  box-shadow: 0 16px 32px rgba(7, 22, 36, 0.12);
}

.option-card.is-selected {
  border-color: rgba(215, 25, 32, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(215, 25, 32, 0.06));
  box-shadow: 0 16px 34px rgba(215, 25, 32, 0.16);
}

.option-card small {
  width: fit-content;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(245, 183, 47, 0.18);
  color: #6a4a02;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.option-card.emergency-choice small {
  background: rgba(215, 25, 32, 0.1);
  color: var(--red);
}

.option-card b {
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

.option-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.timing-step {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 0%, rgba(240, 0, 18, 0.08), transparent 230px),
    radial-gradient(circle at 96% 0%, rgba(245, 183, 47, 0.18), transparent 260px),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.timing-step::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(7, 22, 36, 0.06);
  border-radius: calc(var(--radius) + 8px);
  pointer-events: none;
}

.timing-step > * {
  position: relative;
  z-index: 1;
}

.timing-step-kicker {
  border-color: rgba(245, 183, 47, 0.38);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.92), transparent 32px),
    linear-gradient(180deg, rgba(255, 236, 174, 0.9), rgba(255, 255, 255, 0.88));
  box-shadow: 0 12px 28px rgba(245, 183, 47, 0.14);
  color: #684600;
}

.timing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.timing-card {
  --timing-accent: var(--navy);
  --timing-accent-2: #1d4f9a;
  --timing-soft: rgba(11, 46, 95, 0.08);
  --timing-glow: rgba(11, 46, 95, 0.13);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-template-columns: 58px minmax(0, 1fr) 28px;
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 14px;
  border-color: rgba(7, 22, 36, 0.1);
  border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.92), transparent 58px),
    radial-gradient(circle at 100% 0%, var(--timing-soft), transparent 140px),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow:
    0 14px 32px rgba(7, 22, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.timing-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--timing-accent), var(--timing-accent-2));
  box-shadow: 0 0 24px var(--timing-glow);
  z-index: -1;
}

.timing-card::after {
  content: "";
  position: absolute;
  inset: -48px -48px auto auto;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--timing-soft) 0%, transparent 70%);
  z-index: -1;
}

.timing-card:hover,
.timing-card:focus-visible {
  border-color: var(--timing-accent);
  border-color: color-mix(in srgb, var(--timing-accent) 44%, #ffffff);
  box-shadow:
    0 20px 42px rgba(7, 22, 36, 0.13),
    0 0 0 4px var(--timing-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.timing-card.is-selected {
  border-color: var(--timing-accent);
  border-color: color-mix(in srgb, var(--timing-accent) 64%, #ffffff);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.95), transparent 58px),
    radial-gradient(circle at 100% 0%, var(--timing-soft), transparent 150px),
    linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.95), transparent 58px),
    radial-gradient(circle at 100% 0%, var(--timing-soft), transparent 150px),
    linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--timing-accent) 7%, #ffffff) 100%);
  box-shadow:
    0 22px 44px var(--timing-glow),
    0 0 0 4px var(--timing-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.timing-icon {
  display: grid;
  place-items: center;
  align-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 0;
  border: 1px solid rgba(11, 46, 95, 0.16);
  border: 1px solid color-mix(in srgb, var(--timing-accent) 28%, #ffffff);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.82), transparent 28px),
    linear-gradient(145deg, #ffffff, #f8fbff);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.82), transparent 28px),
    linear-gradient(145deg, #ffffff, color-mix(in srgb, var(--timing-accent) 12%, #ffffff));
  color: var(--timing-accent);
  box-shadow:
    0 14px 26px var(--timing-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.timing-icon::before,
.timing-icon::after {
  display: block;
  line-height: 1;
  text-align: center;
  color: inherit;
}

.timing-icon::before {
  content: "NOW";
  font-size: 14px;
  font-weight: 950;
}

.timing-icon::after {
  content: "ROUTE";
  margin-top: 3px;
  font-size: 8px;
  font-weight: 950;
  opacity: 0.78;
}

.timing-copy {
  display: grid;
  gap: 8px;
}

.timing-copy small {
  width: fit-content;
  min-height: 25px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(11, 46, 95, 0.08);
  background: color-mix(in srgb, var(--timing-accent) 10%, #ffffff);
  color: var(--timing-accent);
  font-size: 10.5px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.timing-card .timing-copy b {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.08;
}

.timing-card .timing-copy > span {
  color: #526278;
  font-size: 12.5px;
  line-height: 1.34;
  font-weight: 820;
}

.timing-copy em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 25px;
  padding: 5px 9px;
  border: 1px solid rgba(7, 22, 36, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--timing-accent);
  color: color-mix(in srgb, var(--timing-accent) 78%, #071624);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.timing-copy em::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--timing-accent);
  box-shadow: 0 0 0 4px var(--timing-soft);
}

.timing-select {
  position: relative;
  top: auto;
  right: auto;
  justify-self: end;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(7, 22, 36, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 0 0 4px rgba(7, 22, 36, 0.03),
    0 8px 18px rgba(7, 22, 36, 0.08);
}

.timing-card.is-selected .timing-select {
  border-color: var(--timing-accent);
  background: var(--timing-accent);
  box-shadow: 0 0 0 6px var(--timing-soft), 0 12px 24px var(--timing-glow);
}

.timing-card.is-selected .timing-select::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.timing-asap {
  --timing-accent: #ff0018;
  --timing-accent-2: #b00009;
  --timing-soft: rgba(255, 0, 24, 0.22);
  --timing-glow: rgba(255, 0, 24, 0.42);
  grid-column: 1 / -1;
  min-height: 132px;
  border-color: rgba(255, 255, 255, 0.38);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.42), transparent 72px),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.2), transparent 160px),
    linear-gradient(135deg, #ff1830 0%, #f00012 46%, #c2000d 100%);
  color: #fff;
  box-shadow:
    0 24px 52px rgba(255, 0, 24, 0.34),
    0 0 0 5px rgba(255, 0, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -18px 42px rgba(77, 0, 0, 0.18);
}

.timing-asap::before {
  width: 7px;
  background: linear-gradient(180deg, #fff, #ffbf3d);
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.62),
    0 0 32px rgba(255, 191, 61, 0.42);
}

.timing-asap::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
}

.timing-asap:hover,
.timing-asap:focus-visible,
.timing-asap.is-selected {
  border-color: rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.5), transparent 78px),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.24), transparent 165px),
    linear-gradient(135deg, #ff0018 0%, #e90012 50%, #a90008 100%);
  box-shadow:
    0 30px 62px rgba(255, 0, 24, 0.44),
    0 0 0 6px rgba(255, 0, 24, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -20px 46px rgba(64, 0, 0, 0.22);
}

.timing-asap .timing-icon {
  border-color: rgba(255, 255, 255, 0.5);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.94), transparent 28px),
    linear-gradient(180deg, #fff, #ffe8e8);
  color: #ff0018;
  box-shadow:
    0 16px 34px rgba(92, 0, 0, 0.22),
    0 0 0 5px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.timing-asap .timing-copy small {
  background: rgba(255, 255, 255, 0.92);
  color: #e60012;
  box-shadow: 0 8px 18px rgba(80, 0, 0, 0.12);
}

.timing-asap .timing-copy b {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(78, 0, 0, 0.28);
}

.timing-asap .timing-copy > span {
  color: rgba(255, 255, 255, 0.86);
}

.timing-asap .timing-copy em {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.93);
  color: #d40010;
  box-shadow: 0 10px 22px rgba(80, 0, 0, 0.12);
}

.timing-asap .timing-copy em::before {
  background: #ff0018;
  box-shadow: 0 0 0 4px rgba(255, 0, 24, 0.14);
}

.timing-asap .timing-select {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 12px 26px rgba(89, 0, 0, 0.22),
    inset 0 0 0 4px rgba(255, 0, 24, 0.04);
}

.timing-asap.is-selected .timing-select {
  border-color: #fff;
  background: #fff;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.16),
    0 14px 28px rgba(86, 0, 0, 0.28);
}

.timing-asap.is-selected .timing-select::after {
  border-color: #f00012;
}

.timing-asap .timing-icon::before {
  content: "20";
  font-size: 22px;
}

.timing-asap .timing-icon::after {
  content: "MIN";
  font-size: 9px;
}

.timing-today {
  --timing-accent: #d89000;
  --timing-accent-2: #f5b72f;
  --timing-soft: rgba(245, 183, 47, 0.16);
  --timing-glow: rgba(245, 183, 47, 0.22);
}

.timing-today .timing-icon::before {
  content: "TODAY";
  font-size: 11px;
}

.timing-today .timing-icon::after {
  content: "ROUTE";
}

.timing-tonight {
  --timing-accent: #3d245c;
  --timing-accent-2: #0b2e5f;
  --timing-soft: rgba(61, 36, 92, 0.12);
  --timing-glow: rgba(61, 36, 92, 0.22);
}

.timing-tonight .timing-icon::before {
  content: "NIGHT";
  font-size: 12px;
}

.timing-tonight .timing-icon::after {
  content: "24/7";
}

.timing-tomorrow {
  --timing-accent: #0b4f91;
  --timing-accent-2: #1985d0;
  --timing-soft: rgba(25, 133, 208, 0.12);
  --timing-glow: rgba(25, 133, 208, 0.2);
}

.timing-tomorrow .timing-icon::before {
  content: "NEXT";
  font-size: 13px;
}

.timing-tomorrow .timing-icon::after {
  content: "DAY";
}

.timing-flexible {
  --timing-accent: #2a7d78;
  --timing-accent-2: #4aa39b;
  --timing-soft: rgba(42, 125, 120, 0.12);
  --timing-glow: rgba(42, 125, 120, 0.18);
}

.timing-flexible .timing-icon::before {
  content: "CALL";
  font-size: 13px;
}

.timing-flexible .timing-icon::after {
  content: "BACK";
}

.urgency-step {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 31, 45, 0.09), transparent 210px),
    radial-gradient(circle at 100% 4%, rgba(245, 183, 47, 0.18), transparent 230px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.96));
}

.urgency-step::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(7, 22, 36, 0.06);
  border-radius: var(--radius);
  pointer-events: none;
}

.urgency-step > * {
  position: relative;
  z-index: 1;
}

.urgency-step-kicker {
  border-color: rgba(224, 0, 18, 0.24);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.9), transparent 28px),
    linear-gradient(180deg, rgba(224, 0, 18, 0.1), rgba(245, 183, 47, 0.16));
  color: #68150f;
  box-shadow: 0 12px 26px rgba(224, 0, 18, 0.12);
}

.urgency-step-kicker::before {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(224, 0, 18, 0.14), 0 0 16px rgba(224, 0, 18, 0.55);
}

.urgency-step .step-copy {
  max-width: 760px;
}

.urgency-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 20px;
}

.urgency-card {
  --urgency-color: var(--navy);
  --urgency-deep: var(--navy);
  --urgency-soft: rgba(11, 46, 95, 0.09);
  --urgency-glow: rgba(11, 46, 95, 0.18);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 28px;
  gap: 14px;
  align-items: center;
  min-height: 132px;
  overflow: hidden;
  padding: 16px;
  border-color: rgba(7, 22, 36, 0.1);
  background:
    radial-gradient(circle at 5% 0%, var(--urgency-soft), transparent 150px),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow:
    0 14px 34px rgba(7, 22, 36, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.urgency-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--urgency-color), rgba(245, 183, 47, 0.82));
  box-shadow: 0 0 24px var(--urgency-glow);
}

.urgency-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  opacity: 0.9;
}

.urgency-card:hover,
.urgency-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--urgency-color);
  box-shadow:
    0 18px 42px rgba(7, 22, 36, 0.13),
    0 0 0 4px var(--urgency-soft);
}

.urgency-card.is-selected {
  border-color: var(--urgency-color);
  background:
    radial-gradient(circle at 6% 0%, var(--urgency-soft), transparent 160px),
    linear-gradient(180deg, #fff, #fff8f8);
  box-shadow:
    0 20px 46px var(--urgency-glow),
    0 0 0 4px var(--urgency-soft);
}

.urgency-critical,
.urgency-rescue {
  --urgency-color: #f00012;
  --urgency-deep: #8d030b;
  --urgency-soft: rgba(240, 0, 18, 0.17);
  --urgency-glow: rgba(240, 0, 18, 0.34);
}

.urgency-card.emergency-choice {
  border-color: rgba(240, 0, 18, 0.38);
  background:
    radial-gradient(circle at 0% 48%, rgba(240, 0, 18, 0.18), transparent 126px),
    radial-gradient(circle at 100% 12%, rgba(255, 206, 210, 0.48), transparent 130px),
    linear-gradient(180deg, #fffafa 0%, #ffffff 58%, #fff2f3 100%);
  box-shadow:
    0 20px 48px rgba(240, 0, 18, 0.16),
    0 0 0 1px rgba(240, 0, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.urgency-card.emergency-choice::before {
  width: 7px;
  background: linear-gradient(180deg, #ff0018 0%, #d80010 56%, #ffcf42 100%);
  box-shadow:
    0 0 22px rgba(255, 0, 18, 0.52),
    0 0 46px rgba(255, 0, 18, 0.26);
}

.urgency-card.emergency-choice::after {
  inset: 0 0 auto;
  height: 3px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 0, 18, 0.86), transparent),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
  opacity: 1;
}

.urgency-security {
  --urgency-color: #f5a400;
  --urgency-deep: #6a4a02;
  --urgency-soft: rgba(245, 183, 47, 0.16);
  --urgency-glow: rgba(245, 183, 47, 0.22);
}

.urgency-today {
  --urgency-color: var(--navy-2);
  --urgency-deep: var(--navy);
  --urgency-soft: rgba(18, 62, 118, 0.11);
  --urgency-glow: rgba(18, 62, 118, 0.18);
}

.urgency-unsure {
  --urgency-color: var(--teal);
  --urgency-deep: #075866;
  --urgency-soft: rgba(13, 138, 159, 0.12);
  --urgency-glow: rgba(13, 138, 159, 0.18);
  min-height: 128px;
}

.urgency-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.95), transparent 28px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), var(--urgency-soft));
  box-shadow:
    0 14px 28px var(--urgency-glow),
    inset 0 0 0 1px var(--urgency-soft);
}

.urgency-icon svg {
  width: 44px;
  height: 44px;
}

.urgency-icon svg path,
.urgency-icon svg circle {
  fill: none;
  stroke: var(--navy);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.urgency-icon svg path:last-child,
.urgency-icon svg circle:last-child {
  stroke: var(--urgency-color);
}

.urgency-content {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.urgency-card small {
  min-height: 28px;
  padding: 6px 10px;
  background: var(--urgency-soft);
  color: var(--urgency-deep);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.64);
}

.urgency-card.emergency-choice small {
  background: linear-gradient(180deg, #ff2738 0%, #d90010 100%);
  color: #fff;
  text-shadow: 0 1px 0 rgba(96, 0, 7, 0.26);
  box-shadow:
    0 10px 22px rgba(224, 0, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.urgency-card.emergency-choice .urgency-icon {
  border-color: rgba(240, 0, 18, 0.34);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.96), transparent 28px),
    linear-gradient(145deg, #ffffff 0%, #ffe4e6 100%);
  box-shadow:
    0 16px 32px rgba(240, 0, 18, 0.24),
    inset 0 0 0 1px rgba(240, 0, 18, 0.14);
}

.urgency-card.emergency-choice em {
  border-color: rgba(240, 0, 18, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: #a5000c;
  box-shadow: 0 8px 18px rgba(240, 0, 18, 0.08);
}

.urgency-card.emergency-choice em::before {
  background: #ff0018;
  box-shadow:
    0 0 0 4px rgba(240, 0, 18, 0.11),
    0 0 14px rgba(240, 0, 18, 0.56);
}

.urgency-card.emergency-choice .urgency-select-indicator {
  border-color: rgba(240, 0, 18, 0.48);
  box-shadow:
    inset 0 0 0 4px rgba(240, 0, 18, 0.06),
    0 0 0 4px rgba(240, 0, 18, 0.06);
}

.urgency-card b {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.08;
}

.urgency-card .urgency-content > span {
  color: #526278;
  font-size: 13.5px;
  line-height: 1.38;
  font-weight: 820;
}

.urgency-card em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(7, 22, 36, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--urgency-deep);
  font-style: normal;
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 920;
}

.urgency-card em::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--urgency-color);
  box-shadow: 0 0 0 4px var(--urgency-soft);
  flex: 0 0 8px;
}

.urgency-select-indicator {
  position: relative;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(7, 22, 36, 0.18);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 4px rgba(7, 22, 36, 0.03);
}

.urgency-card.is-selected .urgency-select-indicator {
  border-color: var(--urgency-color);
  background: var(--urgency-color);
  box-shadow: 0 0 0 6px var(--urgency-soft), 0 8px 18px var(--urgency-glow);
}

.urgency-card.is-selected .urgency-select-indicator::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.safety-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding: 14px 15px;
  border: 1px solid rgba(215, 25, 32, 0.22);
  border-radius: var(--radius);
  background: rgba(215, 25, 32, 0.07);
}

.safety-note b {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.safety-note span {
  color: #593038;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.estimate-panel {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(245, 183, 47, 0.12), transparent),
    #fff;
}

.estimate-panel > span,
.service-area-band span,
.section-head span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.estimate-panel h3 {
  margin: 0;
  font-size: 21px;
}

.estimate-panel div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.estimate-panel div b {
  color: var(--red);
  font-size: 17px;
  font-weight: 950;
}

.estimate-panel div small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}

.call-band {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(90deg, rgba(11, 46, 95, 0.95), rgba(7, 22, 36, 0.95));
}

.call-band b,
.call-band span {
  color: #fff;
}

.call-band div {
  display: grid;
  gap: 5px;
}

.call-band a {
  min-width: 172px;
  border-color: rgba(255, 255, 255, 0.26);
}

.address-grid {
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 22px;
}

.address-step {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 248, 223, 0.92) 0%, rgba(255, 255, 255, 0.96) 46%, rgba(241, 247, 255, 0.96) 100%);
}

.address-step::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(11, 46, 95, 0.08);
  border-radius: calc(var(--radius) + 8px);
  pointer-events: none;
}

.address-step > * {
  position: relative;
  z-index: 1;
}

.address-step-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.address-step-header a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(240, 0, 18, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.78), transparent 28px),
    linear-gradient(180deg, #fff, #fff4f4);
  color: #d71920;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(240, 0, 18, 0.1);
}

.address-step-kicker {
  border-color: rgba(245, 183, 47, 0.38);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.92), transparent 32px),
    linear-gradient(180deg, rgba(255, 236, 174, 0.9), rgba(255, 255, 255, 0.88));
  color: #684600;
}

.location-command-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(11, 46, 95, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 0, 18, 0.07), transparent 240px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
  box-shadow:
    0 22px 48px rgba(7, 22, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.location-command-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-left: 6px solid #f00012;
  pointer-events: none;
}

.location-command-head {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(11, 46, 95, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(240, 0, 18, 0.26), transparent 120px),
    linear-gradient(135deg, #071624 0%, #122b55 66%, #342033 100%);
  box-shadow: 0 16px 34px rgba(7, 22, 36, 0.16);
}

.google-route-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffe08a;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.google-route-pill i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f00012;
  box-shadow: 0 0 0 5px rgba(240, 0, 18, 0.16);
}

.location-command-head strong {
  max-width: 360px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 950;
  line-height: 0.94;
}

.location-command-head small {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.35;
}

.address-smart-field {
  position: relative;
  display: grid;
  grid-column: 2;
  align-content: center;
  min-width: 0;
  padding: 8px 0;
}

.service-address-shell {
  position: relative;
}

.address-search-badge {
  position: absolute;
  left: 18px;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(7, 22, 36, 0.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at 72% 72%, rgba(240, 0, 18, 0.22), transparent 12px),
    linear-gradient(145deg, #ffffff 0%, #f7fbff 100%) padding-box,
    linear-gradient(145deg, rgba(245, 183, 47, 0.86), rgba(240, 0, 18, 0.86), rgba(11, 46, 95, 0.72)) border-box;
  color: transparent;
  font-size: 0;
  font-weight: 950;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow:
    0 14px 24px rgba(11, 46, 95, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  pointer-events: none;
}

.address-search-badge::before,
.address-search-badge::after {
  content: "";
  position: absolute;
  display: block;
}

.address-search-badge::before {
  width: 16px;
  height: 16px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  transform: translate(-3px, -3px);
}

.address-search-badge::after {
  width: 11px;
  height: 4px;
  border-radius: 999px;
  background: #f00012;
  transform: translate(9px, 10px) rotate(45deg);
  box-shadow: -18px -18px 0 -1px #f5b72f;
}

#serviceAddress {
  min-height: 76px;
  padding: 16px 18px 16px 76px;
  border: 2px solid rgba(11, 46, 95, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: #071624;
  font-size: 21px;
  font-weight: 950;
  box-shadow:
    0 16px 36px rgba(7, 22, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

#serviceAddress:focus {
  border-color: #ff0018;
  box-shadow:
    0 0 0 6px rgba(240, 0, 18, 0.11),
    0 22px 44px rgba(240, 0, 18, 0.18);
}

#serviceAddress::placeholder {
  color: rgba(7, 22, 36, 0.42);
  font-weight: 900;
}

#serviceAddress.is-google-places-ready {
  border-color: rgba(52, 168, 83, 0.56);
}

.address-smart-note {
  display: block;
  margin-top: 7px;
  color: #5b6678;
  font-size: 12.5px;
  font-weight: 850;
  line-height: 1.35;
}

.address-suggestions {
  position: relative;
  z-index: 9;
  display: grid;
  max-height: 286px;
  margin-top: 10px;
  overflow: auto;
  border: 1px solid rgba(11, 46, 95, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 24px 52px rgba(7, 22, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.address-suggestions[hidden] {
  display: none;
}

.address-suggestion {
  position: relative;
  display: grid;
  width: 100%;
  gap: 5px;
  min-height: 72px;
  padding: 15px 18px 15px 58px;
  border: 0;
  border-top: 1px solid rgba(7, 22, 36, 0.08);
  background:
    linear-gradient(90deg, rgba(240, 0, 18, 0.06), transparent 42%),
    #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.address-suggestion:first-child {
  border-top: 0;
}

.address-suggestion::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 9px;
  background:
    radial-gradient(circle at 69% 30%, #f5b72f 0 4px, transparent 5px),
    radial-gradient(circle at 34% 66%, #f00012 0 4px, transparent 5px),
    linear-gradient(145deg, #ffffff 0%, #f7fbff 100%) padding-box,
    linear-gradient(145deg, rgba(245, 183, 47, 0.86), rgba(240, 0, 18, 0.86), rgba(11, 46, 95, 0.76)) border-box;
  border: 1px solid transparent;
  color: transparent;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  box-shadow:
    0 0 0 5px rgba(240, 0, 18, 0.07),
    0 8px 16px rgba(11, 46, 95, 0.12);
}

.address-suggestion::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 29px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transform: rotate(-34deg);
  box-shadow: 5px -4px 0 -1px var(--navy);
}

.address-suggestion:hover,
.address-suggestion:focus {
  outline: none;
  background:
    linear-gradient(90deg, rgba(240, 0, 18, 0.07), rgba(255, 255, 255, 1) 48%),
    linear-gradient(180deg, #fff9f9, #ffffff);
}

.address-suggestion strong {
  color: var(--navy);
  font-size: 15.5px;
  font-weight: 950;
  line-height: 1.16;
}

.address-suggestion span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.3;
}

.google-route-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  align-items: center;
  grid-column: 2;
  padding: 12px 14px;
  border: 1px solid rgba(11, 46, 95, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(11, 46, 95, 0.05), rgba(245, 183, 47, 0.06)),
    rgba(255, 255, 255, 0.78);
}

.google-route-status::before {
  content: "";
  grid-row: 1 / span 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(245, 183, 47, 0.14);
}

.google-route-status.is-loading::before {
  background: #4285f4;
  box-shadow: 0 0 0 7px rgba(66, 133, 244, 0.12);
}

.google-route-status.is-selected::before {
  background: #22a659;
  box-shadow: 0 0 0 7px rgba(34, 166, 89, 0.14);
}

.google-route-status.is-warning::before,
.google-route-status.is-manual::before {
  background: #f00012;
  box-shadow: 0 0 0 7px rgba(240, 0, 18, 0.12);
}

.google-route-status span {
  color: #6b4a00;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.google-route-status b {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
}

.location-proof-row {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  gap: 8px;
}

.location-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(11, 46, 95, 0.06);
  color: var(--navy);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.location-proof-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #22a659;
  box-shadow: 0 0 0 4px rgba(34, 166, 89, 0.12);
}

.wide-field {
  grid-column: 1 / -1;
}

.wide-field.address-smart-field {
  grid-column: 2;
}

.address-hint {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 46, 95, 0.12);
  border-radius: 18px;
  background: rgba(13, 138, 159, 0.08);
}

.address-smart-hint {
  border-color: rgba(240, 0, 18, 0.12);
  background:
    linear-gradient(90deg, rgba(240, 0, 18, 0.05), rgba(255, 255, 255, 0.95));
  box-shadow: 0 18px 34px rgba(7, 22, 36, 0.06);
}

.address-hint b {
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
}

.address-hint span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.address-inline-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(240, 0, 18, 0.1);
  border-radius: 16px;
  background: rgba(240, 0, 18, 0.04);
  color: #5b6678;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 850;
}

.contact-final-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.coupon-card {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 150px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(245, 183, 47, 0.2), rgba(245, 183, 47, 0.06)),
    #fff;
  text-align: center;
}

.coupon-card span,
.coupon-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.coupon-card b {
  color: var(--red);
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.contact-fields {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 190px;
  align-items: start;
}

.consent-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.consent-line input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.consent-line span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.contact-proof-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.form-actions {
  position: sticky;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 31, 45, 0.22), transparent 190px),
    radial-gradient(circle at 92% 0%, rgba(245, 183, 47, 0.18), transparent 210px),
    linear-gradient(135deg, rgba(7, 22, 36, 0.96), rgba(11, 46, 95, 0.96));
  box-shadow: 0 -18px 42px rgba(7, 22, 36, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.smart-form.is-start .form-actions {
  display: none;
}

.smart-form.is-details .form-actions {
  display: none;
}

.back-button,
.inline-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.inline-call-button {
  min-width: 128px;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.34), transparent 28px),
    linear-gradient(180deg, #ff1f31, #c90010);
  color: #fff;
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.next-button {
  min-height: 58px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3), transparent 30px),
    linear-gradient(180deg, #ff2638 0%, #e00012 48%, #b8000c 100%);
  box-shadow: 0 16px 34px rgba(215, 25, 32, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.next-button:disabled {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, rgba(18, 62, 118, 0.92), rgba(7, 22, 36, 0.92));
  color: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(7, 22, 36, 0.2);
}

.submit-button {
  display: none;
  background: linear-gradient(180deg, var(--red-2), var(--red));
}

.smart-form.is-contact .next-button {
  display: none;
}

.smart-form.is-contact .submit-button {
  display: inline-flex;
}

.smart-form.is-first .form-actions {
  grid-template-columns: auto auto minmax(0, 1fr);
}

.mobile-back-button {
  display: none;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
}

.conversion-band,
.service-area-band {
  max-width: 1240px;
  margin: 24px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.conversion-band {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 8% 0%, rgba(245, 183, 47, 0.18), transparent 230px),
    radial-gradient(circle at 100% 4%, rgba(224, 0, 18, 0.2), transparent 260px),
    linear-gradient(135deg, #071624 0%, #0b2e5f 56%, #111a2a 100%);
  box-shadow: 0 24px 58px rgba(7, 22, 36, 0.2);
  color: #fff;
}

body:not(.is-form-start) .conversion-band {
  display: none;
}

.conversion-band::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  pointer-events: none;
}

.section-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  max-width: 920px;
}

.section-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--red-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.section-head span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red-2);
  box-shadow: 0 0 0 4px rgba(255, 31, 45, 0.14), 0 0 16px rgba(255, 31, 45, 0.56);
}

.section-head h2,
.service-area-band h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 950;
}

.conversion-band .section-head h2 {
  color: #fff;
}

.section-head p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 800;
}

.conversion-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.failure-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 392px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #071624;
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  isolation: isolate;
}

.failure-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 22, 36, 0) 0%, rgba(7, 22, 36, 0.10) 42%, rgba(7, 22, 36, 0.68) 100%),
    linear-gradient(90deg, rgba(7, 22, 36, 0.34), rgba(7, 22, 36, 0.04) 54%, rgba(7, 22, 36, 0.10)),
    radial-gradient(circle at 14% 18%, rgba(255, 31, 45, 0.16), transparent 142px);
  pointer-events: none;
}

.failure-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  z-index: 3;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(255, 214, 77, 0.35), rgba(255, 0, 18, 0.92), rgba(255, 255, 255, 0.26));
  box-shadow: 0 0 20px rgba(255, 0, 18, 0.36);
}

.failure-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.failure-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1.025);
}

.failure-spring .failure-photo img {
  object-position: 45% 48%;
}

.failure-open .failure-photo img {
  object-position: 50% 54%;
}

.failure-car .failure-photo img {
  object-position: 48% 52%;
}

.failure-track .failure-photo img {
  object-position: 55% 50%;
}

.failure-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 28px 28px 26px;
}

.failure-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
  font-size: 10.8px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.failure-open .failure-tag,
.failure-track .failure-tag {
  color: #7a5200;
}

.conversion-grid b {
  display: block;
  margin: 0;
  color: #fff;
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 31px;
  line-height: 1.04;
  font-weight: 950;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.36);
}

.conversion-grid p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 850;
}

.failure-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.failure-bullets li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
  padding: 11px 15px 11px 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 15px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.92) 58%, rgba(255, 255, 255, 0.82) 100%);
  backdrop-filter: blur(10px);
  color: #071624;
  font-size: 12.8px;
  line-height: 1.22;
  font-weight: 950;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-shadow: none;
}

.failure-bullets li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #f00012 0 33%, #fff 35% 57%, rgba(255, 232, 224, 0.96) 59% 100%);
  transform: translateY(-50%);
  box-shadow:
    0 0 0 5px rgba(240, 0, 18, 0.12),
    0 0 18px rgba(240, 0, 18, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.failure-bullets li::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #ff0018 0%, #f5b72f 100%);
  box-shadow: 0 0 18px rgba(240, 0, 18, 0.42);
}

.failure-bullets li:nth-child(2) {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 232, 0.93) 58%, rgba(255, 255, 255, 0.84) 100%);
}

.failure-bullets li:nth-child(2)::before {
  background:
    radial-gradient(circle at 50% 50%, #f00012 0 28%, #fff 30% 54%, #fff2c4 56% 100%);
  box-shadow:
    0 0 0 5px rgba(245, 183, 47, 0.16),
    0 0 18px rgba(240, 0, 18, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.service-area-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(11, 46, 95, 0.94), rgba(7, 22, 36, 0.94)),
    #0b2e5f;
  color: #fff;
}

.service-area-band span,
.service-area-band h2,
.service-area-band p {
  color: #fff;
}

.service-area-band p {
  margin: 10px 0 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 750;
}

.service-area-band a {
  border-color: rgba(255, 255, 255, 0.28);
}

.sticky-emergency-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 60;
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  width: min(620px, calc(100% - 28px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 22, 36, 0.88);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

body.is-form-start .sticky-emergency-bar {
  display: none;
}

body.is-step-details .sticky-emergency-bar {
  display: none;
}

body.address-suggestions-open .sticky-emergency-bar {
  display: none;
}

.sticky-emergency-bar button,
.sticky-emergency-bar .sticky-start-service,
.sticky-emergency-bar a {
  min-height: 52px;
  border-radius: 999px;
  font-size: 14px;
}

.sticky-emergency-bar button,
.sticky-emergency-bar .sticky-start-service {
  padding: 0 18px;
}

.sticky-emergency-bar a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 214px;
  overflow: hidden;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.34), transparent 34px),
    linear-gradient(180deg, #ff1426 0%, #e00012 54%, #a9000c 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  box-shadow:
    0 15px 30px rgba(224, 0, 18, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sticky-emergency-bar a::before {
  content: "";
  position: absolute;
  inset: 7px 12px auto;
  height: 32%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.sticky-emergency-bar a::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.12),
    0 0 18px rgba(255, 255, 255, 0.78);
  transform: translateY(-50%);
}

.sticky-emergency-bar a span,
.sticky-emergency-bar a small {
  position: relative;
  z-index: 1;
}

.sticky-emergency-bar a span {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.sticky-emergency-bar a small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 10.5px;
  line-height: 1;
  font-weight: 900;
}

@media (min-width: 981px) {
  body {
    padding-bottom: 0;
  }

  .sticky-emergency-bar {
    display: none;
  }

  .form-actions {
    grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  }

  .form-actions .back-button {
    display: none;
  }
}

@keyframes pulseRing {
  0% {
    opacity: 0.82;
    transform: scale(0.98);
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes mobileCtaFlash {
  0%,
  100% {
    filter: brightness(1) saturate(1);
    transform: scale(1);
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.32) inset,
      0 0 0 7px rgba(255, 0, 18, 0.16),
      0 0 0 18px rgba(255, 0, 18, 0.08),
      0 24px 48px rgba(255, 0, 18, 0.48),
      0 12px 26px rgba(166, 0, 11, 0.4);
  }

  48% {
    filter: brightness(1.18) saturate(1.22);
    transform: scale(1.025);
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.46) inset,
      0 0 0 9px rgba(255, 0, 18, 0.24),
      0 0 0 24px rgba(255, 0, 18, 0.12),
      0 30px 58px rgba(255, 0, 18, 0.6),
      0 0 48px rgba(255, 255, 255, 0.34);
  }
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .desktop-proof {
    display: none;
  }

  .assessment-shell {
    grid-template-columns: minmax(330px, 0.8fr) minmax(410px, 1fr);
  }

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

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

  .timing-asap {
    grid-column: 1 / -1;
    min-height: 136px;
  }

  .timing-asap .timing-icon {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: 92px;
  }

  .brand-bar {
    min-height: 86px;
    padding: 10px 18px;
    gap: 14px;
  }

  .brand-mark {
    width: 142px;
    min-width: 120px;
  }

  .brand-mark img {
    height: 70px;
  }

  .open-now-pill {
    min-height: 44px;
    padding: 0 15px;
    box-shadow: 0 8px 18px rgba(24, 185, 87, 0.12);
  }

  .open-now-pill strong {
    font-size: 13px;
  }

  .open-now-pill span {
    display: none;
  }

  .call-pill {
    margin-left: auto;
    min-height: 56px;
    min-width: 168px;
    padding: 0 18px;
    background:
      radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.26), transparent 12px),
      linear-gradient(180deg, #ff0018 0%, #e90010 52%, #b40009 100%);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.24) inset,
      0 18px 36px rgba(255, 0, 18, 0.34),
      0 0 28px rgba(255, 0, 18, 0.18);
  }

  .call-pill span {
    display: none;
  }

  .call-pill b {
    font-size: 18px;
    line-height: 1;
  }

  .assessment-page {
    padding: 14px;
  }

  .assessment-shell {
    display: block;
    min-height: auto;
  }

  .brand-panel {
    display: none;
  }

  .form-panel {
    min-height: calc(100vh - 98px);
  }

  body.is-form-start .form-panel {
    min-height: auto;
  }

  body.is-form-start .form-topline,
  body.is-form-start .progress-track,
  body.is-form-start .smart-form {
    display: none;
  }

  body.is-form-start .mobile-hero {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    background:
      radial-gradient(circle at 0% 0%, rgba(245, 183, 47, 0.2), transparent 170px),
      radial-gradient(circle at 100% 0%, rgba(255, 0, 18, 0.22), transparent 180px),
      linear-gradient(160deg, rgba(8, 24, 45, 0.98), rgba(14, 49, 94, 0.96) 48%, rgba(6, 14, 26, 0.98)),
      #0b2e5f;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
  }

  .mobile-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
  }

  .mobile-hero::after {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    pointer-events: none;
  }

  .mobile-hero-brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    padding: 2px 2px 0;
  }

  .mobile-hero-brand img {
    width: 68px;
    height: 58px;
    object-fit: contain;
    border-radius: var(--radius);
    background: #fff;
    padding: 5px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  }

  .mobile-hero-brand div {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .mobile-hero-brand span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(24, 185, 87, 0.34);
    border-radius: 999px;
    background: rgba(24, 185, 87, 0.12);
    color: #dfffe9;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-hero-brand span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(24, 185, 87, 0.13), 0 0 16px rgba(24, 185, 87, 0.66);
  }

  .mobile-hero-brand b {
    font-family: "Inter Tight", "Manrope", Arial, sans-serif;
    font-size: 21px;
    line-height: 1;
    font-weight: 950;
  }

  .mobile-service-line {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 850;
  }

  .mobile-hero-stage {
    position: relative;
    min-height: 132px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    overflow: hidden;
    background: #071624;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.26);
  }

  .mobile-hero-stage img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.03) contrast(1.04);
    transform: scale(1.02);
  }

  .mobile-hero-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(7, 22, 36, 0.42), rgba(7, 22, 36, 0.08) 54%, rgba(7, 22, 36, 0.18)),
      linear-gradient(180deg, transparent 20%, rgba(7, 22, 36, 0.42) 100%);
  }

  .mobile-hero-alert {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    display: grid;
    gap: 3px;
    width: min(72%, 320px);
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid var(--red-2);
    border-radius: 8px;
    background: rgba(7, 22, 36, 0.72);
    backdrop-filter: blur(14px);
  }

  .mobile-hero-alert small {
    width: fit-content;
    color: var(--gold-2);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-hero-alert b {
    color: #fff;
    font-size: 21px;
    line-height: 1;
    font-weight: 950;
  }

  .mobile-hero-alert span {
    display: none;
  }

  .mobile-dispatch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .mobile-dispatch-grid span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 8px 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 11px;
    line-height: 1.08;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-dispatch-grid span::before {
    content: "";
    position: absolute;
    left: 9px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(245, 183, 47, 0.66);
  }

  .mobile-quality-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .mobile-quality-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 10px;
    font-weight: 950;
    line-height: 1.08;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-priority-timer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(112px, auto);
    gap: 12px;
    align-items: center;
    overflow: hidden;
    min-height: 86px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 0, 18, 0.34);
    border-radius: 16px;
    background:
      radial-gradient(circle at 86% 50%, rgba(255, 0, 18, 0.42), transparent 72px),
      linear-gradient(135deg, rgba(7, 22, 36, 0.92), rgba(47, 23, 58, 0.9));
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset,
      0 0 34px rgba(240, 0, 18, 0.14);
  }

  .mobile-priority-timer::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    pointer-events: none;
  }

  .mobile-priority-timer::after {
    content: "";
    position: absolute;
    right: -22px;
    top: 50%;
    width: 124px;
    height: 124px;
    border-radius: 999px;
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 22%, rgba(255, 0, 18, 0.12) 23% 45%, transparent 46% 100%);
    transform: translateY(-50%);
    pointer-events: none;
  }

  .mobile-priority-timer div {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .mobile-priority-timer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    color: var(--gold-2);
    font-size: 11px;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-priority-timer span::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #ff0018;
    box-shadow:
      0 0 0 5px rgba(255, 0, 18, 0.14),
      0 0 18px rgba(255, 0, 18, 0.72);
  }

  .mobile-priority-timer strong {
    display: flex;
    align-items: baseline;
    gap: 7px;
    color: #fff;
    font-family: "Inter Tight", "Manrope", Arial, sans-serif;
    font-weight: 950;
    line-height: 0.92;
  }

  .mobile-priority-timer b {
    font-size: 54px;
    letter-spacing: 0;
    text-shadow:
      0 2px 0 rgba(80, 0, 6, 0.28),
      0 0 22px rgba(255, 0, 18, 0.42);
  }

  .mobile-priority-timer small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-priority-timer p {
    position: relative;
    z-index: 1;
    max-width: 168px;
    margin: 0;
    justify-self: end;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 850;
    text-align: right;
  }

  .mobile-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .mobile-start-check,
  .mobile-hero-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    white-space: nowrap;
  }

  .mobile-start-check {
    position: relative;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    min-width: 0;
    min-height: 108px;
    overflow: visible;
    padding: 18px 16px;
    border: 0;
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.34), transparent 18px),
      linear-gradient(180deg, #ff0018 0%, #f00012 52%, #b30009 100%);
    color: #fff;
    font-size: 22px;
    line-height: 1.04;
    text-shadow: 0 1px 0 rgba(75, 0, 5, 0.28);
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.32) inset,
      0 0 0 7px rgba(255, 0, 18, 0.16),
      0 0 0 18px rgba(255, 0, 18, 0.08),
      0 24px 48px rgba(255, 0, 18, 0.48),
      0 12px 26px rgba(166, 0, 11, 0.4);
    animation: mobileCtaFlash 1.16s ease-in-out infinite;
    will-change: transform, filter, box-shadow;
  }

  .mobile-start-check::before {
    content: "";
    position: absolute;
    inset: -12px;
    border: 4px solid rgba(255, 0, 18, 0.74);
    border-radius: inherit;
    box-shadow:
      0 0 0 7px rgba(255, 0, 18, 0.08),
      0 0 42px rgba(255, 0, 18, 0.34);
    animation: pulseRing 1.08s ease-out infinite;
  }

  .mobile-start-check::after {
    content: "";
    position: absolute;
    inset: 8px 14px auto;
    height: 36%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
    pointer-events: none;
  }

  .mobile-start-check > * {
    position: relative;
    z-index: 1;
  }

  .mobile-start-check i {
    position: absolute;
    left: 28px;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    transform: translateY(-50%);
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    filter: drop-shadow(0 2px 0 rgba(103, 0, 7, 0.24));
  }

  .mobile-start-check span {
    max-width: calc(100% - 78px);
    text-align: center;
    white-space: normal;
  }

  .mobile-start-check small {
    max-width: calc(100% - 78px);
    color: rgba(255, 255, 255, 0.94);
    font-size: 13px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: none;
  }

  .mobile-hero-call {
    min-width: 0;
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
      radial-gradient(circle at 50% 0%, rgba(224, 0, 18, 0.16), transparent 42px),
      linear-gradient(180deg, #fff, #fff4f4);
    color: var(--navy);
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.46) inset,
      0 14px 30px rgba(0, 0, 0, 0.18),
      0 0 24px rgba(255, 0, 18, 0.16);
  }

  .form-topline {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 82px;
    padding: 13px 14px;
    border-bottom: 0;
    background:
      linear-gradient(115deg, rgba(7, 22, 36, 0.98), rgba(11, 46, 95, 0.96)),
      var(--navy);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .desktop-flow-logo {
    display: none;
  }

  .mobile-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-back-button[hidden] {
    display: none;
  }

  .status-copy b {
    color: #fff;
    font-size: 15px;
  }

  .status-copy span {
    color: var(--gold-2);
  }

  .timer-pill {
    min-width: 72px;
    min-height: 54px;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(215, 25, 32, 0.22);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 28px rgba(215, 25, 32, 0.18);
  }

  .timer-pill small {
    color: rgba(255, 255, 255, 0.82);
  }

  .timer-pill b {
    color: #fff;
    font-size: 24px;
  }

  .activation-screen,
  .step {
    padding: 22px 16px 104px;
  }

  .activation-screen h2,
  .step h2 {
    font-size: 29px;
  }

  .option-grid,
  .issue-grid,
  .detail-grid,
  .address-grid,
  .contact-fields,
  .contact-proof-row,
  .step-mini-grid {
    grid-template-columns: 1fr;
  }

  .option-card {
    min-height: 112px;
  }

  .address-step {
    padding-top: 24px;
  }

  .address-step::before {
    inset: 8px;
  }

  .address-step-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .address-step-header a {
    width: 100%;
    min-height: 44px;
  }

  .location-command-card {
    grid-template-columns: 1fr !important;
    gap: 13px;
    margin-top: 18px;
    padding: 13px;
    border-radius: 22px;
  }

  .location-command-head {
    min-height: auto;
    padding: 16px;
    border-radius: 18px;
  }

  .location-command-head strong {
    max-width: none;
    font-size: 25px;
    line-height: 1;
  }

  .location-command-head small {
    max-width: none;
    font-size: 13px;
  }

  .address-smart-field {
    grid-column: 1 / -1 !important;
    padding: 0;
  }

  .wide-field.address-smart-field {
    grid-column: 1 / -1 !important;
  }

  #serviceAddress {
    min-height: 76px;
    padding: 15px 14px 15px 66px;
    font-size: 18px;
    border-radius: 17px;
  }

  .address-search-badge {
    left: 15px;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: 18px;
  }

  .google-route-status {
    grid-column: 1 / -1 !important;
    grid-template-columns: auto 1fr;
    padding: 12px;
    border-radius: 15px;
  }

  .location-proof-row {
    grid-column: 1 / -1 !important;
    gap: 7px;
  }

  .location-proof-row span {
    min-height: 32px;
    padding: 0 9px;
    font-size: 10px;
  }

  .address-suggestions {
    max-height: 250px;
    border-radius: 15px;
  }

  .address-suggestion {
    min-height: 68px;
    padding: 13px 13px 13px 52px;
  }

  .address-suggestion::before {
    left: 15px;
    width: 22px;
    height: 22px;
  }

  .address-inline-note {
    grid-column: 1 / -1 !important;
    padding: 11px 12px;
    font-size: 12px;
  }

  .timing-step {
    padding-top: 24px;
  }

  .timing-step::before {
    inset: 8px;
  }

  .timing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .timing-asap {
    grid-column: auto;
  }

  .timing-card {
    grid-template-columns: 56px minmax(0, 1fr) 26px;
    min-height: 114px;
    padding: 13px 12px;
    border-radius: 14px;
  }

  .timing-card .timing-copy b {
    font-size: 17px;
  }

  .timing-card .timing-copy > span {
    font-size: 12.3px;
  }

  .timing-copy small,
  .timing-copy em {
    font-size: 10px;
  }

  .timing-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .timing-select {
    width: 26px;
    height: 26px;
  }

  .urgency-step::before {
    inset: 10px;
  }

  .urgency-grid {
    gap: 12px;
  }

  .urgency-card {
    grid-template-columns: 64px minmax(0, 1fr) 24px;
    gap: 12px;
    min-height: 136px;
    padding: 14px;
  }

  .urgency-unsure {
    grid-column: auto;
  }

  .urgency-icon {
    width: 60px;
    height: 60px;
  }

  .urgency-icon svg {
    width: 39px;
    height: 39px;
  }

  .urgency-card b {
    font-size: 17px;
  }

  .urgency-card .urgency-content > span {
    font-size: 12.8px;
  }

  .urgency-card em {
    min-height: 26px;
    padding: 5px 9px;
    font-size: 10.8px;
  }

  .urgency-select-indicator {
    width: 24px;
    height: 24px;
  }

  .zip-entry-panel {
    grid-template-columns: 1fr;
  }

  .area-result {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 13px;
    padding: 15px;
  }

  .area-result-icon {
    width: 54px;
    height: 54px;
  }

  .area-result strong {
    font-size: 16px;
  }

  .area-result span {
    font-size: 13px;
  }

  .zip-proof-card {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 92px;
    padding: 14px !important;
  }

  .zip-proof-visual {
    width: 68px;
    height: 68px;
    border-radius: 21px;
  }

  .zip-proof-visual svg {
    width: 50px;
    height: 50px;
  }

  .contact-final-hero {
    grid-template-columns: 1fr;
  }

  .coupon-card {
    min-height: 110px;
  }

  .form-actions {
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 10px;
    padding: 12px 14px;
  }

  .back-button,
  .inline-call-button,
  .next-button,
  .submit-button {
    min-height: 52px;
    padding: 0 14px;
    font-size: 13px;
  }

  .inline-call-button {
    min-width: 112px;
  }

  .next-button,
  .submit-button {
    min-height: 54px;
    font-size: 14px;
  }

  .conversion-band,
  .service-area-band {
    margin-top: 16px;
  }

  .service-area-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    background: #eef5fb;
  }

  .brand-bar {
    gap: 10px;
    min-height: 86px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 112px;
    min-width: 104px;
  }

  .brand-mark img {
    height: 66px;
  }

  .open-now-pill {
    min-height: 40px;
    padding: 0 12px;
    box-shadow: 0 8px 18px rgba(24, 185, 87, 0.12);
  }

  .open-now-pill strong {
    font-size: 12px;
  }

  .call-pill {
    min-height: 52px;
    min-width: 154px;
    padding: 0 16px;
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.26), transparent 12px),
      linear-gradient(180deg, #ff0018 0%, #e90010 52%, #b40009 100%);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.24) inset,
      0 16px 32px rgba(255, 0, 18, 0.34),
      0 0 26px rgba(255, 0, 18, 0.18);
  }

  .call-pill b {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
  }

  .assessment-page {
    padding: 10px;
  }

  .form-panel,
  .conversion-band,
  .service-area-band {
    border-radius: var(--radius);
  }

  .form-topline {
    gap: 9px;
    min-height: 70px;
  }

  .mobile-hero {
    gap: 9px;
    padding: 10px;
  }

  .mobile-hero-brand img {
    width: 62px;
    height: 52px;
  }

  .mobile-hero-brand b {
    font-size: 18px;
    line-height: 1.05;
  }

  .mobile-service-line {
    font-size: 10.5px;
  }

  .mobile-hero-stage {
    min-height: 104px;
  }

  .mobile-hero-stage img {
    height: 104px;
  }

  .mobile-hero-alert {
    left: 10px;
    bottom: 10px;
    width: min(76%, 300px);
    padding: 8px 10px;
  }

  .mobile-hero-alert b {
    font-size: 17px;
  }

  .mobile-hero-alert span {
    font-size: 11px;
  }

  .mobile-dispatch-grid {
    gap: 6px;
  }

  .mobile-dispatch-grid span {
    min-height: 32px;
    padding-left: 18px;
    font-size: 10px;
  }

  .mobile-quality-row {
    gap: 5px;
  }

  .mobile-quality-row span {
    min-height: 30px;
    padding: 0 5px;
    font-size: 9px;
  }

  .mobile-hero-actions {
    gap: 11px;
  }

  .mobile-start-check {
    font-size: 12.5px;
  }

  .mobile-start-check {
    min-height: 116px;
    padding: 20px 13px;
    font-size: 19px;
  }

  .mobile-start-check::before {
    inset: -9px;
    border-width: 3px;
  }

  .mobile-start-check i {
    left: 23px;
    width: 46px;
    height: 46px;
  }

  .mobile-start-check small {
    font-size: 12px;
  }

  .mobile-hero-call {
    min-width: 0;
    min-height: 56px;
    padding: 0 12px;
    font-size: 18px;
    letter-spacing: 0;
  }

  .status-copy span {
    font-size: 10px;
  }

  .status-copy b {
    max-width: 176px;
    font-size: 13px;
  }

  .activation-screen,
  .step {
    padding: 16px 14px 104px;
  }

  .activation-screen h2,
  .step h2 {
    font-size: 25px;
  }

  .step-copy,
  .activation-screen .step-copy {
    font-size: 15px;
    line-height: 1.48;
  }

  .activation-button {
    min-height: 116px;
    margin: 24px 0 20px;
    padding: 18px 14px;
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.32), transparent 18px),
      linear-gradient(180deg, #ff0018 0%, #f00012 52%, #b30009 100%);
    font-size: 23px;
    line-height: 1.05;
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.34) inset,
      0 0 0 8px rgba(255, 0, 18, 0.12),
      0 0 0 20px rgba(255, 0, 18, 0.08),
      0 24px 52px rgba(255, 0, 18, 0.46),
      0 12px 26px rgba(166, 0, 11, 0.38);
  }

  .activation-button::before {
    inset: -14px;
    border-width: 4px;
    box-shadow:
      0 0 0 7px rgba(255, 0, 18, 0.08),
      0 0 42px rgba(255, 0, 18, 0.34);
  }

  .activation-button::after {
    inset: 8px 14px auto;
    height: 36%;
  }

  .activation-button i {
    width: 13px;
    height: 13px;
    margin-bottom: 4px;
  }

  .activation-button span {
    max-width: 100%;
    text-align: center;
  }

  .activation-button small {
    font-size: 13px;
    line-height: 1.15;
  }

  .activation-callout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 17px 16px 16px 20px;
  }

  .activation-callout b {
    font-size: 18px;
  }

  .activation-callout a {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .activation-callout strong {
    font-size: 18px;
  }

  .proof-strip {
    display: none;
  }

  .safety-note {
    grid-template-columns: 1fr;
  }

  .estimate-panel div,
  .call-band {
    display: grid;
  }

  .estimate-panel div small {
    text-align: left;
  }

  .call-band a {
    width: 100%;
  }

  .timing-grid {
    gap: 12px;
  }

  .timing-card {
    grid-template-columns: 58px minmax(0, 1fr) 28px;
    gap: 13px;
    align-items: center;
    min-height: 112px;
    padding: 13px;
  }

  .timing-card::before {
    width: 5px;
  }

  .timing-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    border-radius: 16px;
  }

  .timing-copy {
    gap: 6px;
  }

  .timing-select {
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
  }

  .timing-asap {
    min-height: 116px;
  }

  .conversion-band,
  .service-area-band {
    padding: 20px 16px;
  }

  .section-head h2,
  .service-area-band h2 {
    font-size: 25px;
  }

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

  .failure-card {
    min-height: 350px;
    border-radius: 16px;
  }

  .conversion-grid b {
    font-size: 23px;
  }

  .conversion-grid p {
    font-size: 13px;
  }

  .failure-bullets {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .failure-bullets li {
    min-height: 39px;
    padding: 8px 12px 8px 43px;
    border-radius: 14px;
    font-size: 11.8px;
    line-height: 1.18;
  }

  .failure-content {
    gap: 10px;
    padding: 20px 20px 18px;
  }

  .sticky-emergency-bar {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 16px);
    bottom: 8px;
    padding: 8px;
    border-radius: var(--radius);
  }

  .sticky-emergency-bar button,
  .sticky-emergency-bar a {
    min-height: 48px;
    padding: 0 10px;
    border-radius: var(--radius);
    font-size: 12px;
  }

  .sticky-emergency-bar a {
    min-width: 0;
    padding: 0 8px 0 24px;
  }

  .sticky-emergency-bar a::after {
    left: 10px;
    width: 8px;
    height: 8px;
    box-shadow:
      0 0 0 4px rgba(255, 255, 255, 0.12),
      0 0 14px rgba(255, 255, 255, 0.72);
  }

  .sticky-emergency-bar a span {
    font-size: 11.5px;
  }

  .sticky-emergency-bar a small {
    font-size: 9px;
  }
}

@media (max-width: 430px) {
  .brand-bar {
    gap: 8px;
    min-height: 92px;
    padding: 10px 9px;
  }

  .brand-mark {
    width: 90px;
    min-width: 82px;
  }

  .brand-mark img {
    height: 62px;
  }

  .open-now-pill {
    min-height: 38px;
    padding: 0 9px;
    gap: 7px;
  }

  .open-now-pill strong {
    font-size: 11px;
  }

  .open-now-pill i {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
  }

  .call-pill {
    min-width: 152px;
    min-height: 52px;
    padding: 0 13px;
  }

  .call-pill b {
    font-size: 15.5px;
  }

  .urgency-card {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 14px 13px;
  }

  .urgency-select-indicator {
    position: absolute;
    top: 14px;
    right: 14px;
  }

  .urgency-card small {
    max-width: calc(100% - 34px);
    min-height: 25px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .urgency-icon {
    width: 56px;
    height: 56px;
  }

  .urgency-icon svg {
    width: 37px;
    height: 37px;
  }
}

@media (max-width: 370px) {
  .mobile-hero-call {
    min-height: 54px;
    font-size: 17px;
  }

  .brand-bar {
    gap: 7px;
    min-height: 88px;
    padding: 9px 7px;
  }

  .brand-mark {
    width: 78px;
    min-width: 74px;
  }

  .brand-mark img {
    height: 58px;
  }

  .open-now-pill {
    min-height: 36px;
    padding: 0 7px;
    gap: 6px;
  }

  .open-now-pill strong {
    font-size: 10px;
  }

  .open-now-pill i {
    width: 8px;
    height: 8px;
    flex-basis: 8px;
  }

  .call-pill {
    min-width: 146px;
    min-height: 50px;
    padding: 0 10px;
  }

  .call-pill b {
    font-size: 14.5px;
  }

  .urgency-step {
    padding-left: 12px;
    padding-right: 12px;
  }

  .urgency-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 12px;
  }

  .urgency-icon {
    width: 50px;
    height: 50px;
  }

  .urgency-icon svg {
    width: 34px;
    height: 34px;
  }

  .urgency-card b {
    font-size: 16px;
  }

  .urgency-card .urgency-content > span {
    font-size: 12px;
  }

  .urgency-card em {
    width: 100%;
    font-size: 10px;
  }

  .failure-card {
    min-height: 344px;
  }

  .conversion-grid b {
    font-size: 21px;
  }

  .conversion-grid p {
    font-size: 12px;
  }

  .failure-bullets li {
    min-height: 38px;
    padding: 8px 10px 8px 41px;
    font-size: 10.8px;
  }

  .area-result {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 11px;
    padding: 13px;
  }

  .area-result-icon {
    width: 48px;
    height: 48px;
  }

  .area-result strong {
    font-size: 15px;
  }

  .area-result span {
    font-size: 12px;
  }

  .zip-proof-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    padding: 12px !important;
  }

  .zip-proof-visual {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .zip-proof-visual svg {
    width: 43px;
    height: 43px;
  }
}

.zip-entry-panel {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 24px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(240, 0, 18, 0.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 0, 18, 0.1), transparent 160px),
    radial-gradient(circle at 100% 0%, rgba(245, 183, 47, 0.2), transparent 170px),
    linear-gradient(180deg, #fff, #fff9f4 56%, #ffffff);
  box-shadow:
    0 22px 46px rgba(7, 22, 36, 0.1),
    0 16px 32px rgba(240, 0, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.zip-entry-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245, 183, 47, 0.22);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.zip-control,
.zip-submit-inline {
  position: relative;
  z-index: 1;
}

.zip-control {
  gap: 10px;
}

.zip-control > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
}

.zip-control > span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow:
    0 0 0 5px rgba(240, 0, 18, 0.1),
    0 0 18px rgba(240, 0, 18, 0.48);
}

#zipCode {
  min-height: 78px;
  padding: 0 22px;
  border: 2px solid rgba(245, 183, 47, 0.94);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 183, 47, 0.12), transparent 110px),
    #fff;
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  box-shadow:
    0 0 0 5px rgba(245, 183, 47, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

#zipCode::placeholder {
  color: rgba(7, 22, 36, 0.48);
  font-weight: 950;
}

#zipCode:focus {
  border-color: #ff0018;
  box-shadow:
    0 0 0 5px rgba(240, 0, 18, 0.13),
    0 18px 34px rgba(240, 0, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.zip-submit-inline {
  min-height: 66px;
  border-radius: calc(var(--radius) + 2px);
  font-size: 17px;
  box-shadow:
    0 18px 34px rgba(215, 25, 32, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

@media (min-width: 980px) {
  .zip-entry-panel {
    padding: 22px;
  }

  #zipCode {
    min-height: 84px;
    font-size: 26px;
  }

  .zip-submit-inline {
    min-height: 70px;
    font-size: 18px;
  }
}

@media (max-width: 430px) {
  .zip-entry-panel {
    gap: 12px;
    padding: 16px;
  }

  .zip-control > span {
    font-size: 14px;
  }

  #zipCode {
    min-height: 76px;
    padding: 0 18px;
    font-size: 22px;
  }

  .zip-submit-inline {
    min-height: 64px;
    font-size: 16px;
  }
}

.thank-you-body {
  padding-bottom: 0;
}

.desktop-why-band {
  display: grid;
  grid-template-columns: minmax(440px, 0.92fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  max-width: 1240px;
  margin: 24px auto 0;
  padding: 34px 38px;
  border: 1px solid rgba(7, 22, 36, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 183, 47, 0.12), transparent 260px),
    radial-gradient(circle at 96% 0%, rgba(66, 133, 244, 0.11), transparent 280px),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-soft);
}

body:not(.is-form-start) .desktop-why-band {
  display: none;
}

.why-collage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  grid-template-rows: 190px 250px;
  gap: 12px;
  min-height: 452px;
}

.why-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: #dce7f1;
  box-shadow: 0 18px 34px rgba(7, 22, 36, 0.12);
}

.why-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(180deg, rgba(7, 22, 36, 0) 48%, rgba(7, 22, 36, 0.18) 100%);
  pointer-events: none;
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) contrast(1.04) saturate(1.04);
  transform: scale(1.02);
}

.why-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  max-width: calc(100% - 24px);
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-left: 4px solid var(--red);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #10233d;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(7, 22, 36, 0.16);
  backdrop-filter: blur(12px);
}

.why-photo-top {
  grid-column: 1;
  grid-row: 1;
}

.why-photo-top img {
  object-position: 45% 52%;
}

.why-photo-bottom {
  grid-column: 1;
  grid-row: 2;
}

.why-photo-bottom img {
  object-position: 46% 52%;
}

.why-photo-tall {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  height: 360px;
}

.why-photo-tall img {
  object-position: 70% 50%;
}

.why-stat {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 174px;
  height: 174px;
  padding: 18px;
  border: 6px solid #ffffff;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 48px),
    linear-gradient(145deg, #071624, #111a5f);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -48%);
  box-shadow:
    0 20px 42px rgba(7, 22, 36, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.why-stat b {
  display: block;
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 40px;
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
}

.why-stat span {
  display: block;
  max-width: 116px;
  font-size: 16px;
  line-height: 1.05;
  font-weight: 850;
}

.why-copy {
  display: grid;
  gap: 16px;
  max-width: 700px;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(245, 183, 47, 0.34);
  border-radius: 999px;
  background: rgba(245, 183, 47, 0.12);
  color: #704d00;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.why-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(224, 0, 18, 0.1);
}

.why-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

.why-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.52;
  font-weight: 650;
}

.why-checks {
  display: grid;
  gap: 12px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.why-checks li {
  position: relative;
  min-height: 28px;
  padding-left: 34px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.why-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #071624, #172966);
  box-shadow: 0 8px 18px rgba(7, 22, 36, 0.16);
}

.why-checks li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.why-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.why-badges span {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  padding: 10px;
  border: 1px solid rgba(7, 22, 36, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.92), transparent 34px),
    linear-gradient(180deg, #ffffff, #eef5fb);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 16px 28px rgba(7, 22, 36, 0.1);
}

.why-badges span:first-child {
  border-color: rgba(224, 0, 18, 0.2);
  color: var(--red);
}

.why-badges span:last-child {
  border-color: rgba(245, 183, 47, 0.42);
  color: #704d00;
}

.why-badges b {
  display: block;
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 28px;
  line-height: 0.95;
  font-weight: 950;
}

.why-badges small {
  display: block;
  max-width: 76px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .desktop-why-band {
    display: none;
  }
}

.google-reviews-band {
  max-width: 1240px;
  margin: 24px auto 0;
  padding: 30px;
  border: 1px solid rgba(7, 22, 36, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 183, 47, 0.14), transparent 260px),
    radial-gradient(circle at 100% 0%, rgba(66, 133, 244, 0.12), transparent 260px),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow-soft);
}

body:not(.is-form-start) .google-reviews-band {
  display: none;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.reviews-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(66, 133, 244, 0.18);
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.07);
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.reviews-kicker img,
.reviews-score img,
.review-card-top img {
  object-fit: contain;
}

.reviews-kicker img {
  width: 20px;
  height: 20px;
}

.reviews-head h2 {
  margin: 12px 0 0;
  max-width: 760px;
  color: var(--ink);
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 38px;
  line-height: 1.02;
  font-weight: 950;
}

.reviews-head p {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 750;
}

.reviews-score {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 154px;
  padding: 16px;
  border: 1px solid rgba(245, 183, 47, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.85), transparent 50px),
    linear-gradient(180deg, #fff7df, #fff);
  box-shadow: 0 16px 32px rgba(245, 183, 47, 0.12);
}

.reviews-score img {
  width: 30px;
  height: 30px;
}

.reviews-score b {
  color: var(--ink);
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

.reviews-score span,
.review-stars {
  color: #f6b21f;
  letter-spacing: 1px;
}

.reviews-score small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.reviews-shell {
  position: relative;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  display: grid;
  grid-template-rows: auto minmax(142px, 1fr) auto;
  gap: 16px;
  min-height: 322px;
  padding: 18px;
  border: 1px solid rgba(7, 22, 36, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 0, 18, 0.05), transparent 120px),
    #fff;
  box-shadow:
    0 12px 26px rgba(7, 22, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-stars {
  font-size: 19px;
  line-height: 1;
  white-space: nowrap;
}

.review-card-top img {
  width: 24px;
  height: 24px;
}

.review-card p {
  margin: 0;
  color: #536174;
  font-size: 15px;
  line-height: 1.52;
  font-weight: 800;
}

.review-card mark {
  padding: 0;
  background: transparent;
  color: #3b82f6;
  font-weight: 950;
}

.review-author {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(7, 22, 36, 0.08);
}

.review-author > img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(7, 22, 36, 0.14);
}

.review-author b {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.05;
  font-weight: 950;
}

.review-author b i {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #3aa3ff;
}

.review-author b i::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.review-author span {
  display: block;
  margin-top: 3px;
  color: #5f6672;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 950;
}

.reviews-arrow {
  display: none;
}

.desktop-guarantee-band {
  max-width: 1240px;
  margin: 22px auto 0;
  padding: 34px 36px 40px;
  border: 1px solid rgba(7, 22, 36, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow:
    0 18px 38px rgba(7, 22, 36, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

body:not(.is-form-start) .desktop-guarantee-band {
  display: none;
}

.guarantee-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.guarantee-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid rgba(245, 183, 47, 0.34);
  border-radius: 999px;
  background: #fff7dc;
  color: #775104;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.guarantee-copy h2 {
  max-width: 720px;
  margin: 13px 0 0;
  color: var(--ink);
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 42px;
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.guarantee-copy p {
  margin: 9px 0 0;
  color: #2d3540;
  font-size: 18px;
  font-weight: 650;
}

.guarantee-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: end;
  margin-top: 36px;
}

.guarantee-badge {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 282px;
  padding: 24px 18px 58px;
  isolation: isolate;
  color: #fff;
  text-align: center;
  filter: drop-shadow(0 16px 22px rgba(7, 22, 36, 0.14));
}

.guarantee-badge::before,
.guarantee-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  clip-path: polygon(11% 0, 89% 0, 100% 9%, 100% 58%, 50% 100%, 0 58%, 0 9%);
}

.guarantee-badge::before {
  background:
    linear-gradient(180deg, #a4a4a4 0%, #858585 58%, #777777 100%);
}

.guarantee-badge::after {
  inset: 8px;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(180deg, #9a9a9a 0%, #7e7e7e 62%, #707070 100%);
  clip-path: polygon(11% 0, 89% 0, 100% 9%, 100% 58%, 50% 100%, 0 58%, 0 9%);
}

.guarantee-badge img {
  width: 56px;
  height: 56px;
  margin-bottom: 6px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.18));
}

.guarantee-badge strong,
.guarantee-badge b {
  display: block;
  color: #fff;
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.guarantee-badge strong {
  margin-top: 3px;
  font-size: 44px;
  font-weight: 950;
  line-height: 0.9;
}

.guarantee-badge b {
  font-size: 28px;
  font-weight: 900;
  line-height: 0.96;
}

.guarantee-badge-warranty strong {
  margin-top: 10px;
  font-size: 30px;
  line-height: 0.98;
}

.guarantee-badge-warranty b {
  margin-top: 3px;
  font-size: 24px;
}

.guarantee-badge em {
  position: absolute;
  left: -8px;
  right: -8px;
  top: 152px;
  display: grid;
  min-height: 39px;
  place-items: center;
  border-radius: 2px;
  background:
    linear-gradient(180deg, #15184c 0%, #07092e 100%);
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow:
    0 9px 14px rgba(7, 22, 36, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.guarantee-badge em::before,
.guarantee-badge em::after {
  content: "";
  position: absolute;
  bottom: -7px;
  border-top: 7px solid #050626;
}

.guarantee-badge em::before {
  left: 0;
  border-left: 8px solid transparent;
}

.guarantee-badge em::after {
  right: 0;
  border-right: 8px solid transparent;
}

.guarantee-badge small {
  position: absolute;
  top: 201px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1100px) {
  .reviews-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .desktop-guarantee-band {
    display: none;
  }
}

@media (max-width: 760px) {
  .google-reviews-band {
    margin-top: 14px;
    padding: 18px 12px 20px;
  }

  .reviews-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }

  .reviews-head h2 {
    font-size: 28px;
  }

  .reviews-head p {
    font-size: 13.5px;
  }

  .reviews-score {
    grid-template-columns: auto auto 1fr;
    justify-items: start;
    align-items: center;
    min-width: 0;
    padding: 12px;
  }

  .reviews-score img {
    width: 26px;
    height: 26px;
  }

  .reviews-score b {
    font-size: 28px;
  }

  .reviews-score span {
    font-size: 14px;
  }

  .reviews-score small {
    grid-column: 1 / -1;
    text-align: left;
  }

  .reviews-shell {
    padding-bottom: 54px;
  }

  .reviews-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 2px 12px;
  }

  .reviews-carousel::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 min(82vw, 326px);
    grid-template-rows: auto auto auto;
    scroll-snap-align: center;
    min-height: 302px;
  }

  .reviews-arrow {
    position: absolute;
    bottom: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(7, 22, 36, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 26px rgba(7, 22, 36, 0.16);
  }

  .reviews-prev {
    right: 56px;
  }

  .reviews-next {
    right: 4px;
  }

  .reviews-arrow span {
    width: 11px;
    height: 11px;
    border: solid var(--navy);
    border-width: 0 3px 3px 0;
  }

  .reviews-prev span {
    transform: rotate(135deg);
    margin-left: 4px;
  }

  .reviews-next span {
    transform: rotate(-45deg);
    margin-right: 4px;
  }
}

@media (max-width: 430px) {
  .reviews-kicker {
    width: 100%;
    justify-content: center;
    font-size: 11px;
  }

  .review-card {
    flex-basis: min(86vw, 314px);
    min-height: 306px;
    padding: 16px;
  }

  .review-card p {
    font-size: 14px;
  }

  .review-author b {
    font-size: 15px;
  }
}

.proof-coupon-pill {
  border-color: rgba(240, 0, 18, 0.26);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.9), transparent 28px),
    linear-gradient(180deg, #fff2d3, #ffe29a);
  color: #4b1d05;
  box-shadow:
    0 12px 24px rgba(240, 0, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-coupon-ticket,
.mobile-coupon-ticket,
.activation-coupon-lock,
.zip-coupon-ribbon {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 0, 18, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.42), transparent 90px),
    radial-gradient(circle at 100% 0%, rgba(245, 183, 47, 0.34), transparent 120px),
    linear-gradient(135deg, #fff8e8 0%, #fff 48%, #fff1f2 100%);
  box-shadow:
    0 18px 38px rgba(240, 0, 18, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.hero-coupon-ticket::before,
.mobile-coupon-ticket::before,
.activation-coupon-lock::before,
.zip-coupon-ribbon::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #ff0018, #f5b72f);
  box-shadow: 0 0 22px rgba(240, 0, 18, 0.4);
}

.hero-coupon-ticket span,
.mobile-coupon-ticket span,
.activation-coupon-lock > span,
.zip-coupon-ribbon span {
  color: var(--red);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.hero-coupon-ticket b,
.mobile-coupon-ticket b,
.activation-coupon-lock b,
.zip-coupon-ribbon b {
  color: var(--navy);
  font-weight: 950;
  line-height: 1.05;
}

.hero-coupon-ticket small,
.mobile-coupon-ticket small,
.activation-coupon-lock small {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.25;
}

.hero-coupon-ticket {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 14px;
  align-items: center;
  width: min(420px, 100%);
  margin-top: 18px;
  padding: 13px 16px 13px 18px;
}

.hero-coupon-ticket span {
  grid-column: 1 / -1;
  font-size: 11px;
  letter-spacing: 0;
}

.hero-coupon-ticket b {
  color: #fff;
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 34px;
  text-shadow: 0 2px 12px rgba(7, 22, 36, 0.3);
}

.hero-coupon-ticket small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.media-overlay .hero-coupon-ticket {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.18), transparent 110px),
    radial-gradient(circle at 100% 0%, rgba(245, 183, 47, 0.24), transparent 140px),
    linear-gradient(135deg, rgba(240, 0, 18, 0.92), rgba(114, 15, 40, 0.92));
  box-shadow:
    0 18px 40px rgba(240, 0, 18, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.media-overlay .hero-coupon-ticket span {
  color: #ffe978;
}

.mobile-coupon-ticket {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 10px;
  align-items: center;
  padding: 12px 13px 12px 16px;
}

.mobile-coupon-ticket > span {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 50px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ff0018, #c90010);
  color: #fff;
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 20px;
  box-shadow: 0 12px 24px rgba(240, 0, 18, 0.24);
}

.mobile-coupon-ticket b {
  font-size: 15px;
}

.mobile-coupon-ticket small {
  font-size: 11.5px;
}

.activation-coupon-lock {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 14px 16px 14px 18px;
}

.activation-coupon-lock > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.32), transparent 28px),
    linear-gradient(180deg, #ff0018, #c90010);
  color: #fff;
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 26px;
  box-shadow: 0 15px 28px rgba(240, 0, 18, 0.26);
}

.activation-coupon-lock div {
  display: grid;
  gap: 4px;
}

.activation-coupon-lock b {
  font-size: 18px;
}

.activation-coupon-lock small {
  font-size: 12.5px;
}

.zip-coupon-ribbon {
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 14px 12px 18px;
  border-color: rgba(240, 0, 18, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 183, 47, 0.22), transparent 110px),
    linear-gradient(135deg, #fff, #fff3d6 48%, #fff);
}

.zip-coupon-ribbon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 38px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ff0018, #c90010);
  color: #fff;
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 20px;
}

.zip-coupon-ribbon b {
  font-size: 14px;
}

@media (max-width: 620px) {
  .activation-coupon-lock {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .activation-coupon-lock > span {
    min-height: 52px;
    font-size: 24px;
  }
}

@media (max-width: 430px) {
  .mobile-coupon-ticket {
    padding: 10px 11px 10px 15px;
  }

  .mobile-coupon-ticket > span {
    min-width: 66px;
    min-height: 46px;
    font-size: 18px;
  }

  .mobile-coupon-ticket b {
    font-size: 14px;
  }

  .mobile-coupon-ticket small {
    font-size: 10.8px;
  }

  .activation-coupon-lock {
    margin-top: 14px;
    padding: 12px;
  }

  .zip-coupon-ribbon {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 12px;
  }

  .zip-coupon-ribbon span {
    width: 100%;
  }
}

.ty-topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 12px 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.ty-logo {
  display: flex;
  align-items: center;
  width: 154px;
  text-decoration: none;
}

.ty-logo img {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.ty-live-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(24, 185, 87, 0.32);
  border-radius: 999px;
  background: rgba(24, 185, 87, 0.08);
  color: #05371c;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.ty-live-status i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(24, 185, 87, 0.13);
}

.ty-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.24);
}

.ty-call span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ty-call b {
  font-size: 15px;
  font-weight: 950;
}

.ty-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 30px 44px;
}

.ty-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: stretch;
}

.ty-copy,
.ty-media,
.ty-summary,
.ty-next,
.ty-call-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.ty-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 460px;
  padding: 38px;
}

.ty-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.1);
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ty-copy h1 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 48px;
  line-height: 0.98;
  font-weight: 950;
}

.ty-copy p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
  font-weight: 750;
}

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

.ty-primary,
.ty-secondary,
.ty-call-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
}

.ty-primary {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff;
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.24);
}

.ty-secondary {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--navy);
}

.ty-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: #0b1727;
}

.ty-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.ty-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 22, 36, 0.76) 100%);
}

.ty-media div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(7, 22, 36, 0.62);
  color: #fff;
  backdrop-filter: blur(14px);
}

.ty-media span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ty-media b {
  font-size: 21px;
  font-weight: 950;
}

.ty-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 20px;
  padding: 0;
  background: var(--line);
  overflow: hidden;
}

.ty-summary div {
  display: grid;
  gap: 7px;
  min-height: 100px;
  padding: 18px;
  background: #fff;
}

.ty-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ty-summary b {
  color: var(--navy);
  font-size: 16px;
  font-weight: 950;
}

.ty-next {
  margin-top: 20px;
  padding: 28px;
}

.ty-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.ty-next-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.ty-next-grid em {
  color: var(--red);
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

.ty-next-grid b {
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
}

.ty-next-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 750;
}

.ty-call-band {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 24px;
  background: linear-gradient(90deg, rgba(11, 46, 95, 0.95), rgba(7, 22, 36, 0.95));
  color: #fff;
}

.ty-call-band div {
  display: grid;
  gap: 6px;
}

.ty-call-band span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ty-call-band b {
  font-size: 24px;
  font-weight: 950;
}

.ty-call-band a {
  background: #fff;
  color: var(--navy);
}

@media (max-width: 980px) {
  .ty-topbar {
    min-height: 74px;
    padding: 10px 16px;
  }

  .ty-logo {
    width: 126px;
  }

  .ty-live-status {
    display: none;
  }

  .ty-call {
    margin-left: auto;
    min-height: 44px;
    padding: 0 13px;
  }

  .ty-call span {
    display: none;
  }

  .ty-page {
    padding: 16px 14px 30px;
  }

  .ty-hero {
    grid-template-columns: 1fr;
  }

  .ty-copy {
    min-height: auto;
    padding: 26px 20px;
  }

  .ty-copy h1 {
    font-size: 36px;
  }

  .ty-media,
  .ty-media img {
    min-height: 320px;
  }

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

  .ty-next-grid {
    grid-template-columns: 1fr;
  }

  .ty-call-band {
    display: grid;
  }
}

@media (max-width: 620px) {
  .ty-topbar {
    gap: 10px;
  }

  .ty-logo {
    width: 106px;
  }

  .ty-call b {
    font-size: 12px;
  }

  .ty-copy h1 {
    font-size: 31px;
  }

  .ty-copy p {
    font-size: 15px;
  }

  .ty-actions {
    display: grid;
  }

  .ty-summary {
    grid-template-columns: 1fr;
  }

  .ty-call-band b {
    font-size: 20px;
  }
}

.thank-you-body {
  background:
    radial-gradient(circle at 12% 0%, rgba(240, 0, 18, 0.12), transparent 320px),
    radial-gradient(circle at 88% 4%, rgba(245, 183, 47, 0.18), transparent 340px),
    linear-gradient(180deg, #edf4fb 0%, #f8fbff 52%, #edf4fb 100%);
}

.thank-you-body .ty-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom-color: rgba(11, 46, 95, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(7, 22, 36, 0.08);
  backdrop-filter: blur(18px);
}

.thank-you-body .ty-logo {
  width: 170px;
}

.thank-you-body .ty-live-status {
  min-height: 46px;
  border-color: rgba(24, 185, 87, 0.36);
  background:
    radial-gradient(circle at 8% 50%, rgba(24, 185, 87, 0.18), transparent 34px),
    rgba(24, 185, 87, 0.08);
}

.thank-you-body .ty-call {
  min-height: 54px;
  padding: 0 22px;
  box-shadow: 0 18px 34px rgba(215, 25, 32, 0.28);
}

.thank-you-body .ty-page {
  max-width: 1320px;
  padding: 30px 28px 48px;
}

.thank-you-body .ty-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  background: #071624;
  box-shadow:
    0 28px 70px rgba(7, 22, 36, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.ty-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ty-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 36, 0.94) 0%, rgba(7, 22, 36, 0.78) 42%, rgba(7, 22, 36, 0.34) 100%),
    radial-gradient(circle at 24% 18%, rgba(240, 0, 18, 0.3), transparent 250px),
    linear-gradient(180deg, rgba(7, 22, 36, 0.06), rgba(7, 22, 36, 0.72));
}

.thank-you-body .ty-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
  width: min(780px, 72%);
  min-height: 0;
  padding: clamp(32px, 5vw, 70px);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.thank-you-body .ty-kicker {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.18), transparent 25px),
    linear-gradient(90deg, rgba(240, 0, 18, 0.92), rgba(181, 0, 12, 0.9));
  color: #fff;
  box-shadow: 0 14px 28px rgba(240, 0, 18, 0.22);
}

.thank-you-body .ty-copy h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(44px, 4.5vw, 66px);
  line-height: 0.92;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.thank-you-body .ty-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.55;
}

.ty-response-card {
  display: grid;
  gap: 7px;
  width: min(640px, 100%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 5px solid #ff0018;
  border-radius: 18px;
  background:
    radial-gradient(circle at 95% 0%, rgba(245, 183, 47, 0.2), transparent 130px),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.ty-response-card span {
  color: #ffd95e;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ty-response-card b {
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
}

.ty-response-card small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.thank-you-body .ty-actions {
  gap: 14px;
  margin-top: 4px;
}

.thank-you-body .ty-primary,
.thank-you-body .ty-secondary {
  min-height: 60px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 15px;
}

.thank-you-body .ty-primary {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.34), transparent 30px),
    linear-gradient(180deg, #ff1426, #d40012);
  box-shadow:
    0 20px 42px rgba(240, 0, 18, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.thank-you-body .ty-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(14px);
}

.ty-hero-confirmation {
  position: absolute;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 52px);
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(360px, 34%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 183, 47, 0.24), transparent 120px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  color: #fff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.ty-hero-confirmation span {
  color: #ffd95e;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ty-hero-confirmation b {
  font-size: 24px;
  line-height: 1.12;
  font-weight: 950;
}

.ty-hero-confirmation small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
}

.thank-you-body .ty-summary,
.thank-you-body .ty-next,
.ty-service-photos,
.ty-reviews-band,
.thank-you-body .ty-call-band {
  margin-top: 22px;
  border-radius: 24px;
}

.thank-you-body .ty-summary {
  border-color: rgba(11, 46, 95, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(7, 22, 36, 0.1);
}

.thank-you-body .ty-summary div {
  min-height: 108px;
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 183, 47, 0.12), transparent 90px),
    #fff;
}

.thank-you-body .ty-next,
.ty-service-photos,
.ty-reviews-band {
  padding: 30px;
  border: 1px solid rgba(7, 22, 36, 0.1);
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 183, 47, 0.12), transparent 260px),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow-soft);
}

.thank-you-body .ty-next-grid article {
  min-height: 154px;
  border-color: rgba(11, 46, 95, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.98));
  box-shadow: 0 12px 26px rgba(7, 22, 36, 0.06);
}

.ty-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.ty-photo-grid article {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  background: #071624;
  box-shadow: 0 18px 38px rgba(7, 22, 36, 0.14);
}

.ty-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 315px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.ty-photo-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 36, 0.08) 0%, rgba(7, 22, 36, 0.84) 100%),
    radial-gradient(circle at 0% 0%, rgba(240, 0, 18, 0.28), transparent 180px);
}

.ty-photo-grid article:hover img {
  transform: scale(1.04);
}

.ty-photo-grid div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #fff;
}

.ty-photo-grid span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #d70b10;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.ty-photo-grid b {
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
}

.ty-photo-grid small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}

.ty-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.ty-reviews-grid .review-card {
  min-height: 296px;
}

.thank-you-body .ty-call-band {
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 80% 0%, rgba(240, 0, 18, 0.3), transparent 230px),
    linear-gradient(90deg, #071624 0%, #122b55 58%, #352033 100%);
  box-shadow: 0 22px 52px rgba(7, 22, 36, 0.18);
}

.thank-you-body .ty-call-band a {
  min-height: 58px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.34), transparent 26px),
    linear-gradient(180deg, #ff1426, #d40012);
  color: #fff;
  box-shadow: 0 18px 34px rgba(240, 0, 18, 0.28);
}

@media (max-width: 1040px) {
  .thank-you-body .ty-copy {
    width: min(760px, 100%);
  }

  .ty-hero-confirmation {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    width: auto;
    margin: 0 24px 24px;
  }

  .thank-you-body .ty-hero {
    min-height: 720px;
  }

  .ty-photo-grid,
  .ty-reviews-grid {
    grid-template-columns: 1fr;
  }

  .ty-photo-grid article,
  .ty-photo-grid img {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .thank-you-body .ty-topbar {
    min-height: 80px;
    padding: 10px 12px;
  }

  .thank-you-body .ty-logo {
    width: 112px;
  }

  .thank-you-body .ty-call {
    min-height: 48px;
    padding: 0 14px;
  }

  .thank-you-body .ty-page {
    padding: 14px 10px 28px;
  }

  .thank-you-body .ty-hero {
    min-height: 620px;
    border-radius: 22px;
  }

  .ty-hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 22, 36, 0.94) 0%, rgba(7, 22, 36, 0.72) 54%, rgba(7, 22, 36, 0.86) 100%),
      radial-gradient(circle at 22% 16%, rgba(240, 0, 18, 0.32), transparent 210px);
  }

  .thank-you-body .ty-copy {
    padding: 24px 18px 4px;
  }

  .thank-you-body .ty-copy h1 {
    font-size: 40px;
  }

  .thank-you-body .ty-copy p {
    font-size: 16px;
  }

  .ty-response-card {
    padding: 14px;
  }

  .ty-response-card b {
    font-size: 19px;
  }

  .ty-response-card small {
    font-size: 12px;
  }

  .thank-you-body .ty-primary,
  .thank-you-body .ty-secondary {
    min-height: 52px;
    width: 100%;
  }

  .thank-you-body .ty-summary {
    grid-template-columns: 1fr;
  }

  .thank-you-body .ty-next,
  .ty-service-photos,
  .ty-reviews-band {
    padding: 20px 14px;
    border-radius: 20px;
  }

  .ty-photo-grid article,
  .ty-photo-grid img {
    min-height: 250px;
  }

  .ty-reviews-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 2px 12px;
  }

  .ty-reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .ty-reviews-grid .review-card {
    flex: 0 0 min(84vw, 326px);
    scroll-snap-align: center;
  }

  .thank-you-body .ty-call-band {
    padding: 22px 16px;
  }
}

@media (max-width: 430px) {
  .thank-you-body .ty-copy h1 {
    font-size: 34px;
  }

  .ty-hero-confirmation {
    margin: 0 12px 14px;
    padding: 14px;
  }

  .ty-hero-confirmation b {
    font-size: 18px;
  }

  .ty-hero-confirmation small {
    font-size: 12px;
  }
}

.problem-step {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 3%, rgba(240, 0, 18, 0.08), transparent 230px),
    radial-gradient(circle at 100% 12%, rgba(245, 183, 47, 0.16), transparent 250px),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.problem-step::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(7, 22, 36, 0.06);
  border-radius: calc(var(--radius) + 6px);
  pointer-events: none;
}

.problem-step > * {
  position: relative;
  z-index: 1;
}

.problem-step-kicker {
  border-color: rgba(245, 183, 47, 0.34);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.9), transparent 28px),
    linear-gradient(180deg, rgba(245, 183, 47, 0.18), rgba(255, 255, 255, 0.86));
  color: #6a4a02;
}

.problem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.issue-card {
  --issue-color: var(--navy-2);
  --issue-deep: var(--navy);
  --issue-soft: rgba(18, 62, 118, 0.1);
  --issue-glow: rgba(18, 62, 118, 0.18);
  position: relative;
  isolation: isolate;
  grid-template-columns: 70px minmax(0, 1fr) 28px;
  gap: 14px;
  align-items: center;
  min-height: 136px;
  overflow: hidden;
  padding: 17px 16px;
  border-color: rgba(7, 22, 36, 0.1);
  background:
    radial-gradient(circle at 4% 0%, var(--issue-soft), transparent 150px),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.92), transparent 160px),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow:
    0 16px 36px rgba(7, 22, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.issue-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--issue-color), rgba(245, 183, 47, 0.84));
  box-shadow: 0 0 28px var(--issue-glow);
}

.issue-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.96), transparent);
}

.issue-card:hover,
.issue-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--issue-color);
  box-shadow:
    0 22px 46px rgba(7, 22, 36, 0.12),
    0 0 0 4px var(--issue-soft);
}

.issue-card.is-selected {
  border-color: var(--issue-color);
  background:
    radial-gradient(circle at 4% 0%, var(--issue-soft), transparent 160px),
    linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  box-shadow:
    0 22px 46px var(--issue-glow),
    0 0 0 4px var(--issue-soft);
}

.issue-danger {
  --issue-color: #f00012;
  --issue-deep: #8d030b;
  --issue-soft: rgba(240, 0, 18, 0.14);
  --issue-glow: rgba(240, 0, 18, 0.26);
  border-color: rgba(240, 0, 18, 0.22);
}

.issue-cable {
  --issue-color: #f05a1a;
  --issue-deep: #7b2504;
  --issue-soft: rgba(240, 90, 26, 0.13);
  --issue-glow: rgba(240, 90, 26, 0.22);
}

.issue-track {
  --issue-color: #d71920;
  --issue-deep: #7f090f;
  --issue-soft: rgba(215, 25, 32, 0.13);
  --issue-glow: rgba(215, 25, 32, 0.24);
}

.issue-sensor {
  --issue-color: #f5a400;
  --issue-deep: #6a4a02;
  --issue-soft: rgba(245, 183, 47, 0.17);
  --issue-glow: rgba(245, 183, 47, 0.22);
}

.issue-panel {
  --issue-color: var(--teal);
  --issue-deep: #075866;
  --issue-soft: rgba(13, 138, 159, 0.12);
  --issue-glow: rgba(13, 138, 159, 0.18);
}

.issue-unsure {
  --issue-color: #6a7485;
  --issue-deep: #283447;
  --issue-soft: rgba(106, 116, 133, 0.11);
  --issue-glow: rgba(106, 116, 133, 0.16);
}

.issue-icon,
.issue-copy,
.issue-select-indicator {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: normal;
}

.issue-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.96), transparent 28px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), var(--issue-soft));
  color: var(--issue-color);
  box-shadow:
    0 14px 28px var(--issue-glow),
    inset 0 0 0 1px var(--issue-soft);
}

.issue-icon::before,
.issue-icon::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.issue-spring .issue-icon::before {
  width: 35px;
  height: 21px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  background: repeating-linear-gradient(90deg, transparent 0 5px, currentColor 5px 7px, transparent 7px 12px);
}

.issue-spring .issue-icon::after {
  right: 13px;
  bottom: 13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff0018;
  box-shadow: 0 0 0 4px rgba(240, 0, 18, 0.12), 0 0 14px rgba(240, 0, 18, 0.44);
}

.issue-cable .issue-icon::before {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(17deg);
  box-shadow: 0 10px 0 rgba(11, 46, 95, 0.82);
}

.issue-cable .issue-icon::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    -18px -5px 0 var(--issue-color),
    18px 5px 0 var(--issue-color),
    0 0 0 3px rgba(240, 90, 26, 0.12);
}

.issue-track .issue-icon::before {
  width: 34px;
  height: 34px;
  border: 3px solid var(--navy);
  border-top-color: var(--issue-color);
  border-radius: 5px;
  transform: rotate(-5deg);
}

.issue-track .issue-icon::after {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: var(--issue-color);
  transform: rotate(33deg);
}

.issue-opener .issue-icon::before {
  width: 26px;
  height: 38px;
  border: 3px solid var(--navy);
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 34%, var(--issue-color) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 58%, var(--issue-color) 0 3px, transparent 4px);
}

.issue-opener .issue-icon::after {
  top: 13px;
  right: 12px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--issue-color);
  border-right: 3px solid var(--issue-color);
  border-radius: 0 12px 0 0;
}

.issue-sensor .issue-icon::before {
  width: 12px;
  height: 12px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow: 22px 0 0 -3px #fff, 22px 0 0 0 var(--navy);
}

.issue-sensor .issue-icon::after {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--issue-color), transparent 72%, var(--issue-color));
}

.issue-panel .issue-icon::before {
  width: 34px;
  height: 34px;
  border: 3px solid var(--navy);
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 47%, var(--issue-color) 47% 54%, transparent 54%),
    linear-gradient(180deg, transparent 47%, var(--issue-color) 47% 54%, transparent 54%);
}

.issue-panel .issue-icon::after {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: var(--issue-color);
  transform: rotate(-24deg);
}

.issue-unsure .issue-icon::before {
  content: "?";
  position: static;
  color: var(--issue-color);
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
}

.issue-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.issue-card small {
  min-height: 27px;
  padding: 6px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--issue-soft));
  color: var(--issue-deep);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(7, 22, 36, 0.05);
}

.issue-danger small {
  background: linear-gradient(180deg, #ff2738 0%, #d90010 100%);
  color: #fff;
  text-shadow: 0 1px 0 rgba(96, 0, 7, 0.28);
}

.issue-card b {
  font-size: 18px;
  line-height: 1.08;
}

.issue-card .issue-copy > span {
  color: #526278;
  font-size: 13.5px;
  line-height: 1.36;
  font-weight: 820;
}

.issue-select-indicator {
  position: relative;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(7, 22, 36, 0.18);
  border-radius: 50%;
  background: #fff;
  box-shadow:
    inset 0 0 0 4px rgba(7, 22, 36, 0.03),
    0 0 0 4px rgba(255, 255, 255, 0.72);
}

.issue-card.is-selected .issue-select-indicator {
  border-color: var(--issue-color);
  background: var(--issue-color);
  box-shadow: 0 0 0 6px var(--issue-soft), 0 8px 18px var(--issue-glow);
}

.issue-card.is-selected .issue-select-indicator::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

@media (max-width: 980px) {
  .problem-step::before {
    inset: 10px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 22px;
  }

  .issue-card {
    grid-template-columns: 64px minmax(0, 1fr) 26px;
    min-height: 134px;
    padding: 15px;
  }

  .issue-icon {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 430px) {
  .problem-grid {
    gap: 13px;
  }

  .issue-card {
    grid-template-columns: 56px minmax(0, 1fr) 24px;
    gap: 11px;
    min-height: 132px;
    padding: 13px 12px;
  }

  .issue-icon {
    width: 52px;
    height: 52px;
  }

  .issue-card small {
    max-width: calc(100% - 32px);
    min-height: 25px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .issue-card b {
    font-size: 16px;
  }

  .issue-card .issue-copy > span {
    font-size: 12.2px;
  }

  .issue-select-indicator {
    width: 24px;
    height: 24px;
  }
}

.open-now-pill {
  gap: 6px;
  min-height: 46px;
  padding: 4px;
  border: 1px solid rgba(240, 0, 18, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.96), transparent 38px),
    linear-gradient(180deg, #fff8f8 0%, #fff 100%);
  color: var(--ink);
  box-shadow:
    0 12px 26px rgba(240, 0, 18, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.open-now-pill .emergency-service-badge,
.open-now-pill .arrival-speed-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0;
}

.open-now-pill .emergency-service-badge {
  gap: 8px;
  padding: 0 13px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.28), transparent 12px),
    linear-gradient(180deg, #ff0018 0%, #e30011 54%, #b5000a 100%);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 10px 22px rgba(240, 0, 18, 0.28);
}

.open-now-pill .emergency-service-badge i {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.18),
    0 0 16px rgba(255, 255, 255, 0.76);
}

.open-now-pill .emergency-service-badge strong {
  color: inherit;
  font-size: 12.5px;
  font-weight: 950;
  line-height: 1;
}

.open-now-pill .arrival-speed-badge {
  padding: 0 12px;
  border: 1px solid rgba(245, 183, 47, 0.46);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.8), transparent 25px),
    linear-gradient(180deg, #ffe59a 0%, #f5b72f 100%);
  color: #1c2740;
  font-size: 12px;
  font-weight: 950;
  box-shadow:
    0 10px 22px rgba(245, 183, 47, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

@media (max-width: 980px) {
  .open-now-pill {
    min-height: 46px;
    padding: 4px;
    box-shadow:
      0 12px 26px rgba(240, 0, 18, 0.13),
      inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    display: inline-flex;
  }

  .open-now-pill .emergency-service-badge strong {
    font-size: 12px;
  }

  .open-now-pill .arrival-speed-badge {
    font-size: 11.5px;
  }
}

@media (max-width: 620px) {
  .open-now-pill {
    gap: 4px;
    max-width: 178px;
    min-height: 72px;
    padding: 5px;
    border-radius: 22px;
    flex-direction: column;
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    width: 100%;
    min-height: 29px;
    padding: 0 9px;
  }

  .open-now-pill .emergency-service-badge {
    gap: 6px;
  }

  .open-now-pill .emergency-service-badge i {
    width: 8px;
    height: 8px;
    flex-basis: 8px;
  }

  .open-now-pill .emergency-service-badge strong {
    font-size: 10.5px;
  }

  .open-now-pill .arrival-speed-badge {
    font-size: 11px;
  }
}

@media (max-width: 430px) {
  .brand-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    row-gap: 8px;
    padding-right: 16px;
    padding-left: 14px;
    overflow: visible;
  }

  .brand-mark {
    grid-column: 1;
    grid-row: 1;
  }

  .call-pill {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: clamp(136px, 38vw, 158px);
    min-width: 0;
    max-width: 100%;
    min-height: 50px;
    padding: 0 12px;
    margin-left: 0;
  }

  .call-pill b {
    font-size: clamp(14px, 4vw, 16px);
  }

  .open-now-pill {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    flex-direction: row;
    max-width: none;
    min-height: 44px;
    border-radius: 999px;
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    min-height: 34px;
  }

  .open-now-pill .emergency-service-badge strong {
    font-size: 10.3px;
  }

  .open-now-pill .arrival-speed-badge {
    font-size: 10.8px;
  }
}

@media (max-width: 370px) {
  .brand-bar {
    grid-template-columns: minmax(84px, auto) minmax(0, 1fr);
    column-gap: 8px;
    padding-right: 12px;
    padding-left: 10px;
  }

  .brand-mark {
    width: 96px;
    min-width: 88px;
  }

  .brand-mark img {
    height: 58px;
  }

  .call-pill {
    width: min(140px, 100%);
    min-height: 48px;
    padding: 0 10px;
  }

  .call-pill b {
    font-size: 14px;
  }

  .open-now-pill {
    gap: 4px;
    min-height: 42px;
    padding: 4px;
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    min-height: 32px;
    padding: 0 6px;
  }

  .open-now-pill .emergency-service-badge {
    gap: 4px;
  }

  .open-now-pill .emergency-service-badge i {
    width: 7px;
    height: 7px;
    flex-basis: 7px;
  }

  .open-now-pill .emergency-service-badge strong {
    font-size: 9.5px;
  }

  .open-now-pill .arrival-speed-badge {
    font-size: 10px;
  }
}

@media (min-width: 981px) {
  .brand-bar {
    display: grid;
    grid-template-columns: minmax(170px, auto) minmax(360px, 0.9fr) auto auto;
    gap: clamp(18px, 2.1vw, 34px);
    min-height: 128px;
    padding: 16px clamp(34px, 4vw, 74px);
    overflow: hidden;
    border-bottom: 1px solid rgba(11, 46, 95, 0.12);
    background:
      radial-gradient(circle at 8% 0%, rgba(245, 183, 47, 0.2), transparent 220px),
      radial-gradient(circle at 82% 0%, rgba(240, 0, 18, 0.1), transparent 260px),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.94) 100%);
    box-shadow:
      0 18px 42px rgba(7, 22, 36, 0.08),
      inset 0 -1px 0 rgba(255, 255, 255, 0.86);
  }

  .brand-bar::before {
    content: "";
    position: absolute;
    left: clamp(28px, 3.6vw, 70px);
    right: clamp(28px, 3.6vw, 70px);
    bottom: 11px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 0, 18, 0.18), rgba(245, 183, 47, 0.22), transparent);
    pointer-events: none;
  }

  .brand-bar > * {
    position: relative;
    z-index: 1;
  }

  .brand-mark {
    width: clamp(150px, 9vw, 184px);
    min-width: clamp(150px, 9vw, 184px);
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .brand-mark img {
    width: auto;
    height: clamp(104px, 7.2vw, 116px);
    max-height: none;
    flex: 0 0 auto;
    object-fit: contain;
  }

  .brand-mark-copy {
    display: none;
    gap: 4px;
    min-width: 0;
    color: var(--navy);
    text-transform: uppercase;
  }

  .brand-mark-copy strong {
    font-family: var(--display);
    font-size: 33px;
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: 0;
  }

  .brand-mark-copy small {
    color: #b58a0c;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .open-now-pill {
    justify-self: center;
    gap: 10px;
    min-height: 76px;
    padding: 7px;
    border: 1px solid rgba(240, 0, 18, 0.32);
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.94), transparent 56px),
      linear-gradient(180deg, #fff7f7 0%, #ffffff 100%);
    box-shadow:
      0 20px 44px rgba(240, 0, 18, 0.16),
      inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    min-height: 60px;
    padding: 0 clamp(18px, 1.5vw, 28px);
    border-radius: 999px;
  }

  .open-now-pill .emergency-service-badge {
    gap: 12px;
    background:
      radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.34), transparent 16px),
      linear-gradient(180deg, #ff0018 0%, #e60013 52%, #b3000b 100%);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.26) inset,
      0 18px 34px rgba(240, 0, 18, 0.34),
      0 0 34px rgba(240, 0, 18, 0.2);
  }

  .open-now-pill .emergency-service-badge i {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.18),
      0 0 20px rgba(255, 255, 255, 0.9);
  }

  .open-now-pill .emergency-service-badge strong {
    font-size: 16px;
    font-weight: 950;
  }

  .open-now-pill .arrival-speed-badge {
    border: 1px solid rgba(245, 183, 47, 0.56);
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.86), transparent 32px),
      linear-gradient(180deg, #ffea9f 0%, #f5b72f 100%);
    color: #1c2740;
    font-size: 15px;
    font-weight: 950;
    box-shadow:
      0 18px 32px rgba(245, 183, 47, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.64);
  }

  .desktop-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    justify-self: end;
    gap: 8px;
    margin-left: 0;
    padding: 7px;
    border: 1px solid rgba(11, 46, 95, 0.08);
    border-radius: 26px;
    background:
      radial-gradient(circle at 50% 0%, rgba(245, 183, 47, 0.14), transparent 80px),
      linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.72));
    box-shadow:
      0 18px 38px rgba(7, 22, 36, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  .desktop-proof > .proof-signal {
    position: relative;
    min-height: 58px;
    padding: 0 13px 0 10px;
    border-color: rgba(11, 46, 95, 0.08);
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92));
    box-shadow:
      0 10px 22px rgba(7, 22, 36, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      border-color 180ms ease;
  }

  .desktop-proof > .proof-signal:hover {
    transform: translateY(-1px);
    border-color: rgba(240, 0, 18, 0.18);
    box-shadow:
      0 16px 30px rgba(7, 22, 36, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .proof-signal i {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border: 1px solid rgba(11, 46, 95, 0.1);
    background:
      radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.94), transparent 12px),
      linear-gradient(180deg, #eaf3ff, #ffffff);
    box-shadow:
      0 12px 20px rgba(11, 46, 95, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-size: 10.5px;
  }

  .proof-signal b {
    font-size: 11.2px;
    letter-spacing: 0.02em;
  }

  .proof-signal small {
    font-size: 10px;
    letter-spacing: 0;
  }

  .desktop-proof .proof-coupon-pill {
    border-color: rgba(245, 183, 47, 0.52);
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.96), transparent 46px),
      linear-gradient(180deg, #fff0ad, #ffffff 86%);
    box-shadow:
      0 14px 28px rgba(245, 183, 47, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .desktop-proof .proof-coupon-pill i {
    border-color: rgba(245, 183, 47, 0.55);
    background:
      radial-gradient(circle at 38% 24%, rgba(255, 255, 255, 0.84), transparent 12px),
      linear-gradient(180deg, #ffd86a, #f5b72f);
    color: #10233d;
    box-shadow:
      0 12px 24px rgba(245, 183, 47, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.54);
  }

  .desktop-proof .proof-price i {
    background:
      radial-gradient(circle at 38% 24%, rgba(255, 255, 255, 0.9), transparent 12px),
      linear-gradient(180deg, #e9fff3, #ffffff);
    color: #08733a;
  }

  .call-pill {
    justify-self: end;
    min-width: 342px;
    min-height: 76px;
    gap: 16px;
    padding: 0 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.28), transparent 40px),
      linear-gradient(180deg, #ff0018 0%, #e60013 52%, #b3000b 100%);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.24) inset,
      0 24px 48px rgba(240, 0, 18, 0.34),
      0 0 46px rgba(240, 0, 18, 0.18);
  }

  .call-pill::before {
    content: "";
    position: absolute;
    inset: 9px 14px auto;
    height: 32%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
    pointer-events: none;
  }

  .call-pill::after {
    content: "";
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    order: -1;
    border-radius: 999px;
    background: #fff;
    box-shadow:
      0 0 0 7px rgba(255, 255, 255, 0.16),
      0 0 22px rgba(255, 255, 255, 0.9);
  }

  .call-pill span,
  .call-pill b {
    position: relative;
    z-index: 1;
  }

  .call-pill span {
    display: inline-flex;
    font-size: 12.5px;
    font-weight: 950;
    line-height: 1;
  }

  .call-pill b {
    font-family: var(--display);
    font-size: 25px;
    font-weight: 950;
    line-height: 0.95;
  }
}

@media (min-width: 1400px) and (max-width: 1480px) {
  .brand-bar {
    grid-template-columns: minmax(132px, 150px) minmax(330px, 0.82fr) minmax(330px, 1fr) minmax(286px, auto);
    gap: 14px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .brand-mark {
    min-width: 150px;
    padding-right: 0;
  }

  .brand-mark img {
    width: auto;
    height: 104px;
    flex-basis: auto;
  }

  .brand-mark-copy strong {
    font-size: 28px;
  }

  .desktop-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    justify-self: end;
    width: min(360px, 100%);
    padding: 6px;
    border-radius: 22px;
  }

  .call-pill {
    min-width: 286px;
    padding: 0 22px;
  }

  .desktop-proof > .proof-signal {
    min-height: 50px;
    justify-content: center;
    gap: 6px;
    padding: 0 7px;
    border-radius: 17px;
  }

  .desktop-proof .proof-signal i {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 9px;
  }

  .desktop-proof .proof-signal b {
    font-size: 9.6px;
    white-space: normal;
    text-align: left;
  }

  .desktop-proof .proof-signal small {
    display: none;
  }

  .call-pill b {
    font-size: 22px;
  }
}

@media (min-width: 981px) and (max-width: 1399px) {
  .desktop-proof {
    display: none;
  }
}

@media (min-width: 981px) {
  .form-panel {
    overflow: hidden;
  }

  .form-topline {
    position: relative;
    grid-template-columns: minmax(76px, auto) minmax(0, 1fr) minmax(150px, 180px);
    grid-template-areas:
      "back logo timer"
      "status status status"
      "proof proof proof";
    gap: 16px 18px;
    min-height: 0;
    padding: 24px 30px;
    overflow: hidden;
    border-bottom: 0;
    background:
      radial-gradient(circle at 10% 0%, rgba(255, 0, 18, 0.24), transparent 230px),
      radial-gradient(circle at 90% 0%, rgba(245, 183, 47, 0.2), transparent 240px),
      linear-gradient(135deg, #071624 0%, #122b55 62%, #352033 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 40px rgba(7, 22, 36, 0.18);
  }

  .form-topline::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    pointer-events: none;
  }

  .form-topline::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff0018, #f5b72f 58%, rgba(255, 255, 255, 0.1));
    pointer-events: none;
  }

  .desktop-flow-logo {
    position: relative;
    z-index: 1;
    grid-area: logo;
    display: flex;
    width: 132px;
    min-height: 122px;
    align-items: center;
    justify-content: center;
    justify-self: start;
    align-self: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .topline-back-button {
    position: relative;
    z-index: 1;
    grid-area: back;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 76px;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.24), transparent 26px),
      rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 16px 30px rgba(0, 0, 0, 0.16);
  }

  .topline-back-button[hidden] {
    display: none;
  }

  .desktop-flow-logo img {
    width: auto;
    height: 112px;
    max-height: none;
    filter:
      drop-shadow(0 12px 24px rgba(0, 0, 0, 0.34))
      drop-shadow(0 0 12px rgba(255, 255, 255, 0.12));
  }

  .status-copy {
    position: relative;
    z-index: 1;
    grid-area: status;
    align-content: center;
    gap: 8px;
    min-height: 0;
    max-width: 100%;
    padding-top: 2px;
  }

  .status-copy span {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(245, 183, 47, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffe08a;
    font-size: 12px;
    letter-spacing: 0;
  }

  .status-copy span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff0018;
    box-shadow: 0 0 0 5px rgba(255, 0, 18, 0.16), 0 0 18px rgba(255, 0, 18, 0.7);
  }

  .status-copy b {
    display: block;
    max-width: 100%;
    color: #ffffff;
    font-family: var(--display);
    font-size: clamp(28px, 2vw, 38px);
    line-height: 1.12;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .status-copy em {
    display: block;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
  }

  .timer-pill {
    position: relative;
    z-index: 1;
    grid-area: timer;
    justify-self: stretch;
    min-width: 0;
    min-height: 104px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.24), transparent 42px),
      linear-gradient(180deg, rgba(255, 0, 18, 0.96), rgba(182, 0, 12, 0.96));
    color: #fff;
    box-shadow:
      0 24px 44px rgba(240, 0, 18, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  }

  .timer-pill small {
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    letter-spacing: 0;
  }

  .timer-pill b {
    color: #fff;
    font-size: clamp(48px, 4vw, 72px);
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  }

  .topline-proof {
    position: relative;
    z-index: 1;
    grid-area: proof;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
    gap: 10px;
    align-content: stretch;
    min-height: 54px;
  }

  .topline-proof span,
  .topline-proof a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
  }

  .topline-proof span {
    border: 1px solid rgba(245, 183, 47, 0.42);
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.75), transparent 28px),
      linear-gradient(180deg, #ffefb4, #f5b72f);
    color: #4c3500;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(245, 183, 47, 0.18);
  }

  .topline-proof a {
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .topline-proof a::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14), 0 0 16px rgba(255, 255, 255, 0.7);
  }

  .progress-track {
    height: 10px;
    background: rgba(7, 22, 36, 0.1);
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .form-topline {
    grid-template-columns: 76px minmax(0, 1fr) minmax(126px, 142px);
    grid-template-areas:
      "back logo timer"
      "status status status";
    gap: 12px;
    min-height: 0;
    padding: 20px;
  }

  .topline-proof {
    display: none;
  }

  .desktop-flow-logo {
    width: 102px;
    min-height: 100px;
    padding: 0;
  }

  .desktop-flow-logo img {
    width: auto;
    height: 92px;
    max-height: none;
  }

  .status-copy {
    gap: 7px;
    min-width: 0;
  }

  .status-copy span {
    padding: 7px 10px;
    font-size: 11px;
  }

  .status-copy b {
    font-size: clamp(27px, 2.8vw, 34px);
    line-height: 1.12;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .status-copy em {
    max-width: 360px;
    font-size: 13px;
    line-height: 1.28;
  }

  .timer-pill {
    min-height: 94px;
    padding: 12px;
    border-radius: 20px;
  }

  .timer-pill small {
    font-size: 10px;
  }

  .timer-pill b {
    font-size: clamp(46px, 4.4vw, 60px);
  }
}

@media (min-width: 981px) {
  .smart-form .form-actions,
  .form-actions {
    grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr) !important;
  }

  .smart-form .form-actions .back-button,
  .form-actions .back-button {
    display: none;
  }

  .smart-form.is-contact .form-actions {
    position: relative;
    bottom: auto;
    z-index: 1;
    grid-template-columns: 180px minmax(0, 1fr) !important;
    gap: 16px;
    margin: 22px 30px 30px;
    padding: 18px;
    border: 1px solid rgba(240, 0, 18, 0.18);
    border-radius: calc(var(--radius) + 4px);
    background:
      radial-gradient(circle at 0% 50%, rgba(245, 183, 47, 0.24), transparent 190px),
      radial-gradient(circle at 100% 0%, rgba(255, 0, 18, 0.16), transparent 220px),
      linear-gradient(135deg, rgba(7, 22, 36, 0.96), rgba(24, 35, 68, 0.96));
    box-shadow:
      0 24px 48px rgba(7, 22, 36, 0.22),
      0 18px 34px rgba(240, 0, 18, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .smart-form.is-contact .inline-call-button {
    min-width: 0;
    min-height: 62px;
    border-color: rgba(255, 255, 255, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07)),
      linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(245, 183, 47, 0.07));
    color: #fff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 12px 24px rgba(0, 0, 0, 0.14);
  }

  .smart-form.is-contact .submit-button {
    position: relative;
    min-height: 68px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: calc(var(--radius) + 2px);
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.38), transparent 34px),
      linear-gradient(180deg, #ff2638 0%, #f00012 46%, #b8000c 100%);
    color: #fff;
    font-size: 19px;
    font-weight: 950;
    box-shadow:
      0 18px 34px rgba(240, 0, 18, 0.42),
      0 0 0 6px rgba(240, 0, 18, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  .smart-form.is-contact .submit-button::after {
    content: "";
    position: absolute;
    inset: 8px 12px auto;
    height: 34%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent);
    pointer-events: none;
  }
}

.details-step {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 0, 18, 0.08), transparent 230px),
    radial-gradient(circle at 100% 5%, rgba(245, 183, 47, 0.17), transparent 250px),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.details-step::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(7, 22, 36, 0.06);
  border-radius: calc(var(--radius) + 6px);
  pointer-events: none;
}

.details-step > * {
  position: relative;
  z-index: 1;
}

.details-step-kicker {
  border-color: rgba(245, 183, 47, 0.36);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.9), transparent 28px),
    linear-gradient(180deg, rgba(245, 183, 47, 0.2), rgba(255, 255, 255, 0.88));
  color: #6a4a02;
}

.details-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.details-speed-card {
  display: grid;
  gap: 4px;
  min-width: 188px;
  padding: 13px 15px;
  border: 1px solid rgba(240, 0, 18, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.96), transparent 36px),
    linear-gradient(180deg, #fff7f8 0%, #fff 100%);
  box-shadow:
    0 14px 30px rgba(240, 0, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.details-speed-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.details-speed-card b {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.08;
}

.details-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
}

.details-select-panel,
.details-estimate-card {
  border: 1px solid rgba(7, 22, 36, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 16px 36px rgba(7, 22, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.details-select-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-color: rgba(240, 0, 18, 0.14);
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 0, 18, 0.08), transparent 180px),
    radial-gradient(circle at 100% 0%, rgba(245, 183, 47, 0.13), transparent 170px),
    rgba(255, 255, 255, 0.95);
}

.details-panel-head {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.details-panel-head i {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.95), transparent 24px),
    linear-gradient(145deg, #fff, rgba(240, 0, 18, 0.12));
  box-shadow: 0 12px 24px rgba(240, 0, 18, 0.16);
}

.details-panel-head i::before {
  content: "";
  width: 28px;
  height: 24px;
  border: 3px solid var(--navy);
  border-top-color: var(--red);
  border-radius: 5px;
}

.details-panel-head i::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(240, 0, 18, 0.12);
}

.details-panel-head b {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.12;
}

.details-panel-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 800;
}

.details-step .detail-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.details-select-card {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(11, 46, 95, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 183, 47, 0.11), transparent 95px),
    #fff;
}

.details-select-card > span {
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 950;
  text-transform: uppercase;
}

.details-select-card select {
  min-height: 50px;
  border-color: rgba(11, 46, 95, 0.2);
  background-color: #f9fbfe;
  font-size: 16px;
}

.details-door-next-card {
  display: grid;
  gap: 8px;
  padding: 10px 10px 12px;
  border: 1px solid rgba(240, 0, 18, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.92), transparent 42px),
    radial-gradient(circle at 100% 0%, rgba(240, 0, 18, 0.12), transparent 130px),
    linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
  box-shadow:
    0 14px 30px rgba(240, 0, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.details-door-next-card .detail-primary-next {
  min-height: 62px;
  border-radius: var(--radius);
  font-size: 15px;
}

.details-door-next-card > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
  text-align: center;
}

.details-estimate-card {
  position: relative;
  gap: 9px;
  margin-top: 0;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 0, 18, 0.1), transparent 180px),
    linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
}

.details-estimate-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #ff0018, #f5b72f);
  box-shadow: 0 0 24px rgba(240, 0, 18, 0.28);
}

.details-estimate-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  justify-self: start;
  width: fit-content;
  min-height: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff2738, #d90010);
  color: #fff;
  font-size: 10.5px;
  line-height: 1;
}

.details-estimate-card h3 {
  font-size: 23px;
  line-height: 1.1;
}

.details-estimate-card p {
  font-size: 13px;
  line-height: 1.45;
}

.details-estimate-card div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 2px;
  padding: 12px 0 0;
}

.details-estimate-card div small {
  text-align: left;
}

.details-inline-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.2), transparent 70px),
    radial-gradient(circle at 96% 0%, rgba(240, 0, 18, 0.34), transparent 180px),
    linear-gradient(135deg, #08182d 0%, #102f5d 54%, #371422 100%);
  box-shadow:
    0 18px 34px rgba(7, 22, 36, 0.18),
    inset 4px 0 0 #ff0018,
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.details-inline-actions > div {
  grid-column: 1 / -1;
}

.details-inline-actions > div b {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.15;
}

.details-inline-actions > div span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 820;
}

.details-inline-actions a,
.detail-primary-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 16px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 950;
  width: 100%;
}

.details-inline-actions a {
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.details-inline-actions a span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.details-inline-actions a b {
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.detail-primary-next {
  min-width: 0;
  padding: 0 18px;
  border: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.28), transparent 28px),
    linear-gradient(180deg, #ff0018 0%, #e00012 52%, #b8000c 100%);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(240, 0, 18, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

@media (max-width: 980px) {
  .details-step {
    padding-bottom: 24px;
  }

  .details-hero-row,
  .details-workbench,
  .details-inline-actions {
    grid-template-columns: 1fr;
  }

  .details-speed-card {
    min-width: 0;
  }

}

@media (max-width: 620px) {
  .details-step {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .details-step h2 {
    font-size: 25px;
  }

  .details-workbench {
    gap: 12px;
    margin-top: 14px;
  }

  .details-select-panel,
  .details-estimate-card {
    padding: 13px;
  }

  .details-panel-head {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
  }

  .details-panel-head i {
    width: 44px;
    height: 44px;
  }

  .details-panel-head b {
    font-size: 16px;
  }

  .details-select-card {
    padding: 10px;
  }

  .details-select-card select {
    min-height: 48px;
    font-size: 15.5px;
  }

  .details-estimate-card h3 {
    font-size: 20px;
  }

  .details-inline-actions {
    gap: 10px;
    padding: 12px;
  }

  .detail-primary-next {
    min-height: 56px;
    font-size: 15px;
  }
}

/* Call-only page refinements keep the original visual language while keeping the phone CTA above the fold. */
@media (min-width: 981px) {
  .form-topline {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "logo status timer";
    gap: 12px;
    padding: 14px 22px;
  }

  .desktop-flow-logo {
    width: 78px;
    min-height: 72px;
  }

  .desktop-flow-logo img {
    height: 68px;
  }

  .status-copy {
    gap: 6px;
  }

  .status-copy span {
    padding: 7px 11px;
    font-size: 11px;
  }

  .status-copy b {
    font-size: clamp(24px, 1.8vw, 31px);
  }

  .status-copy em {
    font-size: 13px;
  }

  .timer-pill {
    width: 138px;
    min-height: 76px;
    padding: 10px 14px;
  }

  .timer-pill b {
    font-size: clamp(42px, 3.2vw, 54px);
  }

  .topline-proof {
    display: none;
  }

  body.is-form-start .smart-form {
    flex: 0 0 auto;
  }

  .activation-screen {
    align-content: start;
    min-height: 0;
    padding: 32px 28px 24px;
  }

  .activation-screen h2 {
    font-size: 31px;
  }

  .activation-screen .step-copy {
    margin-top: 10px;
  }

  .activation-coupon-lock {
    margin-top: 12px;
  }

  .activation-button {
    min-height: 96px;
    margin-top: 10px;
  }
}

@media (max-width: 980px) {
  .brand-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    row-gap: 8px;
    column-gap: 10px;
    overflow: hidden;
  }

  .brand-mark {
    grid-column: 1;
    grid-row: 1;
  }

  .call-pill {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: clamp(152px, 38vw, 220px);
    min-width: 0;
    max-width: 100%;
    margin-left: 0;
  }

  .open-now-pill {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .mobile-coupon-ticket,
  .mobile-priority-timer,
  .mobile-hero-actions,
  .mobile-start-check {
    max-width: 100%;
    min-width: 0;
  }

  .mobile-coupon-ticket small,
  .mobile-priority-timer p,
  .mobile-start-check span,
  .mobile-start-check small {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mobile-priority-timer {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mobile-priority-timer::after {
    display: none;
  }

  .mobile-priority-timer p {
    max-width: none;
    justify-self: start;
    text-align: left;
  }

  .mobile-start-check {
    overflow: hidden;
    text-align: center;
    min-height: 118px;
  }
}

@media (max-width: 980px) {
  .desktop-why-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 16px 10px 0;
    padding: 16px 14px 18px;
    overflow: hidden;
  }

  .why-collage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    grid-template-rows: 118px 132px;
    gap: 8px;
    min-height: 258px;
  }

  .why-photo {
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(7, 22, 36, 0.12);
  }

  .why-photo-top {
    grid-column: 1;
    grid-row: 1;
  }

  .why-photo-bottom {
    grid-column: 1;
    grid-row: 2;
  }

  .why-photo-tall {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
    height: auto;
  }

  .why-stat {
    width: 136px;
    height: 136px;
    padding: 14px;
    border-width: 5px;
    transform: translate(-50%, -45%);
  }

  .why-stat b {
    font-size: 30px;
  }

  .why-stat span {
    max-width: 92px;
    font-size: 11.5px;
  }

  .why-copy {
    gap: 13px;
    max-width: none;
  }

  .why-eyebrow {
    min-height: 32px;
    padding: 0 11px;
    font-size: 10px;
  }

  .why-copy h2 {
    font-size: 31px;
    line-height: 1.02;
  }

  .why-copy p {
    font-size: 15px;
    line-height: 1.48;
  }

  .why-checks {
    gap: 10px;
  }

  .why-checks li {
    min-height: 24px;
    padding-left: 30px;
    font-size: 14.5px;
    line-height: 1.38;
  }

  .why-checks li::before {
    top: 1px;
    width: 22px;
    height: 22px;
  }

  .why-checks li::after {
    left: 7px;
    top: 6px;
  }

  .why-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
  }

  .why-badges span {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 92px;
    padding: 10px 6px;
  }

  .why-badges b {
    font-size: 27px;
  }

  .why-badges small {
    max-width: 72px;
    font-size: 9px;
  }
}

@media (max-width: 370px) {
  .why-collage {
    grid-template-rows: 106px 120px;
    min-height: 234px;
  }

  .why-stat {
    width: 118px;
    height: 118px;
  }

  .why-stat b {
    font-size: 27px;
  }

  .why-copy h2 {
    font-size: 28px;
  }

  .why-checks li {
    font-size: 13.5px;
  }
}

@media (max-width: 620px) {
  .desktop-why-band {
    margin: 14px 8px 0;
    padding: 14px 12px 16px;
  }

  .why-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    min-height: 0;
  }

  .why-photo,
  .why-photo-top,
  .why-photo-bottom,
  .why-photo-tall {
    grid-column: 1;
    grid-row: auto;
    align-self: stretch;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .why-photo {
    box-shadow: 0 12px 22px rgba(7, 22, 36, 0.1);
  }

  .why-photo img {
    transform: none;
  }

  .why-photo figcaption {
    left: 10px;
    bottom: 10px;
    min-height: 26px;
    max-width: calc(100% - 20px);
    padding: 0 9px;
    font-size: 10px;
    line-height: 1.05;
    white-space: normal;
  }

  .why-stat {
    position: static;
    display: flex;
    width: 100%;
    height: auto;
    min-height: 66px;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-width: 4px;
    border-radius: 16px;
    transform: none;
  }

  .why-stat b {
    font-size: 31px;
    line-height: 0.95;
  }

  .why-stat span {
    max-width: 150px;
    font-size: 12px;
    line-height: 1.08;
    text-align: left;
  }
}

@media (min-width: 421px) and (max-width: 620px) {
  .why-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 176px 148px 66px;
  }

  .why-photo,
  .why-photo-top,
  .why-photo-bottom,
  .why-photo-tall {
    aspect-ratio: auto;
    height: 100%;
  }

  .why-photo-top {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .why-photo-bottom {
    grid-column: 1;
    grid-row: 2;
  }

  .why-photo-tall {
    grid-column: 2;
    grid-row: 2;
  }

  .why-stat {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 980px) {
  .brand-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 12px;
    column-gap: 12px;
    align-items: center;
    min-height: 0;
    padding: 14px 14px 12px;
    border: 1px solid rgba(7, 22, 36, 0.12);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: #ffffff;
    box-shadow:
      0 10px 28px rgba(7, 22, 36, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .brand-mark {
    grid-column: 1;
    grid-row: 1;
    width: min(178px, 48vw);
    min-width: 0;
    align-self: center;
  }

  .brand-mark img {
    width: 100%;
    height: auto;
    max-height: 76px;
    object-fit: contain;
  }

  .call-pill {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
    width: auto;
    min-height: 52px;
    gap: 9px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.28), transparent 20px),
      linear-gradient(180deg, #ff101f 0%, #e00012 56%, #b0000a 100%);
    box-shadow:
      0 2px 0 rgba(120, 0, 8, 0.16),
      0 10px 20px rgba(224, 0, 18, 0.26);
  }

  .call-pill::before {
    content: "\260E";
    position: static;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
  }

  .call-pill::after {
    display: none;
  }

  .call-pill span {
    display: none;
  }

  .call-pill b {
    color: #ffffff;
    font-size: clamp(16px, 4.4vw, 22px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0;
  }

  .open-now-pill {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 0;
    justify-self: stretch;
    min-height: 54px;
    max-width: none;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(7, 22, 36, 0.12);
    border-radius: 12px;
    background: #ffffff;
    color: #263447;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }

  .open-now-pill span,
  .open-now-pill strong,
  .open-now-pill .arrival-speed-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    color: #1a2637;
    font-size: clamp(11px, 2.8vw, 14px);
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    min-height: 54px;
    gap: 9px;
    padding: 0 10px;
  }

  .open-now-pill .emergency-service-badge {
    position: relative;
  }

  .open-now-pill .emergency-service-badge::after {
    content: "";
    position: absolute;
    top: 13px;
    right: 0;
    bottom: 13px;
    width: 1px;
    background: rgba(7, 22, 36, 0.12);
  }

  .open-now-pill .emergency-service-badge i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #e72a31, #c90814);
    box-shadow: 0 8px 16px rgba(224, 0, 18, 0.18);
  }

  .open-now-pill .emergency-service-badge i::before {
    content: "\2713";
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
    line-height: 1;
  }

  .open-now-pill .arrival-speed-badge::before {
    content: "\25F7";
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffc84a, #e6a91c);
    color: #ffffff;
    font-size: 19px;
    font-weight: 950;
    box-shadow: 0 8px 16px rgba(245, 183, 47, 0.2);
  }
}

@media (max-width: 420px) {
  .brand-bar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand-mark {
    width: min(148px, 40vw);
  }

  .call-pill {
    min-height: 48px;
    padding: 0 14px;
  }

  .call-pill b {
    font-size: 16px;
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    gap: 7px;
    padding: 0 7px;
  }

  .open-now-pill span,
  .open-now-pill strong,
  .open-now-pill .arrival-speed-badge {
    font-size: 10.2px;
  }

  .open-now-pill .emergency-service-badge i,
  .open-now-pill .arrival-speed-badge::before {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

.mobile-coupon-ticket,
.activation-coupon-lock {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-height: 94px;
  padding: 11px 16px 11px 12px;
  overflow: hidden;
  border: 1px solid rgba(10, 42, 76, 0.17);
  border-radius: 10px;
  background: #ffffff;
  box-shadow:
    0 9px 22px rgba(7, 22, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.activation-coupon-lock {
  margin-top: 14px;
}

.mobile-coupon-ticket::before,
.activation-coupon-lock::before {
  display: none;
}

.mobile-coupon-ticket > span,
.activation-coupon-lock > span {
  position: relative;
  grid-column: auto;
  grid-row: auto;
  display: grid;
  place-items: center;
  width: 116px;
  min-width: 0;
  min-height: 72px;
  padding: 8px 13px;
  overflow: hidden;
  border-radius: 5px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 28px),
    linear-gradient(180deg, #ff101f 0%, #e00012 55%, #c5000f 100%);
  color: #ffffff;
  font-family: "Inter Tight", "Manrope", Arial, sans-serif;
  font-size: 31px;
  font-weight: 950;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 9px 17px rgba(224, 0, 18, 0.22);
}

.mobile-coupon-ticket > span::before,
.activation-coupon-lock > span::before,
.mobile-coupon-ticket > span::after,
.activation-coupon-lock > span::after {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  z-index: 1;
  width: 10px;
  pointer-events: none;
}

.mobile-coupon-ticket > span::before,
.activation-coupon-lock > span::before {
  left: -1px;
  background: radial-gradient(circle at 0 6px, #ffffff 0 4.4px, transparent 4.8px) 0 0 / 10px 14px repeat-y;
}

.mobile-coupon-ticket > span::after,
.activation-coupon-lock > span::after {
  right: -1px;
  background: radial-gradient(circle at 10px 6px, #ffffff 0 4.4px, transparent 4.8px) 0 0 / 10px 14px repeat-y;
}

.mobile-coupon-ticket > div,
.activation-coupon-lock > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.mobile-coupon-ticket em,
.activation-coupon-lock em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d19a18;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-coupon-ticket em::before,
.activation-coupon-lock em::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border-radius: 2px;
  background:
    radial-gradient(circle at 68% 50%, #ffffff 0 1.7px, transparent 2px),
    linear-gradient(180deg, #ffc94e, #df9d16);
  clip-path: polygon(36% 0, 100% 0, 100% 100%, 36% 100%, 0 50%);
  box-shadow: 0 4px 9px rgba(245, 183, 47, 0.2);
}

.mobile-coupon-ticket b,
.activation-coupon-lock b {
  color: #172033;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.08;
}

.mobile-coupon-ticket small,
.activation-coupon-lock small {
  color: #647386;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.18;
}

@media (max-width: 520px) {
  .mobile-coupon-ticket,
  .activation-coupon-lock {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    min-height: 86px;
    padding: 10px;
  }

  .mobile-coupon-ticket > span,
  .activation-coupon-lock > span {
    width: 96px;
    min-height: 66px;
    padding: 7px 11px;
    font-size: 27px;
  }

  .mobile-coupon-ticket em,
  .activation-coupon-lock em {
    gap: 6px;
    font-size: 10.8px;
  }

  .mobile-coupon-ticket em::before,
  .activation-coupon-lock em::before {
    width: 11px;
    height: 11px;
    flex-basis: 11px;
  }

  .mobile-coupon-ticket b,
  .activation-coupon-lock b {
    font-size: 16.5px;
  }

  .mobile-coupon-ticket small,
  .activation-coupon-lock small {
    font-size: 12px;
    line-height: 1.14;
  }
}

@media (max-width: 380px) {
  .mobile-coupon-ticket,
  .activation-coupon-lock {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
    padding: 9px;
  }

  .mobile-coupon-ticket > span,
  .activation-coupon-lock > span {
    width: 88px;
    min-height: 62px;
    font-size: 24px;
  }

  .mobile-coupon-ticket b,
  .activation-coupon-lock b {
    font-size: 15px;
  }

  .mobile-coupon-ticket small,
  .activation-coupon-lock small {
    font-size: 11.2px;
  }
}

@media (max-width: 980px) {
  .mobile-priority-timer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    min-height: 92px;
    padding: 12px 106px 12px 18px;
    overflow: hidden;
    border: 1px solid rgba(86, 116, 148, 0.58);
    border-radius: 13px;
    background:
      radial-gradient(circle at 83% 50%, rgba(68, 91, 123, 0.48), transparent 126px),
      radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.05), transparent 74px),
      linear-gradient(180deg, #132840 0%, #0a1e35 56%, #07172a 100%);
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  }

  .mobile-priority-timer::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(115, 148, 181, 0.16);
    border-radius: 10px;
    pointer-events: none;
  }

  .mobile-priority-timer::after {
    content: "";
    position: absolute;
    right: -36px;
    top: 50%;
    width: 142px;
    height: 142px;
    border-radius: 999px;
    background:
      repeating-conic-gradient(from 215deg, rgba(156, 181, 209, 0.38) 0deg 2deg, transparent 2deg 9deg),
      conic-gradient(from 216deg, transparent 0deg 27deg, rgba(63, 86, 119, 0.5) 27deg 64deg, rgba(183, 203, 225, 0.66) 64deg 96deg, transparent 96deg 360deg),
      radial-gradient(circle, transparent 0 43%, rgba(35, 55, 84, 0.96) 44% 50%, rgba(122, 151, 184, 0.36) 51% 57%, transparent 58% 100%);
    opacity: 0.9;
    transform: translateY(-50%) rotate(-7deg);
    -webkit-mask: radial-gradient(circle, transparent 0 38%, #000 39% 68%, transparent 69% 100%);
    mask: radial-gradient(circle, transparent 0 38%, #000 39% 68%, transparent 69% 100%);
    pointer-events: none;
  }

  .mobile-priority-timer strong {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    align-content: center;
    width: 70px;
    height: 70px;
    gap: 0;
    border-radius: 999px;
    background:
      radial-gradient(circle at 38% 25%, rgba(255, 255, 255, 0.72) 0 3px, transparent 4px),
      radial-gradient(circle, #ffe77a 0 54%, #f1bc3d 55% 67%, #94650e 68% 72%, #ffd965 73% 100%);
    color: #09213c;
    font-family: "Inter Tight", "Manrope", Arial, sans-serif;
    font-weight: 950;
    line-height: 0.88;
    box-shadow:
      0 3px 0 rgba(92, 58, 5, 0.38),
      0 7px 15px rgba(0, 0, 0, 0.2),
      inset 0 2px 3px rgba(255, 255, 255, 0.55),
      inset 0 -3px 3px rgba(111, 72, 5, 0.2);
  }

  .mobile-priority-timer strong::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    background: repeating-conic-gradient(from -4deg, rgba(95, 62, 7, 0.42) 0deg 2deg, transparent 2deg 12deg);
    opacity: 0.72;
    -webkit-mask: radial-gradient(circle, transparent 0 72%, #000 73% 80%, transparent 81% 100%);
    mask: radial-gradient(circle, transparent 0 72%, #000 73% 80%, transparent 81% 100%);
    pointer-events: none;
  }

  .mobile-priority-timer strong::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(126, 83, 7, 0.4);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    pointer-events: none;
  }

  .mobile-priority-timer b {
    position: relative;
    z-index: 1;
    color: #08213d;
    font-size: 33px;
    letter-spacing: 0;
    line-height: 0.86;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
  }

  .mobile-priority-timer small {
    position: relative;
    z-index: 1;
    margin-top: 2px;
    color: #09213c;
    font-size: 14px;
    font-weight: 950;
    line-height: 0.9;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  }

  .mobile-priority-timer div {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 6px;
    min-width: 0;
  }

  .mobile-priority-timer span {
    display: block;
    width: auto;
    color: #f2bb38;
    font-size: 13.5px;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.34);
  }

  .mobile-priority-timer span::before {
    display: none;
  }

  .mobile-priority-timer p {
    position: relative;
    z-index: 2;
    max-width: none;
    margin: 0;
    justify-self: stretch;
    color: rgba(255, 255, 255, 0.94);
    font-size: 13.5px;
    font-weight: 780;
    line-height: 1.2;
    text-align: left;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.24);
  }

  .mobile-priority-timer i {
    position: absolute;
    right: 25px;
    top: 49%;
    z-index: 3;
    width: 48px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(25, 41, 62, 0.08), #7089a9 34%, #bacce0 100%);
    box-shadow: 0 0 13px rgba(154, 185, 218, 0.38);
    transform: rotate(-39deg);
    transform-origin: 88% 50%;
    pointer-events: none;
  }

  .mobile-priority-timer i::before {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #273b58;
    box-shadow:
      0 0 0 4px rgba(118, 147, 182, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translateY(-50%);
  }
}

@media (max-width: 420px) {
  .mobile-priority-timer {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 11px;
    min-height: 86px;
    padding: 10px 88px 10px 14px;
  }

  .mobile-priority-timer strong {
    width: 62px;
    height: 62px;
  }

  .mobile-priority-timer b {
    font-size: 30px;
  }

  .mobile-priority-timer small {
    font-size: 12px;
  }

  .mobile-priority-timer span {
    font-size: 12.2px;
  }

  .mobile-priority-timer p {
    font-size: 12.1px;
  }

  .mobile-priority-timer::after {
    right: -45px;
    width: 128px;
    height: 128px;
  }

  .mobile-priority-timer i {
    right: 18px;
    width: 40px;
  }
}

.activation-button {
  padding-left: 92px;
  padding-right: 42px;
}

.activation-button i {
  position: absolute;
  left: 34px;
  top: 50%;
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  transform: translateY(-50%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 2px 0 rgba(103, 0, 7, 0.24));
}

.activation-button span,
.activation-button small {
  max-width: 100%;
}

@media (max-width: 980px) {
  .mobile-start-check {
    padding-left: 92px;
    padding-right: 28px;
  }

  .mobile-start-check span,
  .mobile-start-check small {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .mobile-start-check {
    padding-left: 82px;
    padding-right: 20px;
  }

  .mobile-start-check i {
    left: 22px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 380px) {
  .mobile-start-check span {
    font-size: 17.6px;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-start-check small {
    font-size: 11.2px;
    line-height: 1.08;
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .brand-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 12px;
    column-gap: 12px;
    align-items: center;
    min-height: 0;
    padding: 15px 14px 12px;
    border: 1px solid rgba(7, 22, 36, 0.11);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: #ffffff;
    box-shadow:
      0 9px 24px rgba(7, 22, 36, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .brand-bar::before {
    display: none;
  }

  .brand-mark {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    width: min(210px, 49vw);
    min-width: 0;
  }

  .brand-mark img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 76px;
    object-fit: contain;
  }

  .brand-mark-copy {
    display: none;
  }

  .call-pill {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: min(224px, 43vw);
    min-width: 0;
    min-height: 57px;
    margin: 0;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.24), transparent 18px),
      linear-gradient(180deg, #ff1826 0%, #e30013 56%, #ad0009 100%);
    box-shadow:
      0 2px 0 rgba(98, 0, 7, 0.18),
      0 10px 20px rgba(179, 0, 11, 0.28);
  }

  .call-pill::before {
    content: "";
    position: static;
    display: block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .call-pill::after {
    display: none;
  }

  .call-pill span {
    display: none;
  }

  .call-pill b {
    color: #ffffff;
    font-size: clamp(16px, 4.2vw, 22px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .open-now-pill {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 0;
    justify-self: stretch;
    min-height: 62px;
    max-width: none;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(7, 22, 36, 0.13);
    border-radius: 12px;
    background: #ffffff;
    color: #172033;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      0 2px 8px rgba(7, 22, 36, 0.04);
  }

  .open-now-pill span,
  .open-now-pill strong,
  .open-now-pill .arrival-speed-badge {
    color: #172033;
    font-size: clamp(11px, 3vw, 14px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    gap: 11px;
    padding: 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .open-now-pill .emergency-service-badge::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 0;
    bottom: 15px;
    width: 1px;
    background: rgba(7, 22, 36, 0.12);
  }

  .open-now-pill .emergency-service-badge i {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: linear-gradient(180deg, #e22a2f, #c80713);
    box-shadow: 0 7px 13px rgba(200, 7, 19, 0.16);
  }

  .open-now-pill .emergency-service-badge i::before {
    content: "";
    width: 20px;
    height: 20px;
    background: #ffffff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2 4.5 5.2v5.7c0 4.7 3.2 9 7.5 10.1 4.3-1.1 7.5-5.4 7.5-10.1V5.2L12 2Zm3.5 7.7-4.3 4.4-2.1-2.1 1.1-1.1 1 1 3.2-3.3 1.1 1.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2 4.5 5.2v5.7c0 4.7 3.2 9 7.5 10.1 4.3-1.1 7.5-5.4 7.5-10.1V5.2L12 2Zm3.5 7.7-4.3 4.4-2.1-2.1 1.1-1.1 1 1 3.2-3.3 1.1 1.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .open-now-pill .arrival-speed-badge::before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 50%, transparent 0 7px, #ffffff 8px 9px, transparent 10px),
      linear-gradient(90deg, transparent 48%, #ffffff 49% 54%, transparent 55%) center 9px / 18px 17px no-repeat,
      linear-gradient(35deg, transparent 48%, #ffffff 49% 54%, transparent 55%) center 14px / 19px 18px no-repeat,
      linear-gradient(180deg, #f7c13f, #d99a16);
    box-shadow: 0 7px 13px rgba(217, 154, 22, 0.18);
  }

  .open-now-pill .emergency-service-badge strong {
    color: #172033;
  }
}

@media (max-width: 420px) {
  .brand-bar {
    row-gap: 10px;
    column-gap: 9px;
    padding: 12px 12px 10px;
  }

  .brand-mark {
    width: min(150px, 40vw);
  }

  .call-pill {
    width: min(178px, 49vw);
    min-height: 50px;
    gap: 9px;
    padding: 0 13px;
  }

  .call-pill::before {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .call-pill b {
    font-size: 16px;
  }

  .open-now-pill {
    min-height: 58px;
    border-radius: 11px;
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    min-height: 58px;
    gap: 8px;
    padding: 0 7px;
  }

  .open-now-pill span,
  .open-now-pill strong,
  .open-now-pill .arrival-speed-badge {
    font-size: 10.3px;
  }

  .open-now-pill .emergency-service-badge i,
  .open-now-pill .arrival-speed-badge::before {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }
}

@media (max-width: 980px) {
  .brand-bar {
    row-gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-mark {
    width: min(176px, 46vw);
  }

  .brand-mark img {
    width: 60px;
    height: 68px;
    flex: 0 0 60px;
    object-fit: contain;
  }

  .brand-mark-copy {
    display: grid;
    gap: 2px;
    margin-left: 7px;
    min-width: 0;
    line-height: 1;
  }

  .brand-mark-copy strong {
    display: block;
    color: #0d2b55;
    font-family: "Inter Tight", "Manrope", Arial, sans-serif;
    font-size: 34px;
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: 0;
  }

  .brand-mark-copy small {
    display: block;
    color: #0d2b55;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .open-now-pill {
    min-height: 58px;
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    min-height: 58px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: min(160px, 43vw);
  }

  .brand-mark img {
    width: 52px;
    height: 60px;
    flex-basis: 52px;
  }

  .brand-mark-copy {
    margin-left: 6px;
  }

  .brand-mark-copy strong {
    font-size: 30px;
  }

  .brand-mark-copy small {
    font-size: 8.8px;
    letter-spacing: 0.5px;
  }

  .brand-bar {
    row-gap: 9px;
    padding-top: 9px;
  }

  .open-now-pill {
    min-height: 54px;
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    min-height: 54px;
  }
}

@media (max-width: 980px) {
  body.is-form-start .mobile-hero {
    gap: 10px;
    padding: 12px;
    background:
      radial-gradient(circle at 100% 0%, rgba(224, 0, 18, 0.16), transparent 170px),
      linear-gradient(160deg, rgba(8, 24, 45, 0.98), rgba(12, 37, 68, 0.98) 52%, rgba(5, 13, 24, 0.98));
  }

  .mobile-hero-lead {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(118, 145, 176, 0.26);
    border-radius: 15px;
    background:
      radial-gradient(circle at 100% 8%, rgba(28, 78, 132, 0.35), transparent 170px),
      linear-gradient(160deg, #0b2744 0%, #071d35 52%, #061422 100%);
    box-shadow:
      0 20px 42px rgba(0, 0, 0, 0.27),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .mobile-hero-lead::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.32;
    pointer-events: none;
  }

  .mobile-hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 11px;
    padding: 19px 18px 15px;
  }

  .mobile-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 27px;
    padding: 0 13px;
    border-radius: 999px;
    background: linear-gradient(180deg, #c72830, #9f171f);
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
    box-shadow:
      0 8px 16px rgba(168, 20, 28, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }

  .mobile-hero-badge i {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.13);
  }

  .mobile-hero-copy h1 {
    margin: 0;
    color: #ffffff;
    font-family: "Inter Tight", "Manrope", Arial, sans-serif;
    font-size: clamp(40px, 11vw, 52px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.02;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
  }

  .mobile-hero-copy h1 span {
    display: block;
    white-space: nowrap;
    font-size: 0.86em;
  }

  .mobile-hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    font-weight: 850;
    line-height: 1.25;
  }

  .mobile-hero-photo {
    position: relative;
    z-index: 1;
    height: 190px;
    overflow: hidden;
    background: #071624;
  }

  .mobile-hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) contrast(1.05);
  }

  .mobile-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(7, 22, 36, 0.3), transparent 34%, rgba(7, 22, 36, 0.12)),
      linear-gradient(180deg, rgba(7, 22, 36, 0.08), rgba(7, 22, 36, 0.16));
    pointer-events: none;
  }

  .mobile-priority-card {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 22px;
    gap: 13px;
    align-items: center;
    min-height: 105px;
    margin: -54px 14px 14px;
    padding: 15px 15px 15px 18px;
    overflow: hidden;
    border: 1px solid rgba(125, 154, 188, 0.33);
    border-radius: 12px;
    background:
      radial-gradient(circle at 100% 0%, rgba(29, 84, 146, 0.28), transparent 170px),
      linear-gradient(160deg, rgba(10, 40, 72, 0.96), rgba(5, 21, 39, 0.97));
    color: #ffffff;
    text-decoration: none;
    box-shadow:
      0 18px 30px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
  }

  .mobile-priority-card > i {
    position: relative;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background:
      radial-gradient(circle at 34% 25%, rgba(255, 255, 255, 0.28), transparent 14px),
      linear-gradient(180deg, #ff1c28, #ca0713);
    box-shadow:
      0 12px 24px rgba(224, 0, 18, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  .mobile-priority-card > i::before {
    content: "";
    width: 43px;
    height: 43px;
    background: #ffffff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.3 3.9 1.9 18.3A2 2 0 0 0 3.6 21h16.8a2 2 0 0 0 1.7-2.7L13.7 3.9a2 2 0 0 0-3.4 0Z'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.3 3.9 1.9 18.3A2 2 0 0 0 3.6 21h16.8a2 2 0 0 0 1.7-2.7L13.7 3.9a2 2 0 0 0-3.4 0Z'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  }

  .mobile-priority-card > i::after {
    display: none;
  }

  .mobile-priority-card span {
    display: grid;
    min-width: 0;
    gap: 3px;
  }

  .mobile-priority-card small {
    color: #f04d4f;
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-priority-card b {
    color: #ffffff;
    font-family: "Inter Tight", "Manrope", Arial, sans-serif;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.02;
  }

  .mobile-priority-card em {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13.5px;
    font-style: normal;
    font-weight: 850;
    line-height: 1.12;
  }

  .mobile-priority-card strong {
    display: grid;
    place-items: center;
    width: 22px;
    height: 44px;
  }

  .mobile-priority-card strong::before {
    content: "\203A";
    color: rgba(255, 255, 255, 0.72);
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
  }
}

@media (max-width: 420px) {
  .mobile-hero-copy {
    padding: 17px 16px 13px;
  }

  .mobile-hero-copy h1 {
    font-size: 37px;
  }

  .mobile-hero-copy h1 span {
    font-size: 0.9em;
  }

  .mobile-hero-copy p {
    font-size: 14.5px;
  }

  .mobile-hero-badge {
    min-height: 25px;
    padding: 0 11px;
    font-size: 11px;
  }

  .mobile-hero-photo {
    height: 176px;
  }

  .mobile-priority-card {
    grid-template-columns: 58px minmax(0, 1fr) 18px;
    gap: 11px;
    min-height: 96px;
    margin: -48px 11px 12px;
    padding: 13px 12px 13px 15px;
  }

  .mobile-priority-card > i {
    width: 54px;
    height: 54px;
  }

  .mobile-priority-card > i::before {
    width: 33px;
    height: 33px;
  }

  .mobile-priority-card small {
    font-size: 11.5px;
  }

  .mobile-priority-card b {
    font-size: 20px;
    white-space: nowrap;
  }

  .mobile-priority-card em {
    font-size: 12.2px;
  }
}

@media (max-width: 980px) {
  .open-now-pill {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    gap: 8px;
  }

  .open-now-pill .emergency-service-badge strong,
  .open-now-pill .arrival-speed-badge {
    font-size: 12.4px;
    line-height: 1;
  }

  .open-now-pill .emergency-service-badge i,
  .open-now-pill .arrival-speed-badge::before {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}

@media (max-width: 380px) {
  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    gap: 6px;
  }

  .open-now-pill .emergency-service-badge strong,
  .open-now-pill .arrival-speed-badge {
    font-size: 11.4px;
  }

  .open-now-pill .emergency-service-badge i,
  .open-now-pill .arrival-speed-badge::before {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

@media (max-width: 980px) {
  body.is-form-start .mobile-hero {
    overflow: visible;
  }

  .mobile-hero-actions {
    position: relative;
    z-index: 4;
    padding: 17px 16px 14px;
    overflow: visible;
  }

  .mobile-start-check {
    min-height: 112px;
  }
}

@media (max-width: 420px) {
  .mobile-hero-actions {
    padding: 15px 13px 13px;
  }

  .mobile-start-check {
    min-height: 106px;
  }
}

@media (max-width: 380px) {
  .mobile-hero-actions {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mobile-start-check {
    min-height: 102px;
    padding-left: 76px;
    padding-right: 16px;
  }

  .mobile-start-check::before {
    inset: -8px;
  }
}

@media (max-width: 380px) {
  .brand-bar {
    column-gap: 6px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand-mark {
    width: 144px;
  }

  .brand-mark img {
    width: 48px;
    height: 56px;
    flex-basis: 48px;
  }

  .brand-mark-copy {
    margin-left: 5px;
  }

  .brand-mark-copy strong {
    font-size: 27px;
  }

  .brand-mark-copy small {
    font-size: 8px;
  }

  .call-pill {
    width: min(170px, 48vw);
    min-height: 48px;
    gap: 7px;
    padding: 0 11px;
  }

  .call-pill::before {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .call-pill b {
    font-size: 14.8px;
  }

  .mobile-hero-copy h1 {
    font-size: 35px;
  }

  .mobile-hero-copy h1 span {
    font-size: 0.82em;
  }

  .mobile-priority-card {
    grid-template-columns: 54px minmax(0, 1fr) 14px;
    gap: 8px;
    padding: 12px 10px 12px 13px;
  }

  .mobile-priority-card > i {
    width: 52px;
    height: 52px;
  }

  .mobile-priority-card b {
    font-size: 18px;
  }

  .mobile-priority-card small {
    font-size: 10.6px;
  }

  .mobile-priority-card em {
    font-size: 11.6px;
  }

  .mobile-priority-card strong {
    width: 14px;
  }

  .mobile-priority-card strong::before {
    font-size: 34px;
  }
}

@media (max-width: 340px) {
  .brand-mark {
    width: 128px;
  }

  .brand-mark img {
    width: 44px;
    height: 52px;
    flex-basis: 44px;
  }

  .brand-mark-copy {
    margin-left: 4px;
  }

  .brand-mark-copy strong {
    font-size: 23px;
  }

  .brand-mark-copy small {
    font-size: 7.4px;
  }

  .mobile-hero-copy h1 {
    font-size: 33px;
  }

  .mobile-hero-copy h1 span {
    font-size: 0.79em;
  }

  .mobile-start-check {
    padding-left: 70px;
    padding-right: 14px;
  }

  .mobile-start-check i {
    left: 20px;
    width: 42px;
    height: 42px;
  }

  .mobile-start-check span {
    font-size: 15.2px;
  }

  .mobile-start-check small {
    font-size: 9.9px;
  }
}

@media (max-width: 420px) {
  .mobile-hero-copy h1 {
    font-size: 36px;
  }

  .mobile-hero-copy h1 span {
    font-size: 0.84em;
  }
}

@media (max-width: 380px) {
  .mobile-hero-copy h1 {
    font-size: 35px;
  }

  .mobile-hero-copy h1 span {
    font-size: 0.82em;
  }
}

@media (max-width: 340px) {
  .mobile-hero-copy h1 {
    font-size: 33px;
  }

  .mobile-hero-copy h1 span {
    font-size: 0.79em;
  }
}

@media (min-width: 981px) {
  .form-topline {
    grid-template-columns: minmax(176px, 210px) minmax(0, 1fr) auto;
    gap: 16px;
    padding: 16px 24px;
  }

  .desktop-flow-logo {
    display: inline-flex;
    width: min(210px, 22vw);
    min-width: 176px;
    min-height: 78px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 8px 10px;
    color: #fff;
    text-decoration: none;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 12px 28px rgba(0, 0, 0, 0.16);
  }

  .desktop-flow-logo img {
    width: 54px;
    height: 62px;
    flex: 0 0 54px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
  }

  .desktop-flow-logo span {
    display: grid;
    gap: 3px;
    min-width: 0;
    line-height: 1;
    text-transform: uppercase;
  }

  .desktop-flow-logo strong {
    color: #fff;
    font-family: "Inter Tight", "Manrope", Arial, sans-serif;
    font-size: 31px;
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .desktop-flow-logo small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .form-topline {
    grid-template-columns: minmax(158px, 184px) minmax(0, 1fr) auto;
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .desktop-flow-logo {
    width: 184px;
    min-width: 158px;
    gap: 8px;
    padding: 8px;
  }

  .desktop-flow-logo img {
    width: 48px;
    height: 56px;
    flex-basis: 48px;
  }

  .desktop-flow-logo strong {
    font-size: 27px;
  }

  .desktop-flow-logo small {
    font-size: 8.8px;
  }
}

@media (min-width: 981px) {
  .brand-bar {
    grid-template-columns: minmax(224px, 240px) minmax(320px, 1fr) auto auto;
    gap: clamp(14px, 1.5vw, 24px);
    min-height: 118px;
    padding: 14px clamp(24px, 3vw, 54px);
    overflow: visible;
  }

  .brand-mark {
    display: flex;
    width: 240px;
    min-width: 224px;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    padding: 0;
    text-decoration: none;
  }

  .brand-mark img {
    width: 64px;
    height: 74px;
    flex: 0 0 64px;
    object-fit: contain;
  }

  .brand-mark-copy {
    display: grid;
    gap: 3px;
    margin-left: 0;
    min-width: 0;
    color: #0d2b55;
    line-height: 1;
    text-transform: uppercase;
  }

  .brand-mark-copy strong {
    display: block;
    color: #0d2b55;
    font-family: "Inter Tight", "Manrope", Arial, sans-serif;
    font-size: 40px;
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .brand-mark-copy small {
    display: block;
    color: #0d2b55;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
}

@media (min-width: 981px) and (max-width: 1399px) {
  .brand-bar {
    grid-template-columns: minmax(214px, 230px) minmax(300px, 1fr) minmax(270px, auto);
    gap: clamp(12px, 1.3vw, 18px);
    padding-left: clamp(20px, 2.6vw, 36px);
    padding-right: clamp(20px, 2.6vw, 36px);
  }

  .brand-mark {
    width: min(230px, 23vw);
    min-width: 214px;
    gap: 9px;
  }

  .brand-mark img {
    width: 58px;
    height: 66px;
    flex-basis: 58px;
  }

  .brand-mark-copy strong {
    font-size: 34px;
  }

  .brand-mark-copy small {
    font-size: 9.8px;
    letter-spacing: 0.06em;
  }

  .call-pill {
    min-width: 286px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .call-pill span {
    font-size: 11px;
  }

  .call-pill b {
    font-size: 22px;
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    padding-right: 16px;
    padding-left: 16px;
  }

  .open-now-pill .emergency-service-badge strong {
    font-size: 14px;
  }

  .open-now-pill .arrival-speed-badge {
    font-size: 13px;
  }
}

@media (min-width: 981px) and (max-width: 1080px) {
  .brand-bar {
    grid-template-columns: minmax(198px, 210px) minmax(260px, 1fr) minmax(230px, auto);
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand-mark {
    width: 210px;
    min-width: 198px;
    gap: 8px;
  }

  .brand-mark img {
    width: 52px;
    height: 60px;
    flex-basis: 52px;
  }

  .brand-mark-copy strong {
    font-size: 31px;
  }

  .brand-mark-copy small {
    font-size: 8.8px;
  }

  .open-now-pill {
    gap: 5px;
    padding: 4px;
  }

  .open-now-pill .emergency-service-badge,
  .open-now-pill .arrival-speed-badge {
    min-height: 54px;
    padding-right: 11px;
    padding-left: 11px;
  }

  .open-now-pill .emergency-service-badge strong {
    font-size: 12px;
  }

  .open-now-pill .arrival-speed-badge {
    font-size: 11.4px;
  }

  .call-pill {
    min-width: 240px;
    min-height: 64px;
    gap: 11px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .call-pill b {
    font-size: 19px;
  }
}
