:root {
  --ink: #111111;
  --ink-soft: #1a1a1a;
  --petrol: #1a1a1a;
  --petrol-2: #2a2a2a;
  --steel: #9e9e9e;
  --warm: #f2f2f2;
  --paper: #fafafa;
  --safety: #f0b429;
  --safety-2: #ffd36a;
  --line: rgba(17, 17, 17, 0.14);
  --muted: #596367;
  --white: #ffffff;
  --red: #d32f2f;
  --red-dark: #b71c1c;
  --shadow: 0 14px 30px rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 10px 16px;
  background: rgba(17, 17, 17, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 5px;
  border: 2px solid var(--safety);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  flex: 0 0 50px;
  overflow: hidden;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: block;
  min-width: 0;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  white-space: nowrap;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy small {
  display: none;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--safety);
}

.site-nav__mobile-only {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(240, 180, 41, 0.45);
  background: rgba(240, 180, 41, 0.1);
  outline: none;
}

.menu-toggle__icon {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
}

.header-cta {
  min-width: 46px;
  padding: 0 12px;
  background: var(--red);
  color: var(--white);
}

.header-cta span {
  display: none;
}

.header-cta img,
.btn img,
.text-link img {
  flex: 0 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.98), rgba(26, 26, 26, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 92px);
  color: var(--white);
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 0 54%, rgba(240, 180, 41, 0.1) 54% 58%, transparent 58%),
    radial-gradient(circle at 85% 20%, rgba(240, 180, 41, 0.16), transparent 28rem);
}

.hero::after {
  right: -120px;
  bottom: -140px;
  z-index: -1;
  width: 380px;
  height: 380px;
  border: 56px solid rgba(174, 184, 186, 0.1);
  border-radius: 999px;
}

.hero-inner {
  display: grid;
  align-items: center;
  gap: 34px;
  min-height: 760px;
  padding-block: 52px 42px;
}

.hero-content {
  width: min(760px, 100%);
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  margin-bottom: 18px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-logo {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--white);
}

.hero-brand-lockup span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--safety-2);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.decision-grid h2,
.visual-copy h2,
.process-section h2,
.trust-grid h2,
.location-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: 2.62rem;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

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

.btn {
  width: 100%;
  max-width: 320px;
  padding: 0 20px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(211, 47, 47, 0.28);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--red-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--safety-2);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 88px;
}

.hero-collage figure {
  position: relative;
  min-height: 146px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero-collage figure > img {
  width: 100%;
  height: 100%;
  min-height: 146px;
  object-fit: cover;
}

.hero-collage figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(16, 24, 32, 0.78);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
}

.collage-main {
  grid-column: auto;
}

.collage-main img {
  min-height: 146px;
}

.hero-location-card {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(240, 180, 41, 0.42);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.9);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.hero-location-card img {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: 8px;
  background: var(--safety);
}

.hero-location-card strong {
  line-height: 1.1;
}

.hero-location-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
}

.decision-band,
.services-section,
.visual-system,
.process-section,
.trust-section,
.location-section,
.final-cta {
  padding-block: 64px;
}

.decision-band {
  background: var(--warm);
  border-bottom: 1px solid var(--line);
}

.decision-grid,
.visual-grid,
.trust-grid,
.location-grid,
.final-grid {
  display: grid;
  gap: 28px;
}

.decision-grid p,
.visual-copy p,
.section-heading p,
.trust-grid p,
.location-copy p,
.final-cta p {
  margin: 16px 0 0;
  color: var(--muted);
}

.decision-grid h2,
.visual-copy h2,
.trust-grid h2,
.location-copy h2,
.final-cta h2,
.section-heading h2,
.process-section h2 {
  font-size: 2rem;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading .section-kicker,
.decision-band .section-kicker,
.trust-section .section-kicker,
.location-section .section-kicker {
  color: var(--red);
}

.services-section {
  background: var(--paper);
}

.services-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  min-height: 268px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), transparent 46px),
    var(--white);
  box-shadow: 0 8px 20px rgba(16, 24, 32, 0.06);
}

.service-icon {
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 8px;
  background: var(--safety);
  object-fit: contain;
}

.service-card h3 {
  margin: 18px 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.visual-system {
  background: var(--ink);
  color: var(--white);
}

.visual-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.visual-system .section-kicker {
  color: var(--safety-2);
}

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

.photo-rail img {
  width: 100%;
  height: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-gallery {
  background: var(--ink);
  color: var(--white);
  padding-block: 64px;
}

.promo-page-hero {
  padding-block: 48px 32px;
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.98), rgba(26, 26, 26, 0.96));
  color: var(--white);
}

.promo-page-hero .section-kicker {
  color: var(--safety-2);
}

.promo-page-hero h1 {
  margin: 0;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.promo-page-intro {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.promo-gallery .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.promo-gallery .section-kicker {
  color: var(--safety-2);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.promo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--ink-soft);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
  line-height: 0;
}

.promo-card:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}

.promo-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  cursor: zoom-in;
}

.promo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.promo-lightbox[hidden] {
  display: none;
}

.promo-lightbox__image {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.promo-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.promo-lightbox__close:hover,
.promo-lightbox__close:focus-visible {
  border-color: rgba(240, 180, 41, 0.55);
  background: rgba(211, 47, 47, 0.92);
  outline: none;
}

.promo-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.promo-actions .text-link {
  color: var(--safety-2);
}

.promo-actions .text-link:hover {
  color: var(--white);
}

.process-section {
  background: var(--warm);
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 214px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.process-list h3 {
  margin: 18px 0 8px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.trust-section {
  background: var(--paper);
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 58px;
  padding: 14px 16px;
  border-left: 5px solid var(--safety);
  border-radius: 8px;
  background: var(--warm);
  color: var(--ink-soft);
  font-weight: 700;
}

.location-section {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.05), transparent 45%),
    #f2f2f2;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.location-actions .btn {
  width: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: var(--red);
  font-weight: 900;
}

.map-croquis {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 242, 242, 0.92)),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.08) 0, rgba(17, 17, 17, 0.08) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.07) 0, rgba(17, 17, 17, 0.07) 1px, transparent 1px, transparent 48px);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.map-route {
  position: absolute;
  inset: 34px 24px 28px 92px;
  border-top: 4px solid rgba(17, 17, 17, 0.32);
  border-right: 4px solid rgba(17, 17, 17, 0.32);
  border-radius: 0 48px 0 0;
}

.map-route::before {
  position: absolute;
  content: "";
  right: -4px;
  bottom: 18px;
  width: 52%;
  border-bottom: 4px solid rgba(240, 180, 41, 0.72);
  transform: rotate(-18deg);
  transform-origin: right center;
}

.map-pin {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 8px;
  background: var(--safety);
  box-shadow: 0 12px 24px rgba(16, 24, 32, 0.22);
}

.map-pin img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
}

.map-croquis strong,
.map-croquis span,
.map-croquis small {
  position: relative;
  z-index: 1;
  display: block;
}

.map-croquis strong {
  margin-top: 10px;
  font-size: 1.28rem;
}

.map-croquis span {
  margin-top: 4px;
  font-weight: 800;
  max-width: 280px;
}

.map-croquis small {
  color: var(--muted);
  font-weight: 800;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 1), rgba(26, 26, 26, 1));
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .section-kicker {
  color: var(--safety-2);
}

.final-grid {
  align-items: center;
}

.site-footer {
  padding: 2.5rem 0 1.75rem;
  background: linear-gradient(180deg, #111111, #0a0a0a);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer__inner {
  display: grid;
  gap: 1.75rem;
}

.site-footer__client {
  display: grid;
  gap: 0.45rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.site-footer__brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  object-fit: contain;
  background: var(--white);
}

.site-footer__brand span {
  line-height: 1.2;
}

.site-footer__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-facebook img {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-facebook:hover,
.footer-facebook:focus-visible {
  color: var(--white);
  outline: none;
}

.footer-facebook:hover img,
.footer-facebook:focus-visible img {
  opacity: 1;
}

.site-footer__provider {
  display: grid;
  gap: 0.35rem;
}

.site-footer__provider-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.45;
}

.site-footer__provider .webdot-signature-logo {
  width: fit-content;
  font-size: 1.05rem;
}

.quick-help {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}

.quick-help-toggle {
  position: relative;
  width: 156px;
  height: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 16px 0 46px;
  border: 1px solid rgba(211, 47, 47, 0.45);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  line-height: 1;
  transition:
    width 240ms ease,
    padding 240ms ease,
    transform 240ms ease,
    border-radius 240ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.quick-help-toggle:hover,
.quick-help-toggle:focus-visible {
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  outline: none;
}

.quick-help-toggle img {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}

.quick-help-toggle span {
  display: inline-block;
  max-width: 96px;
  overflow: hidden;
  white-space: nowrap;
}

.quick-help.is-near-footer .quick-help-toggle {
  width: 52px;
  height: 52px;
  min-height: 52px;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
}

.quick-help.is-near-footer .quick-help-toggle img {
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
}

.quick-help.is-near-footer .quick-help-toggle span {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
}

.quick-help-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(340px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.quick-help-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #f7f7f7;
}

.quick-help-head strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.quick-help-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quick-help-close {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ececec;
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
}

.quick-help-options {
  display: grid;
  padding: 9px;
}

.quick-help-options a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.quick-help-options a:hover,
.quick-help-options a:focus-visible {
  transform: translateX(2px);
  background: rgba(211, 47, 47, 0.08);
  color: var(--red);
  outline: none;
}

.quick-help-options a b {
  color: var(--red);
  font-weight: 900;
}

@media (min-width: 560px) {
  .header-cta span {
    display: block;
  }

  .btn {
    width: auto;
  }

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

@media (min-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 64px));
  }

  .site-header {
    min-height: 72px;
    padding: 8px 32px;
  }

  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-nav__mobile-only {
    display: none;
  }

  .site-nav__desktop-only {
    display: inline-flex;
  }

  .site-nav a {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .site-nav a.site-nav__featured {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
  }

  .site-nav a[aria-current="page"] {
    color: var(--safety);
  }

  .hero,
  .hero-inner {
    min-height: 740px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
    padding-block: 70px 44px;
  }

  .hero-collage {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    grid-template-rows: repeat(3, minmax(118px, 1fr));
    min-height: 560px;
    padding-bottom: 0;
  }

  .hero-collage figure {
    min-height: auto;
  }

  .hero-collage figure > img {
    min-height: auto;
  }

  .collage-main {
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .hero-location-card {
    right: auto;
    bottom: 18px;
    left: 18px;
    width: min(340px, calc(100% - 36px));
  }

  .hero-logo {
    width: 62px;
    height: 62px;
  }

  .hero h1 {
    font-size: 4.05rem;
  }

  .hero-subtitle {
    font-size: 1.16rem;
  }

  .decision-band,
  .services-section,
  .visual-system,
  .process-section,
  .trust-section,
  .location-section,
  .final-cta {
    padding-block: 82px;
  }

  .decision-grid,
  .visual-grid,
  .trust-grid,
  .location-grid,
  .final-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }

  .decision-grid h2,
  .visual-copy h2,
  .trust-grid h2,
  .location-copy h2,
  .final-cta h2,
  .section-heading h2,
  .process-section h2 {
    font-size: 2.62rem;
  }

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

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-rail img {
    height: 180px;
  }

  .photo-rail img:first-child {
    grid-row: span 2;
    height: 370px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    align-items: start;
    gap: 2rem;
  }

  .site-footer__provider {
    justify-items: end;
    text-align: right;
    align-self: end;
  }
}

@media (min-width: 1040px) {
  .hero h1 {
    font-size: 4.75rem;
  }

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

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

  .photo-rail {
    grid-template-columns: minmax(0, 1.05fr) repeat(2, minmax(0, 0.74fr));
    grid-template-rows: repeat(2, 176px);
  }

  .photo-rail img {
    height: 100%;
    aspect-ratio: auto;
  }

  .photo-rail img:first-child {
    grid-row: 1 / 3;
    height: 100%;
  }

  .photo-rail img:nth-child(2) {
    grid-column: 2 / 4;
  }

  .quick-help {
    right: 12px;
    bottom: 12px;
  }

  .quick-help-toggle {
    width: 52px;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
  }

  .quick-help-toggle img {
    left: 50%;
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%);
  }

  .quick-help-toggle span {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
  }

  .quick-help-panel {
    width: min(320px, calc(100vw - 24px));
  }
}

@media (min-width: 1440px) {
  .container {
    width: min(1180px, calc(100% - 80px));
  }

  .site-header {
    padding-inline: 40px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    gap: 48px;
  }

  .hero-collage {
    min-height: 580px;
  }

  .promo-page-intro {
    max-width: 720px;
  }
}

@media (min-width: 1920px) {
  .container {
    width: min(1240px, calc(100% - 96px));
  }

  .hero,
  .hero-inner {
    min-height: min(820px, 90vh);
  }

  .hero h1 {
    font-size: clamp(3.6rem, 3.1vw, 4.75rem);
  }

  .hero-subtitle {
    max-width: 34rem;
  }

  .hero-collage {
    min-height: 600px;
  }

  .promo-page-hero {
    padding-block: 56px 36px;
  }

  .promo-page-hero h1 {
    font-size: clamp(2.2rem, 2.2vw, 2.75rem);
  }

  .promo-grid {
    gap: 20px;
  }

  .promo-gallery {
    padding-block: 72px;
  }
}

@media (min-width: 2560px) {
  .container {
    width: min(1280px, calc(100% - 120px));
  }

  .hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 759px) {
  .site-header {
    flex-wrap: wrap;
    padding: 8px 12px 10px;
    row-gap: 8px;
    min-height: 0;
  }

  .brand {
    gap: 10px;
  }

  .brand-badge {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    padding: 4px;
    box-shadow: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-nav {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 0;
    margin-top: 4px;
    padding: 6px 0 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.28);
    border-radius: 0 0 8px 8px;
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    display: block;
    min-height: 46px;
    padding: 12px 14px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    white-space: normal;
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .site-nav__mobile-only {
    display: block;
  }

  .site-nav__desktop-only {
    display: none;
  }

  .site-nav a.site-nav__featured,
  .site-nav a[aria-current="page"] {
    border-left: 3px solid var(--safety);
    padding-left: 11px;
    background: rgba(240, 180, 41, 0.1);
    color: var(--safety-2);
  }

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

  .hero-inner {
    gap: 0;
    padding-block: 28px 32px;
  }

  .hero-brand-lockup {
    gap: 0;
    min-height: auto;
    margin-bottom: 12px;
    padding: 6px 12px;
  }

  .hero-logo {
    display: none;
  }

  .hero-brand-lockup span {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.35rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
  }

  .hero-subtitle {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: none;
    min-height: 44px;
    padding-inline: 16px;
    font-size: 0.9rem;
  }

  .hero-chips {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-chips span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .hero-collage {
    display: none;
  }

  .quick-help {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .quick-help-toggle {
    width: 48px;
    height: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  }

  .quick-help-toggle img {
    left: 50%;
    top: 50%;
    width: 21px;
    height: 21px;
    transform: translate(-50%, -50%);
  }

  .quick-help-toggle span {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
  }

  main {
    scroll-padding-top: 72px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.05rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
}

/* Credito profesional Webdot */
.webdot-signature-logo {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  transition: opacity 160ms ease, transform 160ms ease;
}

.webdot-signature-logo:hover,
.webdot-signature-logo:focus-visible {
  opacity: 0.9;
  outline: none;
}

.webdot-signature-dot {
  color: #2563eb;
}
