:root {
  color-scheme: light;
  --bg: #f6f9fc;
  --surface: #ffffff;
  --surface-2: #edf4fa;
  --text: #152231;
  --muted: #647486;
  --line: #dce6ef;
  --blue: #1677a8;
  --blue-strong: #0f5d86;
  --blue-soft: #e0f1fb;
  --cyan: #2da9d7;
  --slate: #26384b;
  --danger: #c94f43;
  --success: #267653;
  --shadow: 0 22px 70px rgba(35, 56, 75, 0.14);
  --shadow-soft: 0 12px 34px rgba(35, 56, 75, 0.09);
  --radius: 8px;
  --font-body: "Open Sans", "Segoe UI", Arial, sans-serif;
  --font-display: "Manrope", "Open Sans", "Segoe UI", Arial, sans-serif;
  --font-numbers: "Manrope", "Open Sans", Arial, sans-serif;
  font-family: var(--font-body);
}

@property --button-shine-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

/* V5: automotive long-landing concept with green accent and layered sections. */
.theme-v5 {
  --bg: #f2fbfb;
  --surface: #ffffff;
  --surface-2: #eaf7f6;
  --text: #273138;
  --muted: #718088;
  --line: #d9e9e8;
  --blue: #85cf3a;
  --blue-strong: #5ba81f;
  --blue-soft: rgba(133, 207, 58, 0.16);
  --accent-cyan: #35b6d6;
  --accent-warm: #f6c94b;
  --cyan: #2a363d;
  --slate: #20262d;
  --shadow: 0 28px 80px rgba(45, 75, 78, 0.15);
  background:
    linear-gradient(90deg, rgba(42, 54, 61, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(42, 54, 61, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: 46px 46px;
}

.theme-v5 .site-header {
  width: min(1240px, calc(100% - 36px));
  margin: 18px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(22, 31, 36, 0.1);
}

.theme-v5 .hero {
  position: relative;
  isolation: isolate;
  width: min(1240px, calc(100% - 36px));
  min-height: 660px;
  margin: -76px auto 0;
  padding-top: 138px;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(28, 35, 42, 0.72), rgba(28, 35, 42, 0.22)),
    url("../img/hero-driver-card.png") center / cover;
  box-shadow: var(--shadow);
}

.theme-v5 .hero::before,
.theme-v5 .hero::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.theme-v5 .hero::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(133, 207, 58, 0.2) 52% 53.5%, transparent 53.5%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px);
  opacity: 0.72;
}

.theme-v5 .hero::after {
  right: clamp(20px, 5vw, 78px);
  bottom: clamp(24px, 4vw, 56px);
  width: min(360px, 38vw);
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(255, 255, 255, 0.5) 16% 18%, transparent 18% 38%, rgba(255, 255, 255, 0.5) 38% 40%, transparent 40%),
    rgba(14, 21, 27, 0.24);
  transform: skewX(-14deg);
}

.theme-v5 .hero > * {
  position: relative;
  z-index: 1;
}

.theme-v5 .hero h1,
.theme-v5 .hero .hero-lead,
.theme-v5 .hero .eyebrow {
  color: #ffffff;
}

.theme-v5 .hero .hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.theme-v5 .brand-mark,
.theme-v5 .button-primary,
.theme-v5 .process-item span {
  background: linear-gradient(135deg, #9ee846, #6bbd22);
  color: #152014;
}

.theme-v5 .button-primary {
  box-shadow: 0 14px 30px rgba(133, 207, 58, 0.28);
}

.theme-v5 .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.88);
}

.theme-v5 .hero-panel {
  display: none;
}

.theme-v5 .hero-metrics div {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.theme-v5 .trust-bar,
.theme-v5 .card-types-section,
.theme-v5 .intro-section,
.theme-v5 .plans-section,
.theme-v5 .process-section,
.theme-v5 .documents-section,
.theme-v5 .area-section,
.theme-v5 .faq-section {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.theme-v5 .trust-bar {
  margin-top: 0;
  border: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.theme-v5 .trust-bar article {
  transition: background-color 180ms ease, transform 180ms ease;
}

.theme-v5 .trust-bar article:hover {
  background: #f7fff1;
  transform: translateY(-2px);
}

.theme-v5 .benefit-card,
.theme-v5 .card-type-card,
.theme-v5 .card-type-help,
.theme-v5 .plan-card,
.theme-v5 .process-item,
.theme-v5 .document-card,
.theme-v5 .document-note,
.theme-v5 .faq-list details,
.theme-v5 .request-form {
  box-shadow: 0 16px 42px rgba(36, 63, 63, 0.1);
}

.theme-v5 .plan-card-featured,
.theme-v5 .document-note {
  background: linear-gradient(180deg, #effee5, #ffffff);
}

.theme-v5 .risk-section,
.theme-v5 .request-section {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 30%, rgba(133, 207, 58, 0.22), transparent 28%),
    #20262d;
  box-shadow: var(--shadow);
}

.theme-v5 .area-map {
  background:
    linear-gradient(90deg, rgba(133, 207, 58, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(133, 207, 58, 0.08) 1px, transparent 1px),
    #ffffff;
}

.theme-v5 .map-ring {
  border-color: rgba(133, 207, 58, 0.54);
}

.theme-v5 .map-dot {
  background: #85cf3a;
}

.theme-v5 .file-card {
  position: relative;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #f9fffb;
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.theme-v5 .file-card:hover,
.theme-v5 .file-card.has-file {
  transform: translateY(-2px);
  border-color: #85cf3a;
  background: #effee5;
}

.theme-v5 .file-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.theme-v5 .file-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: #85cf3a;
  color: #152014;
  font-size: 1.4rem;
  font-weight: 900;
}

.theme-v5 .file-card > span:last-child {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.theme-v5 .file-card strong {
  color: var(--text);
  line-height: 1.22;
}

.theme-v5 .file-card small {
  display: none;
  max-width: 100%;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-v5 .file-card.has-file small {
  display: block;
}

@media (max-width: 900px) {
  .theme-v5 .site-header,
  .theme-v5 .hero,
  .theme-v5 .trust-bar,
  .theme-v5 .intro-section,
  .theme-v5 .plans-section,
  .theme-v5 .process-section,
  .theme-v5 .documents-section,
  .theme-v5 .area-section,
  .theme-v5 .faq-section,
  .theme-v5 .risk-section,
  .theme-v5 .request-section {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    border-radius: 0;
  }

  .theme-v5 .hero {
    margin-top: 0;
    padding-top: 44px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 68px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 230, 239, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.hero-actions,
.hero-metrics,
.trust-bar article,
.button {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--surface);
  font-size: 0.84rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.06rem;
  line-height: 1.06;
}

.brand small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-nav {
  gap: clamp(14px, 2.1vw, 28px);
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.15;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.nav-phone {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: clamp(26px, 3.8vw, 54px);
  align-items: center;
  min-height: calc(100vh - 150px);
  padding: clamp(32px, 4.5vw, 56px) clamp(18px, 5vw, 68px) clamp(28px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.96)),
    radial-gradient(circle at 85% 12%, rgba(45, 169, 215, 0.2), transparent 32%);
}

.hero-copy {
  max-width: 790px;
}

.hero-region-note {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 34px;
  margin: 0 0 12px;
  border-radius: var(--radius);
  padding: 7px 12px;
  background: rgba(16, 24, 32, 0.88);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.18;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
summary,
span,
strong,
small {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.58;
}

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

.button {
  position: relative;
  min-height: 48px;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.button::before {
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  transition: transform 480ms ease;
  pointer-events: none;
  content: "";
}

.hero-actions .button::after {
  position: absolute;
  inset: -1px;
  --button-shine-angle: 0deg;
  border-radius: inherit;
  padding: 4px;
  background:
    conic-gradient(
      from var(--button-shine-angle),
      transparent 0 58%,
      rgba(107, 189, 34, 0.2) 64%,
      rgba(107, 189, 34, 0.92) 72%,
      #f4ffd7 78%,
      #ffffff 80%,
      #f4ffd7 82%,
      #9ee846 88%,
      transparent 96% 100%
    );
  opacity: 0;
  pointer-events: none;
  content: "";
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.hero-actions .button-primary::after {
  background:
    conic-gradient(
      from var(--button-shine-angle),
      transparent 0 58%,
      rgba(255, 255, 255, 0.18) 64%,
      rgba(255, 255, 255, 0.88) 72%,
      #f4ffd7 78%,
      #ffffff 80%,
      #f4ffd7 82%,
      #dfff9a 88%,
      transparent 96% 100%
    );
}

.hero-actions .button:nth-child(2)::after {
  animation-delay: 2s, 2s;
}

.hero-actions .button:nth-child(3)::after {
  animation-delay: 4s, 4s;
}

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

.button:hover::before {
  transform: translateX(360%) skewX(-18deg);
}

.button-primary {
  background: var(--blue);
  color: var(--surface);
  box-shadow: 0 14px 30px rgba(22, 119, 168, 0.2);
}

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

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-soft);
}

.hero-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 6px 10px;
  background: rgba(12, 19, 25, 0.38);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-flow i {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), rgba(255, 255, 255, 0.8));
}

.hero-metrics {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-metrics div {
  min-width: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--blue-strong);
  font-family: var(--font-numbers);
  font-size: 1.56rem;
  font-weight: 800;
  line-height: 1;
}

.hero-metric-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-metric-tags strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 32px;
  border-radius: var(--radius);
  padding: 4px 9px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: 1.12rem;
}

.hero-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.28;
}

.hero-panel {
  position: relative;
  border-radius: var(--radius);
  min-height: 390px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(21, 34, 49, 0.68));
  content: "";
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.hero-status,
.route-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(21, 34, 49, 0.72);
  color: var(--surface);
  backdrop-filter: blur(14px);
}

.hero-status {
  right: 18px;
  bottom: 18px;
  left: 18px;
}

.route-card {
  top: 18px;
  right: 18px;
  width: min(320px, calc(100% - 36px));
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.hero-status span,
.route-card span {
  display: block;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-card span {
  color: var(--blue);
}

.hero-status strong,
.route-card strong {
  display: block;
  margin-top: 6px;
}

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

.trust-bar article {
  gap: 14px;
  min-height: 132px;
  padding: 24px clamp(18px, 4vw, 42px);
  background: var(--surface);
}

.icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue);
}

.icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trust-bar p,
.benefit-card p,
.plan-card p,
.plan-card li,
.process-item p,
.document-card li,
.document-note p,
.area-copy p,
.faq-list p,
.request-copy p,
.form-note,
.upload-group small {
  color: var(--muted);
}

.trust-bar p,
.card-type-card p,
.card-type-card li,
.card-type-help p,
.benefit-card p,
.plan-card p,
.process-item p,
.document-note p,
.area-copy p,
.faq-list p {
  margin: 0;
}

.section,
.request-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 68px);
}

.section-heading {
  max-width: 930px;
  margin-bottom: 34px;
}

.section-heading h2 {
  position: relative;
}

.section-heading h2::after {
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--accent-cyan));
  content: "";
}

.section-heading p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.intro-section,
.card-types-section,
.documents-section,
.faq-section {
  background: var(--surface);
}

.benefit-grid,
.info-grid,
.plan-grid,
.penalty-grid {
  display: grid;
  gap: 18px;
}

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

.benefit-card,
.card-type-card,
.card-type-help,
.plan-card,
.process-item,
.document-card,
.document-note,
.faq-list details,
.request-form {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.benefit-card::before,
.card-type-card::before,
.card-type-help::before,
.plan-card::before,
.process-item::before,
.document-card::before,
.document-note::before,
.faq-list details::before,
.request-form::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent-cyan), var(--accent-warm));
  content: "";
}

.benefit-card {
  min-height: 220px;
  padding: 28px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.benefit-card:hover,
.card-type-card:hover,
.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 119, 168, 0.42);
  box-shadow: 0 22px 54px rgba(36, 63, 63, 0.16);
}

.card-type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card-type-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(18px, 3vw, 34px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.card-type-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 245px;
  border: 1px solid rgba(22, 119, 168, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(45, 172, 215, 0.08), rgba(133, 207, 58, 0.12)),
    #f7fbfb;
  overflow: hidden;
}

.card-type-preview img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 310px;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02);
}

.card-type-preview span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 8px 12px;
  background: rgba(21, 34, 49, 0.72);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.card-type-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.card-type-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 900;
}

.card-type-copy h3 {
  margin-bottom: 14px;
}

.card-type-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.card-type-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.card-type-copy li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  line-height: 1.45;
}

.card-type-copy li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent-warm);
  box-shadow: 0 0 0 5px rgba(133, 207, 58, 0.16);
  content: "";
}

.card-type-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 10% 50%, rgba(133, 207, 58, 0.18), transparent 28%),
    #f8fcfc;
}

.card-type-help strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2vw, 1.58rem);
  line-height: 1.16;
}

.card-type-help p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.6;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue);
  font-family: var(--font-numbers);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(133, 207, 58, 0.28);
}

.plans-section {
  background: var(--bg);
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 3.4vw, 36px);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.plan-card-featured {
  border-color: rgba(22, 119, 168, 0.36);
  box-shadow: 0 18px 52px rgba(91, 168, 31, 0.15);
}

.plan-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.05;
}

.plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-right: 122px;
}

.plan-head span {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.plan-price {
  display: grid;
  justify-items: end;
  gap: 5px;
}

.plan-price small {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-head strong {
  color: var(--text);
  font-family: var(--font-numbers);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.plan-card ul,
.document-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-card li,
.document-card li {
  position: relative;
  padding-left: 24px;
}

.plan-card li::before,
.document-card li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.plan-card > .button {
  width: 100%;
  margin-top: auto;
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 24px;
}

.process-item span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--surface);
  font-family: var(--font-numbers);
  font-size: 1.35rem;
  font-weight: 800;
}

.document-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.document-card,
.document-note {
  padding: clamp(24px, 3.4vw, 34px);
}

.document-note {
  display: grid;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(22, 119, 168, 0.1), rgba(255, 255, 255, 0.96)),
    var(--surface);
}

.document-note strong {
  color: var(--blue-strong);
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1.18;
}

.risk-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.88fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: var(--slate);
  color: var(--surface);
}

.risk-section .eyebrow {
  color: #aee0f5;
}

.risk-copy p {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.penalty-grid article {
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.penalty-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.penalty-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--surface);
  font-family: var(--font-numbers);
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1.02;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: var(--bg);
}

.area-map {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(22, 119, 168, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(22, 119, 168, 0.08) 1px, transparent 1px),
    var(--surface);
  background-size: 42px 42px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-ring {
  position: absolute;
  inset: 50%;
  width: 210px;
  height: 210px;
  border: 2px solid rgba(22, 119, 168, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring::after {
  position: absolute;
  inset: -42px;
  border: 1px dashed rgba(22, 119, 168, 0.28);
  border-radius: 50%;
  content: "";
}

.map-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 4px solid var(--surface);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(22, 119, 168, 0.24);
}

.map-dot-center {
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
}

.map-dot-one {
  top: 29%;
  left: 64%;
}

.map-dot-two {
  top: 62%;
  left: 34%;
}

.area-copy p {
  max-width: 720px;
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.22;
}

.faq-list p {
  margin-top: 12px;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(380px, 0.95fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(22, 119, 168, 0.1), transparent 46%),
    #132233;
  color: var(--surface);
}

.request-copy {
  position: sticky;
  top: 104px;
}

.request-copy .eyebrow {
  color: #aee0f5;
}

.request-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-box {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.contact-box a {
  font-family: var(--font-numbers);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.08;
}

.contact-box span {
  color: rgba(255, 255, 255, 0.68);
}

.request-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--text);
  box-shadow: var(--shadow);
}

.request-form fieldset {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 0;
  border: 0;
}

.request-form legend,
.upload-title {
  margin-bottom: 2px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.16;
}

.radio-card {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
}

.radio-card:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.radio-card input {
  margin-top: 3px;
}

.radio-card strong,
.radio-card small {
  display: block;
}

.radio-card small {
  margin-top: 2px;
  color: var(--muted);
}

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

.request-form label,
.upload-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:hover,
.request-form select:hover,
.request-form textarea:hover {
  border-color: rgba(91, 168, 31, 0.42);
  background: #fbfffb;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid var(--blue-soft);
}

.upload-group {
  display: grid;
  gap: 12px;
}

.upload-grid input {
  padding: 11px;
  font-size: 0.86rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: -6px 0 0;
  font-size: 0.82rem;
}

.form-note a {
  color: var(--blue-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-note a:hover {
  color: var(--text);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 68px);
  background: #0c1722;
  color: rgba(255, 255, 255, 0.72);
}

.quick-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  gap: 7px;
  max-width: calc(100vw - 36px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  padding: 7px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 50px rgba(21, 34, 49, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(14px);
}

.quick-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.quick-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  border: 1px solid rgba(100, 116, 134, 0.24);
  border-radius: var(--radius);
  padding: 0 10px;
  background: #ffffff;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.74) inset;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.quick-cta svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.quick-cta a.quick-cta-main {
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: #152014;
}

.quick-cta a:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 38, 45, 0.28);
  background: var(--slate);
  color: #ffffff;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-panel {
    animation: hero-panel-in 700ms ease both;
  }

  .hero-flow i {
    background-size: 200% 100%;
    animation: flow-line 2.8s ease-in-out infinite;
  }

  .hero-actions .button::after {
    animation:
      hero-button-border-spin 2s linear infinite,
      hero-button-border-queue 6s linear infinite;
  }

  .map-ring::after {
    animation: ring-pulse 3.2s ease-in-out infinite;
  }

  @keyframes hero-panel-in {
    from {
      opacity: 0;
      transform: translateY(16px) scale(0.98);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes ring-pulse {
    0%,
    100% {
      opacity: 0.5;
      transform: scale(1);
    }

    50% {
      opacity: 0.9;
      transform: scale(1.05);
    }
  }

  @keyframes flow-line {
    0%,
    100% {
      background-position: 0 0;
    }

    50% {
      background-position: 100% 0;
    }
  }

  @keyframes hero-button-border-spin {
    to {
      --button-shine-angle: 360deg;
    }
  }

  @keyframes hero-button-border-queue {
    0%,
    27% {
      opacity: 1;
      filter:
        drop-shadow(0 0 6px rgba(255, 255, 255, 0.82))
        drop-shadow(0 0 14px rgba(158, 232, 70, 0.78));
    }

    34%,
    100% {
      opacity: 0;
      filter: drop-shadow(0 0 0 rgba(158, 232, 70, 0));
    }
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .quick-cta {
    transition: none;
  }

  .hero-actions .button::after {
    display: none;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .hero,
  .area-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 380px;
  }

  .hero-panel img {
    min-height: 380px;
  }

  .request-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 3rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .theme-v5 .hero::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .trust-bar,
  .card-type-card,
  .benefit-grid,
  .plan-grid,
  .process-list,
  .document-layout,
  .risk-section {
    grid-template-columns: 1fr;
  }

  .plan-head {
    padding-right: 0;
  }

  .plan-ribbon {
    position: static;
    width: fit-content;
  }

  .card-type-help {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.28rem;
    line-height: 1;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  h3 {
    font-size: 1.16rem;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  .hero-lead,
  .section-heading p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-region-note {
    font-size: 0.82rem;
  }

  .brand small {
    display: none;
  }

  .theme-v5 .hero {
    padding-top: 34px;
    background:
      linear-gradient(180deg, rgba(18, 27, 33, 0.86), rgba(18, 27, 33, 0.6) 54%, rgba(18, 27, 33, 0.06)),
      url("../img/hero-driver-card-mobile.png") 28% center / cover;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-flow i {
    display: none;
  }

  .hero-flow span {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    min-height: 46px;
    padding: 0 12px;
    font-size: 0.94rem;
  }

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

  .hero-metrics div {
    min-width: 0;
    padding: 10px 12px;
  }

  .hero-metrics strong {
    font-size: 1.34rem;
  }

  .hero-metrics span {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero-panel {
    display: none;
  }

  .hero-status {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .trust-bar article {
    align-items: flex-start;
  }

  .card-type-card {
    padding: 16px;
  }

  .card-type-preview {
    min-height: 190px;
  }

  .card-type-preview img {
    max-height: 230px;
  }

  .card-type-preview span {
    right: 10px;
    bottom: 10px;
    padding: 7px 10px;
    font-size: 0.66rem;
  }

  .card-type-copy ul {
    margin-bottom: 20px;
  }

  .card-type-copy .button,
  .card-type-help .button {
    width: 100%;
  }

  .form-grid,
  .upload-grid,
  .penalty-grid {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 44px 1fr;
    padding: 20px;
  }

  .process-item span {
    width: 44px;
    height: 44px;
    font-size: 1.16rem;
  }

  .area-map {
    min-height: 280px;
  }

  .plan-head strong {
    font-size: 2.35rem;
  }

  .penalty-grid strong,
  .contact-box a {
    font-size: 1.45rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 94px;
  }

  .quick-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: stretch;
    max-width: none;
  }

  .quick-cta a {
    gap: 4px;
    flex: 1 1 0;
    min-width: 0;
    padding: 0 3px;
    font-size: 0.7rem;
  }

  .quick-cta svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 360px) {
  .quick-cta {
    gap: 5px;
    right: 8px;
    left: 8px;
  }

  .quick-cta a {
    gap: 2px;
    padding: 0 2px;
    font-size: 0.66rem;
  }

  .quick-cta svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 340px) {
  .quick-cta a {
    gap: 0;
  }

  .quick-cta svg {
    display: none;
  }
}
