:root {
  --amp-blue: #2f57ff;
  --amp-blue-strong: #1242f4;
  --amp-blue-dark: #173ad7;
  --amp-yellow: #ffe22e;
  --amp-green: #00e85a;
  --ink: #07111f;
  --muted: #637086;
  --line: #dfe6f4;
  --surface: #ffffff;
  --surface-blue: #f3f6ff;
  --shadow: 0 24px 80px rgba(5, 24, 77, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.anchor-offset {
  display: block;
  position: relative;
  top: -112px;
  visibility: hidden;
}

.top-loop {
  display: none;
  overflow: hidden;
  justify-content: center;
  background: #fff;
  color: var(--amp-blue);
  border-bottom: 1px solid var(--line);
}

.loop-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: min(1180px, calc(100% - 28px));
  min-width: 0;
  animation: none;
}

.loop-track + .loop-track {
  display: none;
}

.loop-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #405179;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loop-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amp-green);
  box-shadow: 0 0 0 4px rgba(0, 232, 90, 0.1);
}

@keyframes loop {
  to {
    transform: translateX(-100%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(47, 87, 255, 0.98), rgba(18, 66, 244, 0.98)),
    var(--amp-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 34px rgba(18, 66, 244, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.site-header .brand {
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 138px;
  height: auto;
}

.site-header .brand img {
  width: 116px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--amp-yellow) 0 32%, transparent 33%),
    conic-gradient(from -35deg, var(--amp-blue), var(--amp-green), var(--amp-blue));
  box-shadow: 0 12px 34px rgba(49, 88, 244, 0.28);
}

.bolt {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--amp-blue-dark);
  color: var(--amp-yellow);
  font-size: 16px;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 0;
  color: var(--amp-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: var(--amp-yellow);
  text-shadow: 0 1px 0 var(--amp-blue-dark), 0 0 1px var(--amp-blue-dark);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.desktop-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 900;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.header-call {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 226, 46, 0.54);
  background:
    linear-gradient(135deg, #fff06a 0%, #ffe22e 54%, #f5c400 100%);
  color: #061645;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 24px rgba(255, 226, 46, 0.22);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 74px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  list-style: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--amp-yellow);
  box-shadow: 0 -6px 0 var(--amp-yellow), 0 6px 0 var(--amp-yellow);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-nav[open] summary {
  border-color: rgba(255, 226, 46, 0.72);
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 30px rgba(6, 22, 69, 0.22);
}

.mobile-nav[open] summary::after {
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: none;
}

.mobile-nav[open] summary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--amp-yellow);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 70;
  display: grid;
  gap: 4px;
  width: min(326px, calc(100vw - 28px));
  padding: 12px;
  border: 1px solid rgba(210, 222, 246, 0.96);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 255, 0.99));
  box-shadow:
    0 28px 80px rgba(7, 17, 31, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.mobile-nav-menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 12px 44px 12px 14px;
  border-radius: 14px;
  color: #071747;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.mobile-nav-menu a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(48, 85, 245, 0.72);
  border-right: 2px solid rgba(48, 85, 245, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.mobile-nav-menu a:hover {
  background: #f3f6ff;
  color: var(--amp-blue-strong);
}

.mobile-nav-menu a:last-child {
  justify-content: center;
  margin-top: 6px;
  padding-right: 14px;
  border: 1px solid rgba(48, 85, 245, 0.18);
  background:
    linear-gradient(135deg, #3158f4, #143fd6);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 30px rgba(48, 85, 245, 0.22);
}

.mobile-nav-menu a:last-child::after {
  display: none;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #eef4ff;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 52%;
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.03) brightness(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 56, 219, 0.74) 0%, rgba(47, 87, 255, 0.5) 42%, rgba(47, 87, 255, 0.12) 76%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.02) 0%, rgba(7, 17, 31, 0.52) 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.52fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  min-height: 620px;
  margin: 0 auto;
  padding: 34px 0 44px;
}

.hero-copy {
  max-width: 720px;
  padding-top: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amp-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: clamp(28px, 4vw, 54px);
}

h1 {
  margin-bottom: 20px;
  max-width: 780px;
  font-size: clamp(46px, 6.2vw, 82px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 600;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  max-width: 760px;
}

.hero-proof div {
  min-height: 78px;
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 28px rgba(7, 17, 31, 0.12);
  backdrop-filter: blur(16px);
}

.hero-proof strong {
  display: block;
  color: var(--amp-yellow);
  font-size: clamp(19px, 2.1vw, 28px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.hero-proof span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.22;
}

.hero-contact-card {
  display: grid;
  gap: 7px;
  align-self: center;
  max-width: 430px;
  padding: 0;
  border: 1px solid rgba(223, 230, 244, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(5, 24, 77, 0.2);
  backdrop-filter: blur(22px);
}

.hero-contact-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px 14px;
  border-radius: 14px 14px 0 0;
  background:
    linear-gradient(135deg, rgba(255, 226, 46, 0.16), transparent 42%),
    linear-gradient(145deg, var(--amp-blue), var(--amp-blue-strong));
}

.hero-contact-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1;
}

.hero-contact-card p {
  margin: 5px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 650;
  line-height: 1.2;
}

.hero-contact-field {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 0 18px;
}

.hero-contact-field label {
  color: #10204a;
  font-size: 11px;
  font-weight: 900;
}

.hero-contact-field label span {
  color: var(--muted);
  font-weight: 750;
}

.hero-contact-field input,
.hero-contact-field select,
.hero-contact-field textarea {
  width: 100%;
  border: 1px solid #d8e1f0;
  border-radius: 10px;
  background: #f8fbff;
  color: #111;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  outline: none;
  padding: 0 13px;
}

.hero-contact-field input,
.hero-contact-field select {
  min-height: 34px;
}

.hero-contact-field textarea {
  height: 62px;
  min-height: 62px;
  padding-top: 9px;
  resize: vertical;
}

.hero-contact-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 8px;
  padding: 0 18px;
}

.hero-contact-split .hero-contact-field {
  padding: 0;
}

.hero-contact-field input:focus,
.hero-contact-field select:focus,
.hero-contact-field textarea:focus {
  border-color: var(--amp-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 87, 255, 0.12);
}

.location-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 18px;
  right: 18px;
  z-index: 35;
  display: none;
  max-height: 218px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(47, 87, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 48px rgba(7, 17, 31, 0.18);
  backdrop-filter: blur(16px);
}

.location-suggestions.is-open {
  display: grid;
  gap: 4px;
}

.location-suggestions button {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 10px 11px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #10204a;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.location-suggestions button:hover,
.location-suggestions button:focus {
  background: #f0f5ff;
  outline: none;
}

.location-suggestions strong {
  color: #071747;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
}

.location-suggestions span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
}

.location-share {
  display: grid;
  gap: 7px;
  padding: 0 18px;
}

.text-request-form .location-share {
  padding: 0;
}

.location-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(47, 87, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(47, 87, 255, 0.08), rgba(255, 255, 255, 0.96)), #fff;
  color: #10204a;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.location-share-button:disabled {
  cursor: default;
  opacity: 0.76;
}

.location-share-status {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.location-share-status a {
  color: var(--amp-blue);
  font-weight: 950;
  text-decoration: none;
}

.location-share-status a:hover {
  text-decoration: underline;
}

.hero-send-button,
.hero-text-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.hero-send-button {
  margin: 2px 18px 6px;
  border: 0;
  background: linear-gradient(135deg, #071747 0%, #123fdc 62%, #3158f4 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(7, 23, 71, 0.22);
}

.hero-payment-note {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin: 0 18px 14px;
  padding: 8px 10px;
  border: 1px solid rgba(47, 87, 255, 0.1);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.hero-payment-note img {
  width: auto;
  max-width: 48px;
  height: 14px;
  object-fit: contain;
}

.hero-payment-note img[alt="Mastercard"] {
  height: 17px;
}

.hero-payment-note img[alt="American Express"] {
  height: 18px;
}

.hero-payment-note img[alt="Discover"] {
  height: 16px;
  max-width: 58px;
}

.hero-payment-note img[alt="Zelle"] {
  height: 16px;
}

.hero-payment-note img[alt="Cash App"] {
  height: 14px;
}

.hero-text-now {
  flex: 0 0 auto;
  min-width: 66px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  border-color: rgba(255, 226, 46, 0.52);
  background: linear-gradient(135deg, #071747 0%, #123fdc 62%, #3158f4 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(7, 23, 71, 0.26);
}

.button.primary[href^="tel:"],
.hero-actions .button[href^="tel:"] {
  border-color: rgba(255, 226, 46, 0.56);
  background: linear-gradient(135deg, #fff06a 0%, #ffe22e 54%, #f5c400 100%);
  color: #061645;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 18px 44px rgba(255, 226, 46, 0.26);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.dispatch-panel {
  padding: 20px;
  border: 1px solid rgba(223, 230, 244, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(22, 50, 150, 0.22);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.panel-head,
.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #60708b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-head strong {
  color: var(--amp-blue);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #33f07a;
  box-shadow: 0 0 0 8px rgba(51, 240, 122, 0.13);
}

.route-loop {
  position: relative;
  height: 260px;
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(47, 87, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 87, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbff, #edf3ff);
  background-size: 36px 36px;
  overflow: hidden;
}

.route-loop::before,
.route-loop::after {
  content: "";
  position: absolute;
  inset: 34px 42px;
  border: 2px solid rgba(255, 226, 46, 0.95);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.route-loop::after {
  inset: 64px 76px;
  border-color: rgba(47, 87, 255, 0.72);
  animation: breathe 3.6s ease-in-out infinite;
}

.pin,
.pulse {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.pin {
  width: 14px;
  height: 14px;
  background: var(--amp-blue);
  box-shadow: 0 0 0 7px rgba(47, 87, 255, 0.13);
}

.pin-a {
  top: 72px;
  left: 84px;
}

.pin-b {
  right: 76px;
  top: 118px;
  background: var(--amp-green);
}

.pin-c {
  left: 154px;
  bottom: 58px;
  background: var(--amp-yellow);
}

.pulse {
  width: 20px;
  height: 20px;
  top: 46%;
  left: 47%;
  background: var(--amp-blue);
  box-shadow: 0 0 0 0 rgba(49, 88, 244, 0.6);
  animation: pulse 2s infinite;
}

@keyframes breathe {
  50% {
    transform: rotate(-12deg) scale(1.05);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 26px rgba(49, 88, 244, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(49, 88, 244, 0);
  }
}

.dispatch-steps {
  display: grid;
  gap: 10px;
}

.dispatch-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.dispatch-steps span {
  color: var(--amp-blue);
  font-size: 12px;
  font-weight: 900;
}

.dispatch-steps strong,
.dispatch-steps small {
  grid-column: 2;
}

.dispatch-steps strong {
  color: var(--amp-blue-dark);
}

.dispatch-steps small {
  color: var(--muted);
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(7, 17, 31, 0.09);
}

.trust-strip div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  color: var(--amp-blue);
  font-size: 28px;
  font-weight: 900;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quick-facts-band {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(7, 23, 71, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow:
    0 28px 70px rgba(7, 17, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: none;
}

.quick-facts-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--amp-yellow), var(--amp-blue));
}

.quick-facts-band div {
  position: relative;
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 132px;
  padding: clamp(24px, 2.4vw, 34px);
  overflow: hidden;
  border-right: 1px solid rgba(7, 23, 71, 0.09);
  text-align: center;
}

.quick-facts-band div::after {
  display: none;
}

.quick-facts-band div:last-child {
  border-right: 0;
}

.quick-facts-band strong {
  color: #071747;
  font-size: clamp(22px, 1.85vw, 30px);
  font-weight: 950;
  line-height: 1.08;
}

.quick-facts-band span {
  width: fit-content;
  margin: 0 auto;
  color: #173ad7;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-facts-band p {
  max-width: 230px;
  margin: 0;
  margin-inline: auto;
  color: #5f6d84;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 780;
  line-height: 1.42;
}

.quick-facts-band + .reviews {
  margin-top: clamp(16px, 2.2vw, 24px);
}

.quick-info {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 30px;
  border-bottom: 1px solid var(--line);
}

.quick-info h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 0.98;
}

.quick-info p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
}

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

.quick-info-grid div {
  min-height: 138px;
  padding: 24px;
  border: 1px solid rgba(47, 87, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(47, 87, 255, 0.07), rgba(255, 255, 255, 0.96)), #fff;
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.06);
}

.quick-info-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #071747;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
}

.quick-info-grid span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 26px;
  margin-top: 0;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #10204a;
  box-shadow: none;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.payment-logo img {
  display: block;
  width: auto;
  max-width: 112px;
  height: 24px;
  object-fit: contain;
}

.payment-logo.logo-visa img {
  height: 24px;
}

.payment-logo.logo-mastercard {
  min-width: 0;
}

.payment-logo.logo-mastercard img {
  height: 32px;
}

.payment-logo.logo-amex img {
  height: 32px;
  max-width: 96px;
}

.payment-logo.logo-discover img {
  height: 25px;
  max-width: 112px;
}

.payment-logo.logo-zelle img {
  height: 32px;
}

.payment-logo.logo-cashapp img {
  height: 28px;
  max-width: 116px;
}

.share-location-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 211, 0, 0.2), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(0, 230, 80, 0.13), transparent 24%),
    linear-gradient(135deg, #1353ff 0%, #235bff 52%, #0b3ee8 100%);
}

.share-location-page .site-header {
  position: relative;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.share-location-page .desktop-nav,
.share-location-page .mobile-nav {
  display: none;
}

.share-location-page .header-call {
  background:
    linear-gradient(135deg, #fff06a 0%, #ffe22e 54%, #f5c400 100%);
  color: #061645;
  border: 1px solid rgba(255, 226, 46, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 12px 30px rgba(255, 226, 46, 0.24);
}

.share-location-hero {
  display: grid;
  grid-template-columns: 1fr;
  width: min(640px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 0 clamp(40px, 6vw, 68px);
}

.share-location-card {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 34px 92px rgba(2, 13, 45, 0.28);
  text-align: center;
}

.share-location-card h1 {
  max-width: 520px;
  margin: 6px auto 14px;
  color: #071747;
  font-size: clamp(42px, 6vw, 62px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
}

.share-location-lede {
  max-width: 500px;
  margin: 0 auto 24px;
  color: #31405f;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 740;
  line-height: 1.45;
}

.share-location-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--amp-yellow);
  color: #071747;
  box-shadow: 0 18px 34px rgba(255, 211, 0, 0.28);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.share-location-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.share-location-call {
  display: block;
  width: fit-content;
  margin: 14px auto 0;
  color: var(--amp-blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.share-location-call:hover {
  text-decoration: underline;
}

.share-location-status {
  min-height: 22px;
  margin: 14px auto 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.45;
}

.share-location-manual {
  display: grid;
  gap: 10px;
  max-width: 430px;
  margin: 18px auto 0;
  padding: 14px;
  border: 1px solid rgba(47, 87, 255, 0.12);
  border-radius: 14px;
  background: #f8fbff;
  text-align: left;
}

.share-location-manual label {
  color: #071747;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.share-location-manual input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(47, 87, 255, 0.18);
  border-radius: 10px;
  background: #fff;
  color: #071747;
  padding: 0 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
}

.share-location-manual input:focus {
  border-color: rgba(47, 87, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(47, 87, 255, 0.12);
  outline: 0;
}

.share-location-manual .button {
  width: 100%;
  min-height: 44px;
  border-color: rgba(19, 83, 255, 0.18);
  background: #fff;
  color: var(--amp-blue);
  box-shadow: none;
}

.share-location-result {
  display: grid;
  gap: 12px;
  max-width: 430px;
  margin: 22px auto 0;
  text-align: left;
}

.share-location-result[hidden] {
  display: none;
}

.share-location-result label {
  color: #071747;
  font-size: 13px;
  font-weight: 950;
}

.share-location-result textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid rgba(47, 87, 255, 0.18);
  border-radius: 12px;
  background: #f8fbff;
  color: #071747;
  padding: 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.share-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section,
.split-section,
.coverage,
.payment-band,
.quick-facts-band,
.email-signup,
.reviews,
.request {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 58px 0 42px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

h2 {
  color: #10204a;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 278px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 12px 34px rgba(7, 17, 31, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  color: #10204a;
  -webkit-tap-highlight-color: rgba(47, 87, 255, 0.12);
}

.service-card:visited,
.service-card:active,
.service-card:focus {
  color: #10204a;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 88, 244, 0.35);
  box-shadow: 0 26px 64px rgba(7, 17, 31, 0.11);
}

.service-media {
  height: 144px;
  margin: -20px -20px 18px;
  overflow: hidden;
  background: var(--surface-blue);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(47, 87, 255, 0.2);
  border-radius: 13px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 255, 0.96)),
    #f7faff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px rgba(22, 72, 176, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  color: var(--amp-blue);
  outline: none;
}

.service-icon::after {
  content: none;
}

.service-icon[style*="--service-icon"]::before {
  content: "";
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  background: var(--amp-blue);
  -webkit-mask: var(--service-icon) center / contain no-repeat;
  mask: var(--service-icon) center / contain no-repeat;
  filter: drop-shadow(0 5px 10px rgba(22, 72, 176, 0.16));
}

.service-card:hover .service-icon {
  transform: translateY(-2px);
  border-color: rgba(47, 87, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 38px rgba(47, 87, 255, 0.18);
}

.service-icon img {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(24%) sepia(99%) saturate(2811%) hue-rotate(220deg) brightness(103%) contrast(102%) drop-shadow(0 5px 10px rgba(22, 72, 176, 0.16));
}

.service-icon[style*="--service-icon"] img {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-icon svg path,
.service-icon svg circle,
.service-icon svg rect {
  vector-effect: non-scaling-stroke;
}

.service-title-row::before {
  content: none;
}

.service-title-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  padding-top: 0;
}

.service-card h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.05;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.service-card::after {
  content: none;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: 50px 0 70px;
}

.request-preview {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--amp-blue);
  box-shadow: var(--shadow);
}

.photo-preview {
  position: relative;
  min-height: 440px;
  padding: 0;
  overflow: hidden;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
}

.photo-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 71, 0) 38%, rgba(7, 23, 71, 0.78) 100%);
}

.photo-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.preview-top {
  padding: 8px 8px 18px;
}

.preview-top strong {
  color: var(--amp-yellow);
}

.request-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.request-row > span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.16);
  background: var(--amp-blue);
}

.request-row.active {
  background: rgba(49, 88, 244, 0.44);
  border-color: rgba(255, 226, 46, 0.32);
}

.request-row small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.split-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
}

.split-copy .button.secondary,
.request .button.secondary {
  color: var(--amp-blue-dark);
  border-color: var(--line);
  background: #fff;
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(47, 87, 255, 0.08), transparent 48%),
    var(--surface-blue);
  box-shadow: 0 14px 40px rgba(7, 17, 31, 0.05);
}

.coverage h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  display: flex;
}

.coverage-list a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--amp-blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.coverage-list a:hover {
  border-color: rgba(47, 87, 255, 0.34);
  box-shadow: 0 14px 28px rgba(7, 17, 31, 0.08);
}

.payment-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(20px, 3vw, 34px);
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 211, 0, 0.22), transparent 28%),
    linear-gradient(135deg, #3158f4 0%, #1746ed 52%, #0b39d7 100%);
  box-shadow: 0 26px 72px rgba(7, 17, 31, 0.14);
}

.payment-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.8vw, 38px);
}

.payment-band .eyebrow {
  color: var(--amp-yellow);
}

.payment-band p:not(.eyebrow) {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 750;
}

.payment-panel {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 20px 46px rgba(2, 13, 45, 0.18);
}

.payment-method-group {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(47, 87, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(47, 87, 255, 0.045), transparent 40%),
    #fff;
}

.payment-group-label {
  color: var(--amp-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.payment-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.email-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(22px, 3vw, 34px);
  margin-bottom: clamp(26px, 4vw, 46px);
  padding: clamp(28px, 4.2vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 226, 46, 0.22), transparent 26%),
    linear-gradient(135deg, #3158f4 0%, #1746ed 46%, #071747 100%);
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.18);
  color: #fff;
}

.email-signup h2 {
  max-width: 620px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(30px, 4.1vw, 56px);
}

.email-signup p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

.email-signup-form {
  display: grid;
  gap: 11px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 46px rgba(7, 17, 31, 0.18);
  backdrop-filter: blur(18px);
}

.email-signup-form label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-signup-form label span {
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0;
  text-transform: none;
}

.email-signup-form input,
.email-signup-form textarea {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.96);
  color: #10204a;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  outline: none;
}

.email-signup-form input {
  border-radius: 999px;
  padding: 0 18px;
}

.email-signup-form textarea {
  min-height: 92px;
  padding: 14px 16px;
  border-radius: 14px;
  line-height: 1.35;
  resize: vertical;
}

.email-signup-form input:focus,
.email-signup-form textarea:focus {
  border-color: rgba(255, 226, 46, 0.82);
  box-shadow: 0 0 0 4px rgba(255, 226, 46, 0.16);
}

.email-signup-form button {
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff06a 0%, #ffe22e 54%, #f5c400 100%);
  color: #071747;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  grid-template-areas: "copy marquee";
  gap: 20px;
  align-items: stretch;
  margin-top: clamp(22px, 3vw, 34px);
  padding: clamp(18px, 2.3vw, 26px);
  border: 1px solid rgba(47, 87, 255, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 226, 46, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(47, 87, 255, 0.08), rgba(255, 255, 255, 0.96) 44%, rgba(241, 246, 255, 0.96)),
    #fff;
  box-shadow: 0 18px 52px rgba(7, 17, 31, 0.055);
}

.reviews + .section {
  padding-top: clamp(40px, 4.6vw, 54px);
}

.reviews-copy {
  grid-area: copy;
  display: grid;
  align-content: center;
  padding: clamp(18px, 2.2vw, 28px);
  border-radius: 12px;
}

.reviews-copy h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.reviews-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
}

.reviews-copy .button {
  margin-top: 12px;
  color: var(--amp-blue-dark);
  border-color: var(--line);
  background: #fff;
}

.review-marquee {
  grid-area: marquee;
  position: relative;
  align-self: stretch;
  min-height: 248px;
  overflow: hidden;
  border: 1px solid rgba(47, 87, 255, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 226, 46, 0.2), transparent 26%),
    linear-gradient(145deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow:
    0 14px 34px rgba(7, 17, 31, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 58px;
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f6f9ff, rgba(246, 249, 255, 0));
}

.review-track {
  display: flex;
  gap: 14px;
  width: max-content;
  min-height: 100%;
  padding: 18px;
  animation: reviewMarquee 48s linear infinite;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  width: min(334px, 76vw);
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(47, 87, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(7, 17, 31, 0.055);
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
}

.review-card.is-active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.review-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(47, 87, 255, 0.14);
  border-radius: 999px;
  background: rgba(47, 87, 255, 0.07);
  color: var(--amp-blue-strong);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stars {
  color: var(--amp-yellow);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 0 rgba(7, 17, 31, 0.16);
}

.review-card p {
  margin: 0;
  color: #10204a;
  font-size: 18px;
  font-weight: 820;
  line-height: 1.28;
}

.review-card strong {
  color: #071747;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-controls {
  display: none;
}

.review-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #c7d2ea;
  cursor: pointer;
}

.review-dot.is-active {
  width: 28px;
  background: var(--amp-blue);
}

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.reveal-on-scroll {
  opacity: 1;
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-from-left {
  transform: translateX(-42px);
}

.reveal-from-right {
  transform: translateX(42px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.swoosh-section {
  opacity: 0;
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.72, 0.18, 1);
  will-change: transform, opacity;
}

.swoosh-left {
  transform: translate3d(-34px, 18px, 0);
}

.swoosh-right {
  transform: translate3d(34px, 18px, 0);
}

.swoosh-section.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.request {
  padding: 74px 0 82px;
}

.request-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 62px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 226, 46, 0.14), transparent 34%),
    linear-gradient(145deg, var(--amp-blue), var(--amp-blue-strong));
  color: #fff;
  box-shadow: var(--shadow);
}

.request-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -110px;
  border: 30px solid rgba(255, 226, 46, 0.24);
  border-radius: 50%;
}

.request-card h2,
.request-card p,
.request-card .hero-actions,
.request-card .eyebrow {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.request-card h2 {
  color: #fff;
}

.request-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  font-weight: 650;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 226, 46, 0.14), transparent 34%),
    linear-gradient(145deg, var(--amp-blue), var(--amp-blue-strong));
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -120px;
  border: 36px solid rgba(255, 226, 46, 0.26);
  border-radius: 50%;
}

.contact-copy,
.text-request-form {
  position: relative;
  z-index: 1;
}

.contact-copy {
  align-self: center;
}

.contact-copy h2 {
  color: #fff;
  max-width: 620px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 640px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.text-request-form {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(8, 21, 74, 0.2);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.text-request-form label {
  color: #283a62;
  font-size: 13px;
  font-weight: 900;
}

.text-request-form input,
.text-request-form select,
.text-request-form textarea {
  width: 100%;
  border: 1px solid #d4def0;
  border-radius: 8px;
  background: #f8faff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  outline: none;
  padding: 14px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.text-request-form input:focus,
.text-request-form select:focus,
.text-request-form textarea:focus {
  border-color: var(--amp-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 87, 255, 0.13);
}

.text-request-form .button {
  width: 100%;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 46px;
}

.page-hero-copy h1 {
  color: #10204a;
  font-size: clamp(44px, 6vw, 76px);
}

.page-hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
}

.button.secondary.light {
  color: var(--amp-blue-dark);
  border-color: var(--line);
  background: #fff;
}

.page-hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface-blue);
}

.page-hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.directory-hero {
  grid-template-columns: 1fr;
  padding-bottom: 20px;
}

.directory-section {
  padding-top: 26px;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

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

.blog-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 58px rgba(7, 17, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card::before {
  content: "Amp Rescue";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(7, 23, 71, 0.42);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 87, 255, 0.28);
  box-shadow: 0 28px 72px rgba(7, 17, 31, 0.13);
}

.blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(145deg, #071747, var(--amp-blue));
  filter: saturate(1.08) contrast(1.04);
  transition: transform 240ms ease;
}

.blog-card:hover img {
  transform: scale(1.04);
}

.blog-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  aspect-ratio: 16 / 9;
  height: auto;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(47, 87, 255, 0) 36%, rgba(7, 17, 31, 0.42) 100%),
    linear-gradient(115deg, rgba(47, 87, 255, 0.24), transparent 54%),
    radial-gradient(circle at 92% 12%, rgba(255, 226, 46, 0.28), transparent 18%);
}

.blog-card-body {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--amp-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-byline {
  margin: -8px 0 18px;
  color: var(--amp-yellow) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.blog-card p {
  color: var(--muted);
  font-weight: 650;
}

.blog-post {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 82px;
}

.blog-post img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  max-height: 560px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.blog-post article {
  padding-top: 44px;
}

.blog-post h2 {
  margin-top: 42px;
  font-size: clamp(28px, 3vw, 42px);
}

.blog-post p,
.blog-post li {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.blog-post ul {
  padding-left: 22px;
}

.page-band,
.content-grid,
.faq-section,
.link-section,
.image-row {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.page-band {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 34px;
  align-items: start;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--surface-blue);
}

.page-band h2,
.content-grid h2,
.faq-section h2,
.link-section h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 50px;
  padding: 15px 16px 15px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #10204a;
  font-weight: 850;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 16px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amp-blue), var(--amp-blue-strong));
  box-shadow: 0 10px 24px rgba(47, 87, 255, 0.22);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 22px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 72px 0 48px;
}

.content-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.content-grid p,
.faq-grid p {
  color: var(--muted);
  font-weight: 650;
}

.image-row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
  padding-bottom: 72px;
}

.image-row img {
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  object-fit: cover;
}

.faq-section {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-grid details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-grid summary {
  cursor: pointer;
  color: #10204a;
  font-size: 17px;
  font-weight: 900;
}

.faq-grid details p {
  margin: 12px 0 0;
}

.link-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  align-items: start;
  padding: 54px 0 20px;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-cloud a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--amp-blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.simple-page-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 7vw, 96px);
  padding: 86px 0 64px;
}

.simple-page-hero .page-hero-copy {
  max-width: 690px;
}

.simple-page-hero .page-hero-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.94;
}

.simple-page-hero .page-hero-media {
  box-shadow: 0 28px 80px rgba(14, 35, 105, 0.14);
}

.simple-page-hero .page-hero-media img {
  height: 460px;
}

.service-page .page-hero-media img {
  background: #f7faff;
}

.page-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -8px auto 0;
  overflow: hidden;
  border: 1px solid rgba(47, 87, 255, 0.14);
  border-radius: 14px;
  background: var(--line);
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.06);
}

.page-facts div {
  padding: 20px 22px;
  background: linear-gradient(145deg, #fff, #f7faff);
}

.page-facts strong {
  display: block;
  margin-bottom: 5px;
  color: #10204a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-facts span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}

.premium-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 38px;
}

.premium-copy > h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.premium-copy-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.premium-copy-row:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.premium-copy-row h3 {
  margin: 0;
  color: #10204a;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 920;
  line-height: 1.08;
}

.premium-copy-row p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.7;
}

.premium-side-panel {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid rgba(47, 87, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 226, 46, 0.16), transparent 42%),
    linear-gradient(145deg, var(--amp-blue), var(--amp-blue-strong));
  color: #fff;
  box-shadow: 0 22px 58px rgba(7, 17, 31, 0.14);
}

.premium-side-panel h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.premium-side-panel p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.premium-side-panel ul {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.premium-side-panel li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.premium-side-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--amp-yellow);
}

.premium-side-panel .button {
  width: 100%;
  justify-content: center;
}

.location-side-panel {
  background:
    linear-gradient(135deg, rgba(255, 226, 46, 0.18), transparent 42%),
    linear-gradient(145deg, #071747, var(--amp-blue));
}

.compact-links {
  padding-top: 26px;
  padding-bottom: 32px;
}

.compact-request {
  padding-top: 28px;
  padding-bottom: 58px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 64px;
  border-top: 1px solid var(--line);
}

.service-summary-panel {
  position: sticky;
  top: 104px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(47, 87, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(47, 87, 255, 0.08), transparent 46%),
    #fff;
  box-shadow: 0 22px 64px rgba(7, 17, 31, 0.08);
}

.service-summary-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
}

.compact-check-list {
  grid-template-columns: 1fr;
  gap: 0;
}

.compact-check-list li {
  min-height: auto;
  padding: 15px 0 15px 38px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-size: 15px;
}

.compact-check-list li:last-child {
  border-bottom: 0;
}

.compact-check-list li::before {
  top: 15px;
  left: 0;
  width: 22px;
  height: 22px;
}

.compact-check-list li::after {
  top: 21px;
  left: 6px;
}

.service-copy-panel {
  display: grid;
  gap: 0;
}

.service-copy-panel article {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 44px);
  padding: 0 0 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.service-copy-panel h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.04;
}

.service-copy-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.68;
}

.service-faq-compact {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.service-faq-compact .eyebrow {
  margin-bottom: 6px;
}

.service-faq-compact details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.04);
}

.service-faq-compact summary {
  cursor: pointer;
  padding: 17px 18px;
  color: #10204a;
  font-weight: 900;
  list-style-position: outside;
}

.service-faq-compact details p {
  padding: 0 18px 18px;
  font-size: 15px;
  line-height: 1.6;
}

.simple-benefits {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.simple-benefits h2 {
  max-width: 520px;
  font-size: clamp(30px, 4vw, 50px);
}

.simple-benefits .check-list {
  grid-template-columns: 1fr;
}

.simple-benefits .check-list li {
  min-height: auto;
  padding: 14px 0 14px 42px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.simple-benefits .check-list li::before {
  top: 14px;
  left: 0;
}

.simple-benefits .check-list li::after {
  top: 20px;
  left: 6px;
}

.simple-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.simple-content article {
  padding: 0;
  border: 0;
  background: transparent;
}

.simple-content h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.simple-content p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
}

.simple-content.info-content {
  grid-template-columns: 1fr;
  gap: 0;
  width: min(860px, calc(100% - 40px));
  padding: 32px 0 58px;
}

.simple-content.info-content article {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.simple-content.info-content article:first-child {
  padding-top: 0;
}

.simple-content.info-content h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.simple-content.info-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
}

.about-hero {
  padding-top: 50px;
  padding-bottom: 42px;
}

.about-hero .page-hero-media {
  border-radius: 18px;
}

.about-proof,
.about-story,
.about-values {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.about-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 0 40px;
}

.about-proof div {
  padding: 22px 24px;
  border: 1px solid rgba(47, 87, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #f6f9ff);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.06);
}

.about-proof strong {
  display: block;
  color: var(--amp-blue);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 950;
  line-height: 1;
}

.about-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.6fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
  padding: 34px 0 58px;
  border-top: 1px solid var(--line);
}

.about-story h2 {
  max-width: 760px;
}

.about-story p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.72;
}

.about-story aside {
  padding: 26px;
  border: 1px solid rgba(47, 87, 255, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 226, 46, 0.18), transparent 42%),
    linear-gradient(145deg, var(--amp-blue), var(--amp-blue-strong));
  color: #fff;
  box-shadow: var(--shadow);
}

.about-story h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.05;
}

.about-story ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-story li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 760;
}

.about-story li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--amp-yellow);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 0 70px;
}

.about-values article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.05);
}

.about-values h2 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.08;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.62;
}

.location-page .simple-benefits {
  grid-template-columns: 0.9fr 1.1fr;
  padding: 46px 0;
}

.location-page .simple-content {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 920px;
  padding: 58px 0;
}

.location-page .simple-content article {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.location-page .simple-content article:first-child {
  padding-top: 0;
}

.location-page .simple-content h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 36px);
}

.location-page .simple-content p {
  margin: 0;
}

.service-page .faq-section,
.location-page .faq-section {
  padding: 62px 0;
  background: var(--surface-blue);
  border-top: 0;
}

.service-page .faq-grid,
.location-page .faq-grid {
  width: min(900px, 100%);
}

.simple-links {
  padding: 56px 0 0;
}

.site-footer,
footer {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 226, 46, 0.2), transparent 28%),
    linear-gradient(145deg, var(--amp-blue), var(--amp-blue-strong));
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.site-footer::before,
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 78%);
}

footer .brand {
  position: relative;
  z-index: 1;
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
}

.footer-cta,
.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 52px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 0.98;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  padding: 44px 0;
}

.footer-brand img {
  width: 148px;
}

.footer-brand p {
  max-width: 420px;
  margin: 22px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-contact a {
  color: #fff;
  font-weight: 900;
}

.footer-contact a:first-child {
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--amp-yellow);
  color: #071747;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-socials svg path,
.footer-socials svg rect,
.footer-socials svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:first-child svg path,
.footer-socials a:nth-child(3) svg path,
.footer-socials a:nth-child(4) svg path {
  fill: currentColor;
  stroke: none;
}

.footer-socials a:hover {
  border-color: rgba(255, 226, 46, 0.68);
  background: rgba(255, 226, 46, 0.16);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.mobile-cta-bar {
  display: none;
}

@media (min-width: 901px) {
  .hero {
    min-height: 520px;
  }

  .hero-inner {
    min-height: 520px;
    padding: 18px 0 22px;
  }

  .hero-copy {
    padding-top: 0;
  }

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

  .hero-proof {
    margin-top: 16px;
  }

  .trust-strip {
    margin-top: -28px;
  }

  .trust-strip div {
    padding: 18px 22px;
  }

  .quick-info {
    padding: 34px 0 24px;
  }

  .quick-info-grid div {
    min-height: 118px;
    padding: 20px;
  }

  .section {
    padding: 40px 0 26px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .service-card {
    min-height: 252px;
    padding: 18px;
  }

  .service-media {
    height: 132px;
    margin: -18px -18px 18px;
  }

  .split-section {
    gap: clamp(28px, 4.5vw, 58px);
    padding: 30px 0 40px;
  }

  .photo-preview,
  .photo-preview img {
    min-height: 360px;
  }

  .coverage {
    padding: 28px 34px;
  }

  .payment-band {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 30px;
  }

  .email-signup {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .reviews {
    padding: 24px;
  }

  .review-marquee {
    min-height: auto;
  }

  .review-card {
    padding: 26px;
  }

  .request {
    padding: 42px 0 48px;
  }

  .contact-card {
    padding: clamp(34px, 4.2vw, 52px);
  }

  .text-request-form {
    gap: 13px;
    padding: 24px;
  }

  .text-request-form textarea {
    min-height: 112px;
  }

  .page-hero {
    padding: 46px 0 34px;
  }

  .page-hero-media img {
    height: 480px;
  }

  .directory-hero {
    padding-bottom: 12px;
  }
}

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

  .site-header {
    gap: 12px;
  }

  .mobile-nav {
    display: block;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner,
  .split-section,
  .coverage,
  .payment-band,
  .reviews,
  .contact-card,
  .quick-info,
  .page-facts,
  .premium-detail,
  .premium-copy-row,
  .page-hero,
  .about-proof,
  .about-story,
  .about-values,
  .page-band,
  .content-grid,
  .link-section,
  .service-detail,
  .service-copy-panel article {
    grid-template-columns: 1fr;
  }

  .reviews {
    grid-template-areas:
      "copy"
      "marquee";
  }

  .hero-inner {
    gap: 20px;
    padding: 24px 0 34px;
  }

  .hero-contact-card {
    width: min(500px, 100%);
    margin-left: auto;
  }

  .hero-media img {
    object-position: 40% 52%;
  }

  .hero-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .page-hero {
    padding: 54px 0 48px;
  }

  .page-hero-media img {
    height: 420px;
  }

  .page-facts {
    margin-top: 0;
  }

  .page-facts div {
    padding: 18px;
  }

  .premium-detail {
    gap: 26px;
    padding: 38px 0;
  }

  .premium-copy > h2 {
    margin-bottom: 10px;
  }

  .premium-copy-row {
    gap: 10px;
    padding: 22px 0;
  }

  .premium-side-panel {
    position: static;
    padding: 22px;
  }

  .about-proof {
    padding-bottom: 26px;
  }

  .about-story {
    gap: 22px;
    padding: 28px 0 42px;
  }

  .about-values {
    padding-bottom: 54px;
  }

  .check-list,
  .image-row {
    grid-template-columns: 1fr;
  }

  .service-detail {
    gap: 34px;
    padding: 34px 0 48px;
  }

  .service-summary-panel {
    position: static;
    padding: 22px 24px;
  }

  .service-summary-panel h2 {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .compact-check-list li {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .compact-check-list li::before {
    top: 12px;
  }

  .compact-check-list li::after {
    top: 18px;
  }

  .service-copy-panel article {
    gap: 12px;
    margin-bottom: 26px;
    padding-bottom: 26px;
  }

  .dispatch-panel {
    max-width: 520px;
  }

  .trust-strip,
  .quick-facts-band,
  .service-grid,
  .quick-info-grid,
  .directory-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-cta-actions {
    justify-content: flex-start;
  }

  .contact-card {
    padding: 42px;
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .mobile-cta-bar {
    position: fixed;
    right: auto;
    bottom: 16px;
    left: 50%;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: min(520px, calc(100% - 36px));
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 44px rgba(7, 17, 31, 0.22);
    transform: translateX(-50%);
    backdrop-filter: blur(20px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.is-hero-view .mobile-cta-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(18px);
  }

  .mobile-cta-bar a {
    display: grid;
    place-items: center;
    min-height: 40px;
    border-radius: 999px;
    color: #071747;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-cta-bar a:first-child {
    background: linear-gradient(135deg, #fff06a 0%, #ffe22e 54%, #f5c400 100%);
    color: #061645;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  }

  .mobile-cta-bar a:nth-child(2) {
    background: rgba(47, 87, 255, 0.1);
    color: var(--amp-blue-strong);
  }

  .mobile-cta-bar a:last-child {
    background: linear-gradient(135deg, #071747 0%, #123fdc 68%, #3158f4 100%);
    color: #fff;
  }

  body {
    padding-bottom: 78px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-call {
    padding: 10px 14px;
    font-size: 12px;
  }

  .mobile-nav summary {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: transparent;
    font-size: 0;
  }

  .mobile-nav summary::after {
    margin-top: 0;
  }

  .brand-copy {
    font-size: 11px;
  }

  .site-header .brand img {
    width: 108px;
  }

  h1 {
    font-size: 40px;
    line-height: 1;
  }

  .service-page .simple-page-hero .page-hero-copy h1,
  .location-page .simple-page-hero .page-hero-copy h1 {
    font-size: 35px;
    line-height: 1.04;
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    gap: 14px;
    padding: 18px 0 24px;
  }

  .hero-contact-card {
    gap: 7px;
    width: min(440px, 100%);
    padding: 0;
    border-radius: 14px;
  }

  .hero-contact-head {
    padding: 14px 16px 12px;
    border-radius: 14px 14px 0 0;
  }

  .hero-contact-field {
    padding: 0 16px;
  }

  .hero-contact-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 16px;
  }

  .hero-send-button {
    margin: 2px 16px 16px;
  }

  .hero-contact-card h2 {
    font-size: 25px;
  }

  .hero-contact-card p {
    font-size: 13px;
  }

  .hero-contact-field label {
    font-size: 12px;
  }

  .hero-contact-field input,
  .hero-contact-field select,
  .hero-contact-field textarea {
    border-radius: 14px;
    font-size: 14px;
  }

  .hero-contact-field input,
  .hero-contact-field select {
    min-height: 32px;
  }

  .hero-contact-field textarea {
    height: 56px;
    min-height: 56px;
  }

  .page-hero-copy h1 {
    font-size: 38px;
    line-height: 1;
  }

  .page-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .page-hero-media img {
    height: 320px;
  }

  .simple-page-hero .page-hero-media img {
    height: 280px;
  }

  .simple-page-hero {
    gap: 24px;
    padding-top: 44px;
  }

  .section {
    padding: 38px 0 30px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .page-band {
    padding: 28px;
  }

  .contact-card {
    padding: 28px;
  }

  .contact-card::after {
    width: 260px;
    height: 260px;
    right: -110px;
    top: -100px;
    border-width: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .text-request-form {
    padding: 20px;
  }

  .content-grid article {
    padding: 24px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-proof div {
    min-height: 68px;
    padding: 11px 12px;
  }

  .hero-proof strong,
  .hero-proof span {
    text-align: center;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    margin-top: 4px;
    font-size: 10px;
  }

  .hero-actions,
  footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .trust-strip,
  .service-grid,
  .quick-info,
  .quick-info-grid,
  .directory-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .quick-info {
    padding: 30px 0 12px;
  }

  .quick-info-grid div {
    min-height: auto;
    padding: 20px;
  }

  .service-card {
    min-height: auto;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(7, 17, 31, 0.06);
  }

  .service-media {
    height: 176px;
    margin: -18px -18px 18px;
  }

  .service-title-row {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border-color: rgba(47, 87, 255, 0.2);
    color: var(--amp-blue);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.94),
      0 10px 20px rgba(22, 72, 176, 0.09);
  }

  .service-icon::after {
    inset: 6px;
  }

  .service-icon[style*="--service-icon"]::before {
    width: 29px;
    height: 29px;
  }

  .service-icon img {
    width: 29px;
    height: 29px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(99%) saturate(2811%) hue-rotate(220deg) brightness(103%) contrast(102%) drop-shadow(0 5px 10px rgba(22, 72, 176, 0.16));
  }

  .service-card h3 {
    font-size: 21px;
    line-height: 1.08;
  }

  .service-card p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.55;
  }

  .footer-cta,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-cta {
    display: none;
  }

  .footer-main {
    display: grid;
    padding: 28px 0 10px;
    gap: 0;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    padding: 10px 0 92px;
    border-top: 0;
    text-align: center;
  }

  .site-footer,
  footer {
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 226, 46, 0.16), transparent 28%),
      linear-gradient(180deg, #3158f4 0%, #123fdc 52%, #09268a 100%);
  }

  .site-footer::before,
  footer::before {
    opacity: 0.45;
    background-size: 58px 58px;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .footer-brand img {
    width: 116px;
  }

  .footer-brand p {
    max-width: 280px;
    margin: 12px auto 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.45;
  }

  .footer-column {
    display: none;
  }

  .email-signup {
    display: block;
    width: min(100% - 32px, 1180px);
    margin-top: 22px;
    margin-bottom: 26px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(47, 87, 255, 0.14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(7, 17, 31, 0.1);
    color: #071747;
  }

  .email-signup-copy {
    padding: 22px 18px 0;
  }

  .email-signup .eyebrow {
    margin-bottom: 8px;
    color: var(--amp-blue);
  }

  .email-signup h2 {
    margin-bottom: 8px;
    color: #071747;
    font-size: 26px;
    line-height: 1.05;
  }

  .email-signup p:not(.eyebrow) {
    color: #56647b;
    font-size: 14px;
    line-height: 1.48;
  }

  .email-signup-form {
    gap: 9px;
    margin: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .email-signup-form label {
    color: #071747;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .email-signup-form label span {
    color: #8290a6;
  }

  .email-signup-form input,
  .email-signup-form textarea {
    min-width: 0;
    min-height: 48px;
    border: 1px solid rgba(47, 87, 255, 0.16);
    border-radius: 12px;
    background: #f8fbff;
    color: #071747;
    padding-right: 14px;
    font-size: 14px;
  }

  .email-signup-form input {
    padding: 0 14px;
  }

  .email-signup-form textarea {
    min-height: 92px;
    padding: 12px 14px;
    resize: vertical;
  }

  .email-signup-form button {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    box-shadow: 0 14px 24px rgba(255, 226, 46, 0.16);
  }

  .footer-contact {
    grid-template-columns: 1fr;
    width: min(100%, 300px);
    gap: 7px;
  }

  .footer-contact a,
  .footer-contact a:first-child {
    justify-content: center;
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    text-align: center;
  }

  .footer-contact a:not(:first-child) {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
  }

  .footer-socials {
    justify-content: center;
    margin-top: 12px;
  }

  .footer-socials a {
    width: 36px;
    height: 36px;
  }

  .trust-strip div,
  .trust-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 16px;
    transform: none;
  }

  .quick-facts-band div,
  .quick-facts-band div:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 23, 71, 0.08);
    padding: 17px 18px;
  }

  .quick-facts-band strong {
    white-space: normal;
    font-size: 22px;
  }

  .quick-facts-band span {
    font-size: 10px;
  }

  .quick-facts-band p {
    text-align: center;
    font-size: 14px;
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .quick-facts-band div:last-child {
    border-bottom: 0;
  }

  .coverage {
    padding: 24px;
  }

  .payment-band {
    gap: 18px;
    padding: 24px;
  }

  .payment-panel {
    padding: 12px;
  }

  .payment-logos {
    gap: 16px 20px;
  }

  .payment-logo {
    min-height: 0;
    padding: 0;
  }

  .share-location-hero {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 620px);
    padding: 38px 0 84px;
  }

  .share-location-card {
    padding: 24px;
  }

  .share-location-card h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

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

  .reviews {
    gap: 14px;
    padding: 20px;
  }

  .review-marquee {
    min-height: auto;
  }

  .review-card {
    align-content: center;
    width: min(320px, 78vw);
    min-height: 210px;
    padding: 22px;
  }

  .review-card p {
    font-size: 18px;
    line-height: 1.26;
  }

  .reveal-from-left,
  .reveal-from-right {
    transform: translateY(28px);
  }

  .request {
    padding: 38px 0;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 18px;
    bottom: 16px;
    left: 18px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 44px rgba(7, 17, 31, 0.22);
    width: auto;
    transform: none;
    backdrop-filter: blur(20px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.is-hero-view .mobile-cta-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
  }

  .mobile-cta-bar a {
    display: grid;
    place-items: center;
    min-height: 40px;
    border-radius: 999px;
    color: #071747;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-cta-bar a:first-child {
    background: linear-gradient(135deg, #fff06a 0%, #ffe22e 54%, #f5c400 100%);
    color: #061645;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  }

  .mobile-cta-bar a:nth-child(2) {
    background: rgba(47, 87, 255, 0.1);
    color: var(--amp-blue-strong);
  }

  .mobile-cta-bar a:last-child {
    background: linear-gradient(135deg, #071747 0%, #123fdc 68%, #3158f4 100%);
    color: #fff;
  }

  body {
    padding-bottom: 78px;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding: 12px 16px;
    gap: 9px;
  }

  .header-call {
    min-width: auto;
    padding: 10px 12px;
    font-size: 11px;
  }

  .site-header .brand img {
    width: 98px;
  }

  .mobile-nav summary {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: transparent;
    font-size: 0;
  }

  .mobile-nav summary::after {
    margin-top: 0;
  }

  .mobile-nav-menu {
    right: -2px;
    width: min(286px, calc(100vw - 28px));
  }

  h1,
  .page-hero-copy h1,
  .simple-page-hero .page-hero-copy h1 {
    font-size: 34px;
    line-height: 1.02;
  }

  .service-page .simple-page-hero .page-hero-copy h1,
  .location-page .simple-page-hero .page-hero-copy h1 {
    font-size: 32px;
    line-height: 1.04;
  }

  .hero-copy h1 {
    font-size: 39px;
    line-height: 0.98;
  }

  .section-heading h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .page-hero {
    padding: 42px 0 38px;
  }

  .page-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.58;
  }

  .page-hero-media img,
  .simple-page-hero .page-hero-media img {
    height: 250px;
  }

  .service-detail,
  .directory-section {
    width: min(100% - 32px, 1180px);
  }

  .service-summary-panel,
  .content-grid article,
  .page-band,
  .contact-card {
    padding: 22px;
  }

  .service-copy-panel h2 {
    font-size: 27px;
  }

  .service-copy-panel p,
  .blog-post p,
  .blog-post li {
    font-size: 15px;
    line-height: 1.66;
  }

  .faq-grid summary {
    padding: 18px;
    font-size: 16px;
    line-height: 1.35;
  }

  .faq-grid details p {
    padding: 0 18px 18px;
  }

  .hero-contact-head {
    gap: 10px;
  }

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

  .hero-text-now {
    min-width: 60px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }
}
