:root {
  --bg: #edf1f8;
  --white: #ffffff;
  --ink: #111c3f;
  --muted: #5a6689;
  --line: #dfe6f5;
  --blue: #2f67ff;
  --blue-2: #194ed1;
  --navy-950: #050a1b;
  --navy-900: #08112a;
  --navy-850: #0c1838;
  --navy-800: #13254a;
  --sky: #e7efff;
  --lilac: #f1edff;
  --mint: #e6f8ee;
  --sand: #fff4de;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-soft: 0 16px 42px rgba(8, 16, 40, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

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

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

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.screen-reader-text:focus {
  background-color: #f5f8ff;
  clip: auto;
  clip-path: none;
  color: #132249;
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  height: auto;
  left: 0.6rem;
  line-height: normal;
  padding: 0.62rem 0.8rem;
  text-decoration: none;
  top: 0.6rem;
  width: auto;
  z-index: 9999;
}

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

.site-header {
  position: relative;
  z-index: 30;
  background:
    radial-gradient(120% 160% at 10% 0%, rgba(54, 109, 255, 0.2), transparent 60%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 55%, #08162f 100%);
  border-bottom: 1px solid rgba(118, 140, 204, 0.25);
}

.site-header.is-sticky-enabled {
  position: relative;
}

.site-header.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 10px 24px rgba(5, 11, 28, 0.35);
  backdrop-filter: blur(8px);
}

.site-header.is-transparent {
  background: transparent;
  border-bottom-color: transparent;
}

.site-header.is-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}

body.header-overlay .hero {
  padding-top: 6rem;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-brand {
  flex-shrink: 0;
}

.header-builder-block {
  display: inline-flex;
  align-items: center;
}

.header-menu-block {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.site-header .header-menu-block .main-nav {
  margin-left: 0;
}

.site-header .main-nav {
  margin-left: auto;
}

.header-cta {
  margin-left: 0.6rem;
}

.menu-toggle {
  border: 1px solid rgba(146, 165, 222, 0.52);
  background: rgba(14, 28, 66, 0.82);
  border-radius: 10px;
  color: #e2ebff;
  width: 44px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.menu-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: #d6e0ff;
}

.menu-toggle-bar + .menu-toggle-bar {
  margin-top: 3px;
}

.mobile-nav-backdrop {
  display: none;
}

.mobile-nav-close {
  display: none;
}

.site-header.layout-centered .header-inner {
  justify-content: center;
}

.site-header.layout-centered .header-brand {
  margin-right: auto;
}

.site-header.layout-centered .header-cta {
  margin-left: auto;
}

.site-header.layout-split .header-inner {
  justify-content: space-between;
}

.btn {
  border: 0;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 140ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-pill {
  border-radius: 999px;
  padding: 0.68rem 1.02rem;
}

.btn-small {
  padding: 0.5rem 0.82rem;
  font-size: 0.76rem;
}

.btn-mini {
  padding: 0.44rem 0.74rem;
  font-size: 0.72rem;
  border-radius: 9px;
}

.btn-primary {
  color: #f7f9ff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 7px 16px rgba(44, 90, 233, 0.36);
}

.btn-hero-outline {
  color: #dbe4ff;
  border: 1px solid rgba(154, 176, 236, 0.52);
  background: rgba(15, 33, 78, 0.58);
}

.btn-dark-outline {
  color: #dbe4ff;
  border: 1px solid rgba(146, 165, 222, 0.52);
  background: rgba(14, 28, 66, 0.82);
}

.btn-soft-dark {
  color: #f2f6ff;
  border: 1px solid rgba(92, 114, 181, 0.44);
  background: #1a2548;
}

.btn-dark {
  color: #f5f7ff;
  background: #111b3a;
}

.hero,
.cta-band,
.dark-section,
.site-footer {
  position: relative;
  overflow: hidden;
}

.hero {
  margin-top: 0;
  padding: 1rem 0 2.25rem;
  background:
    radial-gradient(120% 160% at 10% 0%, rgba(54, 109, 255, 0.23), transparent 60%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 55%, #08162f 100%);
  color: #f5f8ff;
}

.hero::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -22px;
  height: 44px;
  background: var(--bg);
  border-top-left-radius: 58% 100%;
  border-top-right-radius: 58% 100%;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.22rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.brand-logo-wrap img,
.brand-logo-wrap .custom-logo {
  max-height: 48px;
  width: auto;
}

.brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(150deg, #3ce4ff, #1f58ff);
  box-shadow: 0 0 13px rgba(44, 112, 255, 0.8);
}

.brand-text {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f7f9ff;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.02rem;
  font-size: 0.84rem;
}

.menu-list,
.footer-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav .menu-list {
  display: flex;
  align-items: center;
  gap: 1.02rem;
}

.main-nav .menu-item-has-children {
  position: relative;
}

.main-nav .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  color: #d2dcff;
}

.main-nav a:hover {
  color: #ffffff;
}

.submenu-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.submenu-toggle-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.main-nav .menu-item-has-children.is-submenu-open > .submenu-toggle .submenu-toggle-icon {
  transform: rotate(-135deg);
}

@media (min-width: 921px) {
  .main-nav .menu-list > .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 0.42rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.72;
  }

  .main-nav .menu-item-has-children > .sub-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    min-width: 248px;
    display: grid;
    gap: 0.38rem;
    padding: 0.62rem;
    border: 1px solid rgba(118, 154, 255, 0.38);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(8, 19, 48, 0.96), rgba(6, 14, 35, 0.96)),
      radial-gradient(circle at 18% -18%, rgba(86, 143, 255, 0.34), transparent 56%);
    backdrop-filter: blur(12px) saturate(124%);
    box-shadow:
      0 24px 52px rgba(2, 8, 24, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.97);
    transform-origin: top left;
    transition:
      opacity 200ms ease,
      transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 240ms;
    z-index: 45;
  }

  .main-nav .menu-item-has-children > .sub-menu::before {
    content: "";
    position: absolute;
    top: -0.56rem;
    left: 0;
    right: 0;
    height: 0.56rem;
  }

  .main-nav .menu-list > .menu-item-has-children > .sub-menu::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 24px;
    width: 13px;
    height: 13px;
    border-top: 1px solid rgba(118, 154, 255, 0.4);
    border-left: 1px solid rgba(118, 154, 255, 0.4);
    border-radius: 4px 0 0 0;
    background: rgba(8, 19, 48, 0.96);
    transform: rotate(45deg);
  }

  .main-nav .menu-item-has-children:hover > .sub-menu,
  .main-nav .menu-item-has-children:focus-within > .sub-menu,
  .main-nav .menu-item-has-children.is-submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .main-nav .menu-item-has-children > .sub-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.55rem;
    padding: 0.76rem 0.9rem;
    border-radius: 12px;
    border: 1px solid transparent;
    background:
      linear-gradient(180deg, rgba(22, 43, 98, 0.64), rgba(16, 33, 78, 0.5));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #eff4ff;
    font-weight: 600;
    transition:
      transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 200ms ease,
      background 220ms ease,
      box-shadow 220ms ease;
  }

  .main-nav .menu-item-has-children > .sub-menu a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #6ea9ff;
    box-shadow: 0 0 10px rgba(110, 169, 255, 0.55);
    flex: 0 0 auto;
  }

  .main-nav .menu-item-has-children > .sub-menu a:hover,
  .main-nav .menu-item-has-children > .sub-menu a:focus-visible {
    transform: translateX(4px);
    border-color: rgba(128, 167, 255, 0.54);
    background:
      linear-gradient(180deg, rgba(44, 80, 162, 0.8), rgba(30, 60, 132, 0.72));
    box-shadow:
      0 10px 18px rgba(7, 18, 46, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .main-nav .menu-item-has-children > .sub-menu .menu-item-has-children > .sub-menu {
    top: 0;
    left: calc(100% + 0.18rem);
  }

  .main-nav .menu-item-has-children > .sub-menu .menu-item-has-children > .sub-menu::before {
    top: 0;
    bottom: 0;
    left: -0.18rem;
    right: auto;
    width: 0.18rem;
    height: auto;
  }
}

.hero-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 1.12rem;
  align-items: start;
}

.kicker,
.mini-kicker {
  display: inline-flex;
  padding: 0.22rem 0.56rem;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #95b2ff;
  border: 1px solid rgba(130, 153, 218, 0.45);
  background: rgba(21, 35, 73, 0.6);
}

.mini-kicker {
  color: #4f72d7;
  border-color: #cad8fa;
  background: #f4f8ff;
}

.mini-kicker.red {
  color: #f28ea0;
  border-color: rgba(242, 142, 160, 0.4);
  background: rgba(242, 142, 160, 0.12);
}

.hero-copy h1 {
  margin-top: 0.74rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.06;
}

.hero-copy h1 span {
  color: #4ea9ff;
}

.hero-copy > p {
  margin-top: 0.64rem;
  color: #d1ddff;
  font-size: 1.12rem;
}

.hero-meta {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
}

.hero-meta span {
  border: 1px solid rgba(135, 156, 216, 0.45);
  border-radius: 999px;
  padding: 0.18rem 0.52rem;
  font-size: 0.66rem;
  color: #b9c9f7;
  background: rgba(16, 31, 70, 0.62);
  font-weight: 700;
}

.rating-box {
  margin-top: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #dce7ff;
  border-radius: 10px;
  padding: 0.46rem 0.64rem;
  color: #15234c;
}

.rating-box strong {
  font-size: 1.08rem;
}

.rating-box span {
  font-size: 0.75rem;
  color: #556389;
  font-weight: 700;
}

.reg-box {
  margin-top: 0.82rem;
  border-radius: 12px;
  border: 1px solid #d9c334;
  background: rgba(20, 35, 74, 0.75);
  padding: 0.5rem 0.64rem 0.64rem;
}

.reg-box label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d1dcff;
}

.reg-box input {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #f7f9ff;
  outline: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.reg-box input::placeholder {
  color: #9eb2ea;
}

.hero-actions {
  margin-top: 0.84rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.54rem;
}

.chip-list {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.chip-list span {
  border: 1px solid rgba(135, 156, 216, 0.45);
  border-radius: 999px;
  padding: 0.2rem 0.54rem;
  font-size: 0.67rem;
  color: #b9c9f7;
  background: rgba(16, 31, 70, 0.62);
}

.quote-card {
  border-radius: var(--radius-lg);
  background: #f8fbff;
  border: 1px solid #d6e4ff;
  color: #14234e;
  box-shadow: var(--shadow-soft);
}

.quote-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quote-tabs button {
  border: 0;
  background: #e9f0ff;
  color: #3e578f;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.62rem 0.5rem;
}

.quote-tabs button.active {
  background: #ffffff;
  color: #141f42;
}

.quote-body {
  padding: 0.84rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0.56rem;
}

.plate-panel,
.form-panel {
  border-radius: 12px;
  border: 1px solid #dce6ff;
  background: #ffffff;
  padding: 0.6rem;
}

.plate-title {
  font-size: 0.66rem;
  text-transform: uppercase;
  color: #57658c;
  font-weight: 800;
}

.plate {
  display: block;
  margin-top: 0.3rem;
  border-radius: 7px;
  background: #ffde56;
  color: #131313;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.36rem;
}

.plate-panel small {
  display: block;
  margin: 0.32rem 0 0.5rem;
  color: #5a678c;
  font-weight: 700;
}

.form-panel h3 {
  font-size: 0.78rem;
}

.quote-form {
  margin: 0.42rem 0 0.1rem;
  display: grid;
  gap: 0.34rem;
}

.quote-form input {
  border: 1px solid #d8e2fb;
  border-radius: 7px;
  background: #f8fbff;
  color: #1b2b52;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.45rem 0.5rem;
  outline: none;
}

.quote-form input::placeholder {
  color: #67759b;
}

.quote-form button {
  margin-top: 0.06rem;
  width: 100%;
}

.light-section,
.steps-section,
.faq-section {
  padding: 3rem 0;
}

.section-head h2 {
  margin-top: 0.65rem;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.1;
}

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center p {
  margin-top: 0.56rem;
  color: var(--muted);
}

.section-head h2 span {
  color: #2d67ff;
}

/*
  Vehicle types section replica.
  Dedicated styles so section matches the supplied design spec closely.
*/
.light-section.vehicle-types-section {
  padding: 4.6rem 0 5.4rem;
  background: #f3f4f6;
}

.vehicle-types-wrap {
  max-width: 1000px;
}

.vehicle-types-head {
  max-width: 540px;
}

.vehicle-types-kicker {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  min-height: 34px;
  padding: 0.4rem 0.84rem 0.4rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #dce6fd;
  background: #e9f0ff;
  color: #155dfc;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.512px;
  text-transform: none;
}

.vehicle-types-kicker-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dfe9ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.vehicle-types-kicker-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vehicle-types-head h2 {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  margin-top: 1.35rem;
  color: #111827;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 55.2px;
  letter-spacing: -1.44px;
}

.vehicle-types-grid {
  margin-top: 2.42rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.12rem;
}

.vehicle-type-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(210, 216, 226, 0.85);
  padding: 1.5rem 1.62rem 1.42rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.vehicle-type-card.card-wide {
  grid-column: span 8;
  min-height: 232px;
}

.vehicle-type-card.card-narrow {
  grid-column: span 4;
  min-height: 232px;
}

.card-cars {
  background: #e4eaf4;
}

.card-vans {
  background: #eeebf6;
}

.card-commercial {
  background: #deede8;
}

.card-taxi {
  background: #efe9da;
}

.vehicle-type-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.92rem;
  color: #ffffff;
}

.vehicle-type-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vehicle-type-icon.icon-blue {
  background: #2563eb;
}

.vehicle-type-icon.icon-purple {
  background: #7c3aed;
}

.vehicle-type-icon.icon-green {
  background: #0f9f78;
}

.vehicle-type-icon.icon-amber {
  background: #d97706;
}

.vehicle-type-card h3 {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  color: #111827;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.vehicle-type-pill {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  border-radius: 999px;
  padding: 0.1rem 0.54rem;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.vehicle-type-pill.pill-blue {
  background: #d6e3ff;
  color: #2563eb;
}

.vehicle-type-pill.pill-purple {
  background: #e7ddfb;
  color: #7c3aed;
}

.vehicle-type-pill.pill-green {
  background: #cfeee2;
  color: #15976c;
}

.vehicle-type-pill.pill-amber {
  background: #f6dfb9;
  color: #c47a10;
}

.vehicle-type-card p {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  margin-top: 0.62rem;
  max-width: 86%;
  color: #6b7280;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
}

.vehicle-type-watermark {
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 132px;
  height: 88px;
  pointer-events: none;
  opacity: 0.45;
}

.vehicle-type-watermark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wm-car {
  color: #c8d6ef;
}

.wm-van {
  right: -6px;
  bottom: -8px;
  width: 116px;
  height: 80px;
  color: #ddd2f1;
}

.wm-box {
  right: -10px;
  bottom: -14px;
  width: 126px;
  height: 86px;
  color: #c2e3d7;
}

.wm-users {
  right: -16px;
  bottom: -22px;
  width: 148px;
  height: 98px;
  color: #ead8b8;
}

.vehicle-brand-row {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
}

.vehicle-brand-label {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  color: #9ca3af;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 1.024px;
  text-transform: uppercase;
}

.vehicle-brand-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.vehicle-brand-pill {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border-radius: 14px;
  border: 1px solid #d9dde3;
  background: #f8fafc;
  padding: 0.5rem 1.08rem;
  color: #374151;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.6px;
  letter-spacing: -0.144px;
  box-shadow: 0 2px 0 rgba(17, 24, 39, 0.05);
}

@media (max-width: 1040px) {
  .light-section.vehicle-types-section {
    padding: 4.1rem 0 4.35rem;
  }

  .vehicle-types-head h2 {
    font-size: 42px;
    line-height: 48.3px;
    letter-spacing: -1.26px;
  }

  .vehicle-type-card.card-wide,
  .vehicle-type-card.card-narrow {
    grid-column: span 6;
  }

  .vehicle-type-card p {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .light-section.vehicle-types-section {
    padding: 3.25rem 0 3.45rem;
  }

  .vehicle-types-head h2 {
    margin-top: 1rem;
    font-size: 36px;
    line-height: 41.4px;
    letter-spacing: -1.08px;
  }

  .vehicle-types-grid {
    margin-top: 1.7rem;
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

  .vehicle-type-card.card-wide,
  .vehicle-type-card.card-narrow {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .vehicle-type-card {
    border-radius: 18px;
    padding: 1.12rem 1rem 4.2rem;
  }

  .vehicle-type-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    margin-bottom: 0.7rem;
  }

  .vehicle-type-card h3 {
    font-size: 19px;
    line-height: 23px;
  }

  .vehicle-type-watermark {
    right: -12px;
    bottom: -20px;
    width: 114px;
    height: 80px;
    opacity: 0.36;
  }

  .vehicle-brand-row {
    margin-top: 2rem;
    justify-content: flex-start;
  }

  .vehicle-brand-pills {
    justify-content: flex-start;
  }

  .vehicle-brand-pill {
    min-height: 40px;
    padding: 0.46rem 0.95rem;
  }
}

/*
  MOT deals section replica.
  Scoped styles for the dual-column offers layout from the supplied mock.
*/
.light-section.mot-deals-section {
  padding: 5rem 0 5.3rem;
  background: #f3f4f6;
}

.mot-deals-wrap {
  max-width: 1032px;
}

.mot-deals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.mot-deals-head {
  max-width: 470px;
}

.mot-deals-kicker {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  min-height: 34px;
  padding: 0.4rem 0.84rem 0.4rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #dce6fd;
  background: #e9f0ff;
  color: #2563eb;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.512px;
}

.mot-deals-kicker-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dce7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.mot-deals-kicker-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mot-deals-head h2 {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  margin-top: 1.35rem;
  color: #111827;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 55.2px;
  letter-spacing: -1.44px;
}

.mot-deals-col-right .mot-deals-cta-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 4.42rem;
  margin-bottom: 1.1rem;
}

.mot-deals-cta {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 56px;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  background: #0f172d;
  color: #fff;
  text-decoration: none;
  font-size: 15.2px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.8px;
  letter-spacing: -0.1px;
  box-shadow: inset 0 0 0 1px rgba(10, 16, 32, 0.16);
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.mot-deals-cta:hover,
.mot-deals-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.2);
  background: #0b1224;
  color: #fff;
}

.mot-deals-cta-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.mot-deals-cta-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mot-deals-stack {
  display: grid;
  gap: 1rem;
}

.mot-deals-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 1.48rem 1.55rem 1.42rem;
  min-height: 194px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(17, 24, 39, 0.04);
}

.mot-deals-card.is-featured {
  border-color: rgba(72, 112, 229, 0.5);
  background:
    radial-gradient(78% 110% at 86% 46%, rgba(146, 176, 255, 0.46) 0%, rgba(146, 176, 255, 0.18) 42%, rgba(146, 176, 255, 0) 74%),
    linear-gradient(134deg, #3a71f6 0%, #3368ea 52%, #2b5bdd 100%);
  box-shadow: 0 12px 30px rgba(40, 84, 205, 0.24);
}

.mot-deals-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.78rem;
  margin-bottom: 1.18rem;
}

.mot-deals-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mot-deals-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mot-deals-icon.icon-blue {
  background: rgba(255, 255, 255, 0.18);
  color: #dce8ff;
}

.mot-deals-icon.icon-green {
  background: #e0f4e9;
  color: #079669;
}

.mot-deals-icon.icon-purple {
  background: #efe5ff;
  color: #8b5cf6;
}

.mot-deals-icon.icon-amber {
  background: #fff2e3;
  color: #d97706;
}

.mot-deals-badge {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0.2rem 0.72rem;
  text-transform: uppercase;
  font-size: 11.2px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
  letter-spacing: 0.56px;
}

.mot-deals-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.34rem;
}

.mot-deals-badge.badge-blue {
  background: rgba(255, 255, 255, 0.2);
  color: #dde8ff;
}

.mot-deals-badge.badge-blue::before {
  background: rgba(232, 241, 255, 0.86);
}

.mot-deals-badge.badge-green {
  background: #ddf3ea;
  color: #0d986f;
}

.mot-deals-badge.badge-green::before {
  background: #0d986f;
}

.mot-deals-badge.badge-purple {
  background: #f1e9ff;
  color: #8b5cf6;
}

.mot-deals-badge.badge-purple::before {
  background: #8b5cf6;
}

.mot-deals-badge.badge-amber {
  background: #fff2e1;
  color: #d97706;
}

.mot-deals-badge.badge-amber::before {
  background: #d97706;
}

.mot-deals-card h3 {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  color: #111827;
  font-size: 22.4px;
  font-style: normal;
  font-weight: 700;
  line-height: 26.88px;
  letter-spacing: 0;
}

.mot-deals-card p {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  margin-top: 0.6rem;
  max-width: 94%;
  color: #6b7280;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.76px;
}

.mot-deals-card.is-featured h3,
.mot-deals-card.is-featured p {
  color: #f8fbff;
}

.mot-deals-card.is-featured p {
  color: rgba(240, 247, 255, 0.86);
}

@media (max-width: 1100px) {
  .light-section.mot-deals-section {
    padding: 4.25rem 0 4.55rem;
  }

  .mot-deals-head h2 {
    font-size: 44px;
    line-height: 50.6px;
    letter-spacing: -1.32px;
  }

  .mot-deals-col-right .mot-deals-cta-wrap {
    margin-top: 3.85rem;
  }

  .mot-deals-card h3 {
    font-size: 21.6px;
    line-height: 25.92px;
  }
}

@media (max-width: 940px) {
  .mot-deals-grid {
    grid-template-columns: 1fr;
    gap: 1.08rem;
  }

  .mot-deals-col-right .mot-deals-cta-wrap {
    justify-content: flex-start;
    margin-top: 0.05rem;
    margin-bottom: 0.4rem;
  }

  .mot-deals-head {
    max-width: 620px;
  }

  .mot-deals-card p {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .light-section.mot-deals-section {
    padding: 3.1rem 0 3.5rem;
  }

  .mot-deals-head h2 {
    margin-top: 1rem;
    font-size: 36px;
    letter-spacing: -1.08px;
    line-height: 41.4px;
  }

  .mot-deals-card {
    border-radius: 18px;
    padding: 1.12rem 1rem 1.06rem;
    min-height: auto;
  }

  .mot-deals-card-top {
    margin-bottom: 0.86rem;
  }

  .mot-deals-card h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .mot-deals-card p {
    margin-top: 0.5rem;
    font-size: 14px;
    line-height: 22.4px;
  }
}

@media (max-width: 520px) {
  .mot-deals-cta {
    width: 100%;
    justify-content: center;
  }

  .mot-deals-kicker {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.42px;
  }
}

/*
  Booking steps section replica.
  Dedicated, scoped styles for the "Book Online in 60 Seconds" block.
*/
.booking-steps-section {
  position: relative;
  overflow: hidden;
  padding: 6.35rem 0 7.1rem;
  background: #f3f4f6;
}

.booking-steps-wrap {
  width: min(1240px, calc(100% - 2rem));
  max-width: 1240px;
}

.booking-steps-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.booking-steps-kicker {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.44rem;
  min-height: 34px;
  padding: 0.4rem 0.84rem 0.4rem 0.64rem;
  border-radius: 999px;
  border: 1px solid #dce6fd;
  background: #e9f0ff;
  color: #2563eb;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.512px;
}

.booking-steps-kicker-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}

.booking-steps-kicker-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-steps-head h2 {
  margin-top: 1.48rem;
  color: #111827;
  text-align: center;
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 55.2px;
  letter-spacing: -1.44px;
}

.booking-steps-head h2 span {
  color: #3166e8;
}

.booking-steps-head p {
  margin: 1rem auto 0;
  max-width: 620px;
  color: #6b7280;
  text-align: center;
  font-family: "Inter", "Segoe UI", sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.2px;
}

.booking-steps-progress {
  height: 1px;
  margin: 5.8rem auto 0;
  width: min(100%, 1240px);
  background: linear-gradient(90deg, #cad7f4 0%, #d9dee7 34%, #d7e5df 68%, #eadfcb 100%);
}

.booking-steps-grid {
  width: min(100%, 1240px);
  margin: -3.12rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.booking-step {
  text-align: center;
}

.booking-step-icon-wrap {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.booking-step-icon-wrap.icon-blue {
  background: #dce7f8;
  border-color: #b5ccf5;
  color: #2563eb;
}

.booking-step-icon-wrap.icon-purple {
  background: #ece4fb;
  border-color: #d4c1f9;
  color: #7c3aed;
}

.booking-step-icon-wrap.icon-green {
  background: #d9efe9;
  border-color: #a9ddcf;
  color: #0f9f78;
}

.booking-step-icon-wrap.icon-amber {
  background: #f7ebdd;
  border-color: #efcfaa;
  color: #d97706;
}

.booking-step-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-step-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-step-index {
  position: absolute;
  right: -8px;
  top: -8px;
  min-width: 19px;
  height: 19px;
  padding: 0 0.32rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Inter", "Segoe UI", sans-serif !important;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(17, 24, 39, 0.14);
}

.booking-step-index.index-blue {
  background: #3166e8;
}

.booking-step-index.index-purple {
  background: #7c3aed;
}

.booking-step-index.index-green {
  background: #0f9f78;
}

.booking-step-index.index-amber {
  background: #d97706;
}

.booking-step h3 {
  margin-top: 2.22rem;
  color: #111827;
  text-align: center;
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20.8px;
}

.booking-step p {
  margin: 0.46rem auto 0;
  width: 100%;
  max-width: none;
  color: #6b7280;
  text-align: center;
  font-family: "Inter", "Segoe UI", sans-serif !important;
  font-size: 13.6px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.44px;
}

.booking-steps-cta-wrap {
  margin-top: 4.55rem;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
}

.booking-steps-cta {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 56px;
  border-radius: 999px;
  padding: 0.95rem 1.65rem 0.88rem;
  background: #0f172d;
  color: #fff;
  text-decoration: none;
  font-size: 15.2px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.8px;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.booking-steps-cta:hover,
.booking-steps-cta:focus-visible {
  color: #fff;
  background: #0b1224;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.16);
}

.booking-steps-cta-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.booking-steps-cta-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-steps-section::after {
  content: "";
  position: absolute;
  left: -9%;
  right: -9%;
  bottom: -38px;
  height: 72px;
  background: #f3f4f6;
  border-top-left-radius: 56% 100%;
  border-top-right-radius: 56% 100%;
}

@media (max-width: 1040px) {
  .booking-steps-section {
    padding: 5.4rem 0 6.25rem;
  }

  .booking-steps-head h2 {
    font-size: 42px;
    line-height: 48.3px;
    letter-spacing: -1.26px;
  }

  .booking-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem 1rem;
    margin-top: 1.1rem;
  }

  .booking-steps-progress {
    display: none;
  }

  .booking-step h3 {
    margin-top: 1rem;
  }
}

@media (max-width: 760px) {
  .booking-steps-section {
    padding: 3.75rem 0 4.6rem;
  }

  .booking-steps-head h2 {
    font-size: 36px;
    line-height: 41.4px;
    letter-spacing: -1.08px;
  }

  .booking-steps-head p {
    font-size: 15px;
    line-height: 25.5px;
    max-width: 100%;
  }

  .booking-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .booking-steps-cta {
    width: min(100%, 320px);
  }
}

@media (max-width: 520px) {
  .booking-steps-kicker {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.42px;
  }

  .booking-steps-head h2 {
    font-size: 32px;
    line-height: 36.8px;
    letter-spacing: -0.98px;
  }
}

/*
  Dark location & benefits section replica.
*/
.dark-section.mot-benefits-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 280px;
  background:
    radial-gradient(62% 130% at 50% -8%, rgba(49, 102, 232, 0.14), rgba(49, 102, 232, 0) 64%),
    linear-gradient(90deg, #08112b 0%, #0a1a47 50%, #08112b 100%);
  color: #fff;
  z-index: 0;
}

.dark-section.mot-benefits-section::after {
  content: "";
  position: absolute;
  left: -9%;
  right: -9%;
  bottom: -38px;
  height: 72px;
  background: #f3f4f6;
  border-top-left-radius: 56% 100%;
  border-top-right-radius: 56% 100%;
  pointer-events: none;
  z-index: 1;
}

.mot-benefits-wrap {
  width: min(1240px, calc(100% - 2rem));
  max-width: 1240px;
  position: relative;
  z-index: 2;
}

.mot-benefits-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.mot-benefits-kicker {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 32px;
  padding: 0.34rem 0.8rem 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(81, 162, 255, 0.45);
  background: rgba(12, 34, 80, 0.58);
  color: #51a2ff;
  text-align: center;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.512px;
}

.mot-benefits-kicker-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #51a2ff;
}

.mot-benefits-kicker-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mot-benefits-head h2 {
  margin-top: 1.22rem;
  color: #fff;
  text-align: center;
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 55.2px;
  letter-spacing: -1.44px;
}

.mot-benefits-head h2 span {
  color: #3166e8;
}

.mot-benefits-grid {
  margin: 2.65rem auto 0;
  width: min(100%, 1140px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.92rem;
}

.mot-benefit-card {
  border-radius: 18px;
  border: 1px solid rgba(98, 120, 176, 0.34);
  background: rgba(20, 30, 58, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  padding: 1.24rem 1.2rem 1.1rem;
}

.mot-benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.76rem;
}

.mot-benefit-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mot-benefit-icon.icon-blue {
  background: rgba(42, 103, 255, 0.18);
  color: #2f67ff;
}

.mot-benefit-icon.icon-purple {
  background: rgba(124, 58, 237, 0.18);
  color: #7c3aed;
}

.mot-benefit-icon.icon-green {
  background: rgba(15, 159, 120, 0.18);
  color: #0f9f78;
}

.mot-benefit-icon.icon-amber {
  background: rgba(217, 119, 6, 0.18);
  color: #d97706;
}

.mot-benefit-icon.icon-pink {
  background: rgba(236, 72, 153, 0.18);
  color: #ec4899;
}

.mot-benefit-icon.icon-cyan {
  background: rgba(14, 116, 144, 0.24);
  color: #0ea5e9;
}

.mot-benefit-card h3 {
  color: #f9fafb;
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.8px;
}

.mot-benefit-card p {
  margin-top: 0.44rem;
  color: #9ca3af;
  font-family: "Inter", "Segoe UI", sans-serif !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
}

@media (max-width: 1040px) {
  .dark-section.mot-benefits-section {
    padding: 72px 0 190px;
  }

  .mot-benefits-head h2 {
    font-size: 42px;
    line-height: 48.3px;
    letter-spacing: -1.26px;
  }

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

@media (max-width: 760px) {
  .dark-section.mot-benefits-section {
    padding: 64px 0 130px;
  }

  .mot-benefits-head h2 {
    font-size: 36px;
    line-height: 41.4px;
    letter-spacing: -1.08px;
  }

  .mot-benefits-grid {
    margin-top: 1.9rem;
    grid-template-columns: 1fr;
    gap: 0.74rem;
  }
}

/*
  Why choose section replica.
*/
.light-section.why-choose-section {
  background: #f3f4f6;
  padding: 98px 0 112px;
}

.why-choose-wrap {
  width: min(1220px, calc(100% - 2rem));
  max-width: 1220px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.4rem;
  align-items: start;
}

.why-choose-left {
  padding-top: 0.4rem;
}

.why-choose-kicker {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 34px;
  padding: 0.38rem 0.82rem 0.38rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #dce6fd;
  background: #e9f0ff;
  color: #2563eb;
  text-align: center;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.512px;
}

.why-choose-kicker-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}

.why-choose-kicker-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-choose-left h2 {
  margin-top: 1.28rem;
  color: #111827;
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  font-size: 44px;
  font-style: normal;
  font-weight: 800;
  line-height: 50.6px;
  letter-spacing: -1.32px;
}

.why-choose-left h2 span {
  color: #3166e8;
}

.why-choose-left p {
  margin-top: 1.05rem;
  max-width: 300px;
  color: #6b7280;
  font-family: "Inter", "Segoe UI", sans-serif !important;
  font-size: 15.2px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.84px;
}

.why-choose-stats {
  margin-top: 1.42rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.why-stat-card {
  border-radius: 16px;
  border: 1px solid #e1e5ec;
  background: #f6f7f9;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  padding: 0.88rem 0.7rem 0.78rem;
}

.why-stat-card strong {
  display: block;
  color: #111827;
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.4px;
}

.why-stat-card span {
  margin-top: 0.28rem;
  display: block;
  color: #9ca3af;
  font-family: "Inter", "Segoe UI", sans-serif !important;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

.why-choose-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #dde2ea;
  background: #f5f6f8;
  padding: 1.08rem 1.02rem 0.94rem;
  min-height: 146px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.why-choose-card::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(203, 215, 240, 0.35);
  pointer-events: none;
}

.why-choose-card.tone-green::after {
  background: rgba(198, 228, 217, 0.36);
}

.why-choose-card.tone-purple::after {
  background: rgba(218, 205, 236, 0.35);
}

.why-choose-card.tone-pink::after {
  background: rgba(238, 205, 223, 0.35);
}

.why-choose-card.tone-amber::after {
  background: rgba(240, 224, 199, 0.36);
}

.why-choose-card.tone-cyan::after {
  background: rgba(202, 227, 236, 0.36);
}

.why-choose-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.why-choose-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-choose-card-icon.icon-blue {
  background: #dfe9ff;
  color: #2563eb;
}

.why-choose-card-icon.icon-green {
  background: #def0e9;
  color: #0f9f78;
}

.why-choose-card-icon.icon-purple {
  background: #e9e0fb;
  color: #7c3aed;
}

.why-choose-card-icon.icon-pink {
  background: #f3e1ec;
  color: #ec4899;
}

.why-choose-card-icon.icon-amber {
  background: #f7ebdd;
  color: #d97706;
}

.why-choose-card-icon.icon-cyan {
  background: #deedf4;
  color: #0ea5e9;
}

.why-choose-card h3 {
  color: #111827;
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  font-size: 15.6px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.28px;
}

.why-choose-card p {
  margin-top: 0.46rem;
  color: #6b7280;
  font-family: "Inter", "Segoe UI", sans-serif !important;
  font-size: 13.6px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.44px;
}

@media (max-width: 1040px) {
  .light-section.why-choose-section {
    padding: 82px 0 96px;
  }

  .why-choose-wrap {
    width: min(1220px, calc(100% - 2rem));
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .why-choose-left p {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .light-section.why-choose-section {
    padding: 68px 0 78px;
  }

  .why-choose-left h2 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -1.2px;
  }

  .why-choose-cards,
  .why-choose-stats {
    grid-template-columns: 1fr;
  }

  .why-choose-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .why-choose-left h2 {
    font-size: 34px;
    line-height: 39.1px;
    letter-spacing: -1.02px;
  }
}

.vehicle-grid {
  margin-top: 1.18rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.vehicle-card {
  border-radius: var(--radius-md);
  border: 1px solid #dfe8f7;
  padding: 1rem;
  min-height: 128px;
  position: relative;
}

.vehicle-card::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 42px;
  height: 22px;
  border: 2px solid rgba(96, 117, 174, 0.24);
  border-radius: 16px;
}

.vehicle-card h3 {
  font-size: 1.02rem;
}

.vehicle-card p {
  margin-top: 0.44rem;
  color: var(--muted);
  line-height: 1.45;
}

.sky {
  background: var(--sky);
}

.lilac {
  background: var(--lilac);
}

.mint {
  background: var(--mint);
}

.sand {
  background: var(--sand);
}

.tag-row {
  margin-top: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.tag-row span {
  border-radius: 999px;
  border: 1px solid #d8e2fa;
  background: #ffffff;
  padding: 0.24rem 0.54rem;
  font-size: 0.68rem;
  color: #3f4f79;
  font-weight: 700;
}

.cta-band {
  margin: 0;
  padding: 2.7rem 0 3.15rem;
  background:
    radial-gradient(120% 170% at 0% 0%, rgba(47, 103, 255, 0.18), transparent 60%),
    linear-gradient(145deg, var(--navy-950), #08132f 60%, #0a1633 100%);
  color: #f5f8ff;
}

.cta-band::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -22px;
  height: 44px;
  background: var(--bg);
  border-top-left-radius: 58% 100%;
  border-top-right-radius: 58% 100%;
}

.cta-band-inner {
  text-align: center;
}

.cta-band h2 {
  margin-top: 0.6rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.04;
}

.cta-band p {
  margin-top: 0.54rem;
  color: #ccd8ff;
}

.cta-actions {
  margin-top: 0.82rem;
  display: flex;
  justify-content: center;
  gap: 0.54rem;
  flex-wrap: wrap;
}

.cta-light {
  background: #f4f7ff;
}

.cta-light .cta-band-inner {
  text-align: center;
}

.cta-light h2,
.cta-light p {
  color: #1d2950;
}

.cta-band-urgent {
  position: relative;
  overflow: hidden;
  padding: 82px 0 88px;
  background:
    radial-gradient(58% 120% at 50% -10%, rgba(47, 103, 255, 0.08), transparent 64%),
    #0a0b12;
  color: #fff;
}

.cta-band-urgent .cta-band-inner {
  max-width: 760px;
  text-align: center;
}

.cta-band-urgent .cta-kicker {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 24px;
  padding: 0.34rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 100, 103, 0.22);
  background: rgba(74, 15, 22, 0.48);
  color: #ff6467;
  text-align: center;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.512px;
}

.cta-band-urgent .cta-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6467;
  box-shadow: 0 0 0 3px rgba(255, 100, 103, 0.12);
}

.cta-band-urgent h2 {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  margin-top: 1.28rem;
  color: #fff;
  text-align: center;
  font-size: 72px;
  font-style: normal;
  font-weight: 900;
  line-height: 75.6px;
  letter-spacing: -2.88px;
}

.cta-band-urgent .cta-copy {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  margin: 1.4rem auto 0;
  max-width: 590px;
  color: #9ca3af;
  text-align: center;
  font-size: 16.8px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.56px;
}

.cta-band-urgent .cta-copy-accent {
  color: #ff6467;
  font-weight: 700;
}

.cta-band-urgent .cta-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.cta-band-urgent .cta-btn {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  font-size: 15.2px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.8px;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.cta-band-urgent .cta-btn:hover {
  transform: translateY(-1px);
}

.cta-band-urgent .cta-btn-primary {
  padding: 16px 32px 15.8px 32px;
  gap: 7.359px;
  background: linear-gradient(135deg, #3478ff, #245bdd);
  color: #fff;
  box-shadow: 0 14px 28px rgba(33, 89, 231, 0.28);
}

.cta-band-urgent .cta-btn-primary::after {
  content: "\2192";
  width: 13px;
  height: 13px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M2.75 6.5H10.25' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M6.75 3L10.25 6.5L6.75 10' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 0;
}

.cta-band-urgent .cta-btn-secondary {
  padding: 17px 32px 16.8px 33px;
  gap: 8px;
  border: 1px solid rgba(75, 85, 99, 0.54);
  background: rgba(10, 11, 18, 0.08);
  color: #fff;
}

.cta-band-urgent .cta-btn-secondary::before {
  content: "";
  width: 13px;
  height: 13px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M11.36 9.72V11.18C11.36 11.5 11.1 11.77 10.77 11.79C10.2 11.83 9.63 11.77 9.09 11.63C7.91 11.33 6.85 10.72 5.99 9.86C5.13 9 4.52 7.94 4.22 6.76C4.08 6.22 4.02 5.65 4.06 5.08C4.08 4.75 4.35 4.49 4.67 4.49H6.13C6.4 4.49 6.64 4.68 6.7 4.94L6.93 5.95C6.98 6.18 6.91 6.42 6.74 6.58L6.04 7.28C6.77 8.56 7.88 9.67 9.16 10.4L9.86 9.7C10.02 9.53 10.26 9.46 10.49 9.51L11.5 9.74C11.76 9.8 11.95 10.04 11.95 10.31Z' stroke='white' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.cta-band-urgent .cta-note {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: #4b5563;
  text-align: center;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
}

.cta-band-urgent .cta-note::before {
  content: "";
  width: 13px;
  height: 13px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M3 3.25H10C10.41 3.25 10.75 3.59 10.75 4V8C10.75 8.41 10.41 8.75 10 8.75H6.25L4 10.25V8.75H3C2.59 8.75 2.25 8.41 2.25 8V4C2.25 3.59 2.59 3.25 3 3.25Z' stroke='%234B5563' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 980px) {
  .cta-band-urgent h2 {
    font-size: 60px;
    line-height: 63px;
    letter-spacing: -2.2px;
  }
}

@media (max-width: 760px) {
  .cta-band-urgent {
    padding: 66px 0 72px;
  }

  .cta-band-urgent h2 {
    font-size: 46px;
    line-height: 48px;
    letter-spacing: -1.7px;
  }

  .cta-band-urgent .cta-copy {
    font-size: 15px;
    line-height: 25.5px;
  }

  .cta-band-urgent .cta-actions {
    flex-direction: column;
    gap: 0.68rem;
  }

  .cta-band-urgent .cta-btn {
    width: min(100%, 320px);
  }
}

@media (max-width: 520px) {
  .cta-band-urgent h2 {
    font-size: 38px;
    line-height: 41px;
    letter-spacing: -1.3px;
  }

  .cta-band-urgent .cta-kicker,
  .cta-band-urgent .cta-note {
    font-size: 12px;
    line-height: 18px;
  }
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  align-items: center;
}

.image-text-grid.image-position-left .image-text-media {
  order: 1;
}

.image-text-grid.image-position-left .image-text-copy {
  order: 2;
}

.image-text-copy h2 {
  margin-top: 0.56rem;
}

.image-text-content {
  margin-top: 0.58rem;
  color: #4d5c82;
  line-height: 1.6;
}

.image-text-media img,
.image-text-placeholder {
  width: 100%;
  min-height: 250px;
  border-radius: var(--radius-lg);
  border: 1px solid #dce6fb;
  background: linear-gradient(135deg, #edf3ff, #dae7ff);
  object-fit: cover;
}

.deal-grid {
  margin-top: 1.12rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.deal-card {
  border: 1px solid #e0e8f7;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 1rem;
}

.deal-card h3 {
  font-size: 1rem;
}

.deal-card p {
  margin-top: 0.44rem;
  color: var(--muted);
  line-height: 1.45;
}

.deal-card.featured {
  background: linear-gradient(145deg, #2f67ff, #1f52d7);
  border-color: rgba(53, 108, 255, 0.42);
}

.deal-card.featured h3,
.deal-card.featured p {
  color: #f5f8ff;
}

.steps-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.step-item {
  text-align: center;
}

.step-item strong {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf0ff;
  color: #2c65ff;
  font-size: 0.74rem;
}

.step-item h3 {
  margin-top: 0.6rem;
  font-size: 0.95rem;
}

.step-item p {
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.center-cta {
  margin-top: 1rem;
  text-align: center;
}

.dark-section {
  padding: 2.85rem 0 3.1rem;
  background:
    radial-gradient(120% 170% at 0% 0%, rgba(53, 108, 255, 0.19), transparent 60%),
    linear-gradient(145deg, var(--navy-950), #09142f 60%, #0a1633 100%);
  color: #f4f8ff;
}

.dark-section::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -22px;
  height: 44px;
  background: var(--bg);
  border-top-left-radius: 58% 100%;
  border-top-right-radius: 58% 100%;
}

.dark-grid {
  margin-top: 1.16rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

.dark-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(110, 133, 199, 0.32);
  background: rgba(19, 35, 76, 0.62);
  padding: 0.95rem;
}

.dark-card h3 {
  font-size: 0.95rem;
}

.dark-card p {
  margin-top: 0.44rem;
  color: #c7d6ff;
  line-height: 1.45;
}

.why-grid-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0.86rem;
  align-items: start;
}

.why-left {
  padding-top: 0.14rem;
}

.why-left h2 {
  margin-top: 0.66rem;
}

.why-left h2 span {
  color: #2f67ff;
}

.why-left p {
  margin-top: 0.54rem;
  color: var(--muted);
  line-height: 1.55;
}

.stats {
  margin-top: 0.88rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.stats article {
  border: 1px solid #dfe7f7;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.8rem;
}

.stats strong {
  font-size: 1.2rem;
  color: #132249;
}

.stats span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.why-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.why-card {
  border: 1px solid #dfe7f7;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.9rem;
  color: #1a2952;
  font-weight: 700;
  min-height: 74px;
  display: flex;
  align-items: center;
}

.trust-badge {
  margin: 0.95rem auto 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.54rem;
  border: 1px solid #dce6ff;
  border-radius: 11px;
  background: #ffffff;
  color: #18274f;
  padding: 0.52rem 0.7rem;
}

.trust-badge strong {
  font-size: 1.12rem;
}

.trust-badge span {
  font-size: 0.76rem;
  color: #5a688e;
  font-weight: 700;
}

.testimonial-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

.testimonial-card {
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid #e0e8f8;
  color: #1a284f;
  padding: 1rem;
}

.testimonial-card p {
  color: #45547c;
  line-height: 1.52;
}

.testimonial-card span {
  display: block;
  margin-top: 0.55rem;
  font-weight: 800;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0.9rem;
  align-items: start;
}

.faq-copy h2 {
  margin-top: 0.62rem;
  line-height: 1.1;
}

.faq-copy h2 span {
  color: #2f67ff;
}

.faq-copy p {
  margin-top: 0.54rem;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.48rem;
}

details {
  border-radius: 12px;
  border: 1px solid #e1e8f8;
  background: #ffffff;
  padding: 0.74rem 0.84rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: #202d53;
}

details p {
  margin-top: 0.42rem;
  color: #4f5d81;
  line-height: 1.5;
}

.site-footer {
  padding: 2rem 0;
  background: linear-gradient(145deg, var(--navy-900), #0a1634 65%, #0b1a3a 100%);
  color: #d7e2ff;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: -22px;
  height: 44px;
  background: var(--bg);
  border-bottom-left-radius: 58% 100%;
  border-bottom-right-radius: 58% 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.25fr;
  gap: 1rem;
}

.footer-brand p {
  margin-top: 0.55rem;
  color: #a9bbe9;
  line-height: 1.55;
}

.socials {
  margin-top: 0.68rem;
  display: flex;
  gap: 0.42rem;
}

.socials a {
  margin-top: 0;
}

.socials span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(137, 159, 219, 0.42);
  color: #c9d8ff;
  font-size: 0.74rem;
}

.site-footer h3 {
  font-size: 0.88rem;
}

.site-footer a {
  display: block;
  margin-top: 0.44rem;
  color: #aabde9;
  font-size: 0.84rem;
}

.footer-menu-list a {
  margin-top: 0.44rem;
}

.footer-inline-note {
  display: block;
  margin-top: 0.44rem;
  color: #8ca2d8;
  font-size: 0.78rem;
}

.direction-card {
  margin-top: 0.52rem;
  border: 1px solid rgba(137, 159, 219, 0.32);
  border-radius: 12px;
  background: rgba(18, 35, 76, 0.72);
  padding: 0.7rem;
}

.direction-card p {
  margin-bottom: 0.5rem;
  color: #dbe5ff;
  font-size: 0.82rem;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(137, 159, 219, 0.25);
}

.footer-bottom p {
  color: #9fb3e6;
  font-size: 0.79rem;
}

.page-content-block {
  padding-top: 0;
}

.prose-block {
  border: 1px solid #dfe7f7;
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 1.1rem;
  color: #1f2c4f;
  line-height: 1.62;
}

.prose-block > * + * {
  margin-top: 0.7rem;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 0.9rem;
}

.content-col {
  min-width: 0;
}

.post-list {
  display: grid;
  gap: 0.8rem;
}

.post-card {
  border: 1px solid #dfe7f7;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 1rem;
}

.post-card h2,
.post-card h1 {
  margin-top: 0.45rem;
}

.post-card h2 a,
.post-card h1 {
  color: #17244a;
}

.post-card p {
  margin-top: 0.42rem;
  color: var(--muted);
  line-height: 1.58;
}

.post-thumb {
  border-radius: 10px;
  overflow: hidden;
}

.single-thumb {
  margin-top: 0.64rem;
}

.entry-content {
  margin-top: 0.62rem;
  color: #1f2c4f;
  line-height: 1.62;
}

.entry-content > * + * {
  margin-top: 0.65rem;
}

.pagination-wrap {
  margin-top: 0.85rem;
}

.pagination-wrap .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.pagination-wrap .page-numbers {
  border: 1px solid #d5dff7;
  border-radius: 999px;
  background: #ffffff;
  padding: 0.3rem 0.56rem;
  color: #2f3d68;
  font-size: 0.8rem;
  font-weight: 700;
}

.pagination-wrap .current {
  border-color: #2f67ff;
  color: #2f67ff;
}

.sidebar-col {
  display: grid;
  gap: 0.65rem;
  align-self: start;
}

.widget {
  border: 1px solid #dfe7f7;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0.9rem;
}

.widget-title {
  font-size: 0.98rem;
  color: #162348;
}

.widget p,
.widget li,
.widget a {
  color: #4d5b80;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .quote-body {
    grid-template-columns: 1fr 1fr;
  }

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

  .why-grid-wrap {
    grid-template-columns: 1fr;
  }

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

  .image-text-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .site-header,
  .home .site-header {
    z-index: 40;
  }

  .site-header.menu-open,
  .home .site-header.menu-open {
    z-index: 70;
    background: rgba(6, 14, 35, 0.78);
    border-bottom-color: rgba(107, 131, 201, 0.26);
    backdrop-filter: none;
    box-shadow: 0 12px 30px rgba(2, 8, 22, 0.34);
  }

  .site-header .header-search-wrap,
  .site-header .header-socials {
    display: none !important;
  }

  .site-header .container.header-inner,
  .home .site-header .container.header-inner {
    min-height: 82px;
    padding: 0.65rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.75rem;
    position: relative;
  }

  .site-header .header-menu-block.header-builder-block-menu,
  .home .site-header .header-menu-block.header-builder-block-menu {
    order: 1;
    margin-left: 0;
    flex: 0 0 auto;
    width: auto;
    position: static;
    z-index: 45;
  }

  .site-header .header-builder-block.header-builder-block-logo,
  .home .site-header .header-builder-block.header-builder-block-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: auto;
    max-width: min(42vw, 176px);
    z-index: 45;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-header .header-builder-block.header-builder-block-logo .custom-logo,
  .site-header .header-builder-block.header-builder-block-logo img,
  .home .site-header .header-builder-block.header-builder-block-logo .custom-logo,
  .home .site-header .header-builder-block.header-builder-block-logo img {
    max-height: 48px;
    width: auto;
  }

  .site-header .header-builder-block.header-builder-block-logo .brand,
  .home .site-header .header-builder-block.header-builder-block-logo .brand {
    width: auto;
    justify-content: center;
  }

  .site-header .header-brand,
  .home .site-header .header-brand {
    display: flex;
    justify-content: center;
  }

  .site-header .header-brand .brand,
  .home .site-header .header-brand .brand {
    align-items: center;
  }

  .site-header .header-brand .brand-text,
  .home .site-header .header-brand .brand-text {
    line-height: 0.95;
    text-align: center;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 46;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(132, 156, 227, 0.44);
    background: rgba(12, 25, 60, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .menu-toggle-bar {
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: #f2f6ff;
    transform-origin: center;
    transition:
      transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease,
      background 180ms ease;
  }

  .menu-toggle-bar + .menu-toggle-bar {
    margin-top: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header .header-cta.header-builder-block-cta,
  .home .site-header .header-cta.header-builder-block-cta {
    order: 2;
    margin-left: 0;
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0.9rem 1.18rem;
    border-radius: 999px;
    position: relative;
    z-index: 45;
    font-size: 0.94rem;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.mobile-nav-open .site-header .header-builder-block.header-builder-block-logo,
  body.mobile-nav-open .site-header .header-cta.header-builder-block-cta {
    opacity: 0;
    pointer-events: none;
  }

  body.mobile-nav-open .site-header .header-builder-block.header-builder-block-logo {
    transform: translate(-50%, calc(-50% - 6px));
  }

  body.mobile-nav-open .site-header .header-cta.header-builder-block-cta {
    transform: translateY(-6px);
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(88vw, 360px);
    max-width: 360px;
    min-height: 100dvh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: calc(5.2rem + env(safe-area-inset-top)) 1rem 1.5rem;
    box-sizing: border-box;
    border: 0;
    border-right: 1px solid rgba(130, 153, 222, 0.24);
    border-radius: 0 28px 28px 0;
    background:
      linear-gradient(180deg, rgba(6, 14, 35, 0.995), rgba(8, 18, 47, 0.99)),
      radial-gradient(circle at top left, rgba(70, 122, 255, 0.32), transparent 58%);
    box-shadow: 0 30px 64px rgba(2, 7, 21, 0.62);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(calc(-100% - 1.5rem));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 220ms ease,
      visibility 0s linear 320ms;
    z-index: 80;
  }

  .site-header.menu-open .header-menu-block.header-builder-block-menu .main-nav,
  .home .site-header.menu-open .header-menu-block.header-builder-block-menu .main-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav::before,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav::before {
    content: "Menu";
    display: block;
    margin-bottom: 1.1rem;
    color: rgba(215, 226, 255, 0.7);
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-nav-close {
    position: absolute;
    top: calc(env(safe-area-inset-top) + 0.95rem);
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(132, 156, 227, 0.34);
    border-radius: 14px;
    padding: 0;
    background: rgba(13, 28, 66, 0.9);
    color: #f3f7ff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 3;
  }

  .mobile-nav-close:hover,
  .mobile-nav-close:focus-visible {
    background: rgba(32, 56, 120, 0.96);
    border-color: rgba(120, 155, 255, 0.48);
    color: #ffffff;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-list,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-list {
    display: grid;
    width: 100%;
    gap: 0.7rem;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-list li,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-list li {
    display: block;
    width: 100%;
    margin: 0;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-item-has-children,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-item-has-children {
    position: relative;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav a,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(132, 156, 227, 0.28);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(17, 33, 76, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: #f3f7ff;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-item-has-children > a,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-item-has-children > a {
    padding-right: 3.8rem;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav .submenu-toggle,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .submenu-toggle {
    position: absolute;
    top: 7px;
    right: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(132, 156, 227, 0.22);
    border-radius: 12px;
    background: rgba(10, 22, 55, 0.76);
    color: #f3f7ff;
    z-index: 2;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav .submenu-toggle:hover,
  .site-header .header-menu-block.header-builder-block-menu .main-nav .submenu-toggle:focus-visible,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .submenu-toggle:hover,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .submenu-toggle:focus-visible {
    background: rgba(32, 56, 120, 0.96);
    border-color: rgba(120, 155, 255, 0.42);
    color: #ffffff;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-item-has-children > .sub-menu,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-item-has-children > .sub-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    padding-left: 0.85rem;
    transition:
      max-height 280ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 200ms ease,
      margin-top 200ms ease;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-item-has-children.is-submenu-open > .sub-menu,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .menu-item-has-children.is-submenu-open > .sub-menu {
    max-height: 720px;
    opacity: 1;
    margin-top: 0.55rem;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav .sub-menu li + li,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .sub-menu li + li {
    margin-top: 0.5rem;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav .sub-menu a,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .sub-menu a {
    min-height: 50px;
    font-size: 0.92rem;
    background: rgba(12, 24, 60, 0.64);
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav .sub-menu .sub-menu,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav .sub-menu .sub-menu {
    padding-left: 0.75rem;
  }

  .site-header .header-menu-block.header-builder-block-menu .main-nav a:hover,
  .site-header .header-menu-block.header-builder-block-menu .main-nav a:focus-visible,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav a:hover,
  .home .site-header .header-menu-block.header-builder-block-menu .main-nav a:focus-visible {
    background: rgba(34, 62, 132, 0.92);
    border-color: rgba(120, 155, 255, 0.48);
    color: #ffffff;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    display: block;
    border: 0;
    padding: 0;
    background: rgba(3, 8, 22, 0.72);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      visibility 0s linear 220ms;
    z-index: 75;
  }

  .site-header.menu-open .mobile-nav-backdrop,
  .home .site-header.menu-open .mobile-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
}

@media (max-width: 420px) {
  .site-header .container.header-inner,
  .home .site-header .container.header-inner {
    gap: 0.65rem;
  }

  .site-header .header-cta.header-builder-block-cta,
  .home .site-header .header-cta.header-builder-block-cta {
    min-height: 48px;
    padding: 0.82rem 1rem;
    font-size: 0.84rem;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 1.2rem);
  }

  .hero {
    padding-bottom: 1.9rem;
  }

  .quote-body {
    grid-template-columns: 1fr;
  }

  .vehicle-grid,
  .deal-grid,
  .dark-grid,
  .steps-grid,
  .testimonial-grid,
  .faq-wrap,
  .why-right,
  .section-head.split,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-head.split {
    gap: 0.8rem;
  }

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

  .light-section,
  .steps-section,
  .faq-section {
    padding: 2.25rem 0;
  }

  .dark-section,
  .cta-band {
    padding: 2.3rem 0 2.8rem;
  }

  .site-footer {
    padding-top: 1.7rem;
  }

  .content-layout,
  .stats {
    grid-template-columns: 1fr;
  }

  .footer-bottom p {
    text-align: center;
  }
}

/*
  Front page hero replica: transparent header + premium dark layout.
  Scoped to `.home` and `.hero-mot` so other templates keep current styling.
*/
.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home .site-header.is-stuck {
  background: rgba(6, 14, 35, 0.9);
  border-bottom: 1px solid rgba(107, 131, 201, 0.32);
}

.home .site-header .header-search-wrap,
.home .site-header .header-socials {
  display: none;
}

.home .site-header .header-inner {
  min-height: 88px;
  position: relative;
  gap: 1rem;
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
}

.home .site-header .header-brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
  height: auto;
}

.home .site-header .brand-logo-wrap img,
.home .site-header .brand-logo-wrap .custom-logo {
  max-height: 50px;
  width: auto;
  display: block;
}

.home .site-header .brand {
  display: inline-flex;
  align-items: center;
}

.home .site-header .brand-text {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.home .site-header .main-nav .menu-list {
  gap: 2rem;
  align-items: center;
}

.home .site-header .main-nav a {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  display: inline-flex;
  align-items: center;
  color: #f5f9ff;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  letter-spacing: 0;
}

.home .site-header .header-cta {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  margin-left: auto;
  border: 1px solid rgba(70, 131, 255, 0.9);
  background: linear-gradient(145deg, #3270ff, #2659d6);
  color: #fff;
  min-height: 48px;
  padding: 13px 24px;
  align-self: center;
  box-shadow: 0 10px 24px rgba(28, 73, 199, 0.45);
  font-size: 12.8px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.2px;
}

.home .site-header .header-cta:hover {
  transform: translateY(-1px);
  color: #ffffff;
}

.home .site-main {
  padding-top: 0;
}

.hero.hero-mot {
  padding: 118px 0 96px;
  background:
    radial-gradient(45% 74% at 34% 48%, rgba(37, 95, 255, 0.34), transparent 72%),
    radial-gradient(63% 100% at 0% 0%, rgba(18, 43, 108, 0.42), transparent 72%),
    linear-gradient(106deg, #040916 0%, #07112d 42%, #071333 100%);
  color: #f5f8ff;
}

.hero.hero-mot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(67, 129, 255, 0.72);
}

.hero.hero-mot::after {
  content: "";
  position: absolute;
  left: -9%;
  right: -9%;
  bottom: -38px;
  height: 72px;
  background: #f3f4f6;
  border-top-left-radius: 56% 100%;
  border-top-right-radius: 56% 100%;
}

.hero-mot-container {
  position: relative;
  z-index: 1;
}

.hero-mot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  gap: 3.2rem;
  align-items: center;
}

.hero-mot-kicker {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(78, 118, 222, 0.58);
  background: rgba(11, 29, 75, 0.74);
  padding: 0.25rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8cb3ff;
}

.hero-mot-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3d7dff;
  box-shadow: 0 0 10px rgba(70, 131, 255, 0.7);
}

.hero-mot-copy h1 {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  margin-top: 1.14rem;
  font-size: 64px;
  line-height: 70.4px;
  letter-spacing: -1.92px;
  font-style: normal;
  font-weight: 800;
  color: #fff;
}

.hero-mot-copy h1 span {
  display: block;
  color: #2f67ff;
}

.hero-mot-subtitle {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  margin-top: 1rem;
  color: #fff;
  font-size: 40px;
  font-style: italic;
  font-weight: 300;
  line-height: 59.84px;
  letter-spacing: -1.92px;
}

.hero-rating-card {
  margin-top: 1.55rem;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: stretch;
  border-radius: 13px;
  border: 1px solid #d7deed;
  background: #ffffff;
  color: #101a36;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(4, 9, 24, 0.25);
}

.hero-rating-score {
  padding: 0.72rem 0.92rem 0.64rem;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.05rem 0.16rem;
}

.hero-rating-score strong {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  font-size: 2.08rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-rating-star {
  margin-top: -0.3rem;
  color: #ffb41f;
  font-size: 1rem;
}

.hero-rating-meta {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  font-weight: 700;
  color: #9099b2;
}

.hero-rating-google {
  border-left: 1px solid #e5eaf5;
  padding: 0.72rem 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.hero-google-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(145deg, #4285f4, #34a853);
}

.hero-google-meta {
  max-width: 82px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.22;
  color: #1d2a4f;
}

.hero-reg-form {
  margin-top: 1.55rem;
  max-width: 472px;
}

.hero-reg-form-row {
  display: flex;
  align-items: stretch;
  gap: 0.55rem;
}

.hero-reg-form label {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  display: block;
  margin-bottom: 0.6rem;
  color: rgba(194, 208, 238, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-reg-form input {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  width: 100%;
  height: 58px;
  border-radius: 12px;
  border: 1px solid #c9ac18;
  background: rgba(14, 22, 47, 0.9);
  color: #edf4ff;
  padding: 0 0.95rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  outline: none;
}

.hero-reg-form input::placeholder {
  color: #68789f;
}

.hero-reg-form input:focus {
  border-color: #e3cb4f;
  box-shadow: 0 0 0 2px rgba(227, 203, 79, 0.22);
}

.hero-reg-form-row input {
  flex: 1 1 auto;
}

.hero-reg-submit {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  min-height: 58px;
  border-radius: 12px;
  border: 1px solid rgba(84, 127, 255, 0.92);
  background: linear-gradient(180deg, #4079ff 0%, #2e63ed 100%);
  box-shadow: 0 10px 24px rgba(46, 99, 237, 0.32);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 1rem;
}

.hero-reg-submit:hover,
.hero-reg-submit:focus-visible {
  background: linear-gradient(180deg, #4b84ff 0%, #346bf3 100%);
}

.hero-reg-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.hero-reg-status {
  margin: 0.58rem 0 0;
  min-height: 1.25em;
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  color: #d3d9eb;
}

.hero-reg-status.is-loading {
  color: #bcd0ff;
}

.hero-reg-status.is-success {
  color: #8ce5b2;
}

.hero-reg-status.is-error {
  color: #ffb4c2;
}

.hero-vehicle-result {
  margin-top: 0.82rem;
  max-width: 472px;
  border: 1px solid rgba(88, 110, 170, 0.55);
  border-radius: 14px;
  background: rgba(8, 16, 36, 0.72);
  padding: 0.92rem;
}

.hero-vehicle-result h3 {
  margin: 0;
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d7e6ff;
}

.hero-vehicle-result__grid {
  margin: 0.72rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.8rem;
}

.hero-vehicle-result__grid div {
  margin: 0;
}

.hero-vehicle-result__grid dt {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(181, 197, 231, 0.74);
}

.hero-vehicle-result__grid dd {
  margin: 0.18rem 0 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: #edf4ff;
}

.hero-vehicle-result__cta {
  margin-top: 0.82rem;
  width: 100%;
  justify-content: center;
}

.hero-mot-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-btn-primary {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  min-height: 56px;
  gap: 7px;
  padding: 16px 32px 15.797px 32px;
  border: 1px solid rgba(84, 127, 255, 0.92);
  background-color: #2e63ed;
  background: linear-gradient(180deg, #4079ff 0%, #2e63ed 100%);
  box-shadow:
    0 14px 30px rgba(46, 99, 237, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 14.4px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 21.6px !important;
  color: #fff;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    color 180ms ease;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  background-color: #346bf3 !important;
  background: linear-gradient(180deg, #4b84ff 0%, #346bf3 100%);
  box-shadow:
    0 18px 36px rgba(52, 107, 243, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  filter: none !important;
}

.hero-btn-arrow {
  font-size: 0.95rem;
}

.hero-btn-secondary {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  min-height: 56px;
  padding: 17px 32px 16.797px 33px;
  gap: 8px;
  border: 1px solid rgba(112, 128, 176, 0.42);
  background: rgba(12, 21, 45, 0.34);
  color: #fff;
  font-size: 15.2px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.hero-btn-phone {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hero-btn-phone svg {
  width: 14px;
  height: 14px;
  display: block;
}

.hero-trust-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-trust-list li {
  font-family: "Inter", "Segoe UI", sans-serif !important;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  border-radius: 999px;
  border: 1px solid rgba(113, 136, 199, 0.42);
  background: rgba(16, 29, 69, 0.72);
  color: #d1d5db;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  padding: 0.42rem 0.7rem;
}

.hero-trust-list li span {
  color: #7ea5ff;
  font-size: 0.55rem;
}

.hero-booking-card {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d8dde8;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(2, 8, 24, 0.34);
}

.hero-booking-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-booking-tab {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  border: 0;
  padding: 1.02rem 0.7rem;
  font-size: 13.6px;
  font-style: normal;
  font-weight: 700;
  line-height: 20.4px;
  letter-spacing: 1.088px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-booking-tab:first-child {
  background: #ffffff;
  color: #111827;
}

.hero-booking-tab:last-child {
  background: #2f67ff;
  color: #fff;
}

.hero-booking-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-booking-panel {
  padding: 1.2rem 1.15rem 1.06rem;
  background: #f3f4f6;
}

.hero-booking-panel + .hero-booking-panel {
  border-left: 1px solid #e7eaf0;
  background: #ffffff;
}

.hero-booking-panel h2 {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  margin: 0 0 0.72rem;
  font-size: 0.92rem;
  color: #151d38;
  letter-spacing: -0.01em;
}

.hero-booking-card--single {
  border-color: #bfd0ee;
}

.hero-booking-panel--single {
  padding: 1.14rem 1.1rem 1.06rem;
  background: #f3f5f9;
}

.hero-booking-panel__title {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  margin: 0 0 0.74rem;
  font-size: 1.04rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #14213d;
  text-transform: uppercase;
}

.hero-booking-form {
  display: grid;
  gap: 0.58rem;
}

.hero-booking-form--single {
  gap: 0.62rem;
}

.hero-booking-form input[type="text"] {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  width: 100%;
  height: 41px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffd83d 0%, #ffcd17 100%);
  color: #957400;
  padding: 0 14px;
  font-size: 13.6px;
  line-height: 20.4px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  outline: none;
  box-shadow: inset 0 -1px 0 rgba(150, 112, 0, 0.16);
  caret-color: #4b3a00;
  appearance: none;
}

.hero-service-options {
  display: grid;
  gap: 0.48rem;
  max-height: 174px;
  overflow: auto;
  padding-right: 2px;
}

.hero-service-option {
  border: 1px solid #d7dfea;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.46rem 0.58rem;
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 0.56rem;
  align-items: start;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.hero-service-option:hover {
  border-color: #95b2e8;
  box-shadow: 0 8px 14px rgba(15, 23, 42, 0.09);
  transform: translateY(-1px);
}

.hero-service-option input {
  margin: 2px 0 0;
  width: 14px;
  height: 14px;
  accent-color: #2f67ff;
}

.hero-service-option__meta {
  display: grid;
  gap: 2px;
}

.hero-service-option__meta strong {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.hero-service-option__meta small {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #5b6781;
}

.hero-booking-form input[type="text"]::placeholder {
  color: #9b7a00;
}

.hero-booking-check {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.82rem;
  color: #29314c;
  font-weight: 600;
}

.hero-booking-check input {
  margin: 0;
  width: 13px;
  height: 13px;
  accent-color: #0f1a36;
}

.hero-search-btn {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
  width: 100%;
  min-height: 42px;
  border-radius: 15px;
  border: 0;
  background: #121b31;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 15.2px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.8px;
  box-shadow: 0 10px 20px rgba(10, 17, 35, 0.16);
}

.hero-search-btn:hover {
  transform: translateY(-1px);
}

.hero-search-btn-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hero-search-btn-icon svg {
  width: 15px;
  height: 15px;
  display: block;
  overflow: visible;
}

.hero-select-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem 0.55rem;
}

.hero-select-field span {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  display: block;
  margin-bottom: 0.24rem;
  font-size: 0.72rem;
  color: #616a84;
  font-weight: 600;
}

.hero-select-field select {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  width: 100%;
  height: 33px;
  border-radius: 11px;
  border: 1px solid #d9dee8;
  background: #ffffff;
  color: #242d49;
  padding: 0 0.62rem;
  font-size: 0.8rem;
  outline: none;
}

.hero-select-field select:focus {
  border-color: #2f67ff;
}

.hero-booking-note {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  margin: 0;
  color: #626d89;
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-booking-note a {
  margin-left: 0.24rem;
  color: #2f67ff;
  text-decoration: underline;
}

@media (min-width: 921px) {
  .home .site-header .header-menu-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
    width: auto;
    height: auto;
    min-height: 0;
    align-self: center;
    z-index: 2;
  }

  body.admin-bar.home .site-header .header-menu-block {
    top: 15%;
  }

  .home .site-header .header-brand,
  .home .site-header .header-cta {
    position: relative;
    z-index: 3;
  }

  .home .site-header .header-menu-block.header-builder-block-menu,
  .home .site-header .main-nav,
  .home .site-header .main-nav .menu-list {
    width: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    flex: 0 0 auto;
    align-self: center;
  }

  .home .site-header .main-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 0;
  }

  .home .site-header .main-nav .menu-list {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
  }
}

@media (max-width: 1200px) {
  .hero.hero-mot {
    padding-top: 112px;
  }

  .hero-mot-grid {
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  }

  .hero-mot-copy h1 {
    font-size: 56px;
    line-height: 61.6px;
    letter-spacing: -1.68px;
  }

  .hero-mot-subtitle {
    font-size: 34px;
    line-height: 50.84px;
    letter-spacing: -1.63px;
  }
}

@media (max-width: 980px) {
  .hero.hero-mot {
    padding: 104px 0 82px;
  }

  .hero.hero-mot::after {
    height: 68px;
    bottom: -34px;
  }

  .hero-mot-grid {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  .hero-mot-copy h1 {
    font-size: 52px;
    line-height: 57.2px;
    letter-spacing: -1.56px;
  }

  .hero-mot-subtitle {
    font-size: 32px;
    line-height: 47.87px;
    letter-spacing: -1.54px;
  }

  .hero-booking-tabs .hero-booking-tab {
    background: #eceff5;
    color: #203056;
  }

  .hero-booking-tabs .hero-booking-tab.is-active {
    background: #2f67ff;
    color: #ffffff;
  }

  .hero-booking-body {
    display: block;
  }

  .hero-booking-panel {
    display: none;
  }

  .hero-booking-panel.is-active,
  .hero-booking-panel--single {
    display: block;
  }

  .hero-booking-panel--single {
    padding: 1.04rem 0.96rem 0.94rem;
  }

  .hero-service-options {
    max-height: none;
  }
}

@media (max-width: 920px) {
  .home .site-header .header-cta {
    padding: 0.58rem 1rem;
  }
}

@media (max-width: 760px) {
  .home .site-header .brand-logo-wrap img,
  .home .site-header .brand-logo-wrap .custom-logo {
    max-height: 44px;
  }

  .home .site-header .brand-text {
    font-size: 1.55rem;
  }

  .hero.hero-mot {
    padding: 88px 0 74px;
  }

  .hero.hero-mot::after {
    height: 58px;
    bottom: -30px;
  }

  .hero-mot-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .hero-mot-subtitle {
    margin-top: 0.85rem;
    font-size: 30px;
    line-height: 44.88px;
    letter-spacing: -1.44px;
  }

  .hero-mot-copy h1 {
    font-size: 42px;
    line-height: 46.2px;
    letter-spacing: -1.26px;
  }

  .hero-reg-form input {
    height: 52px;
    font-size: 0.88rem;
  }

  .hero-booking-panel__title {
    font-size: 0.95rem;
  }

  .hero-reg-form-row {
    flex-direction: column;
  }

  .hero-reg-submit {
    width: 100%;
    min-height: 52px;
  }

  .hero-vehicle-result__grid {
    grid-template-columns: 1fr;
  }

  .hero-mot-actions {
    gap: 0.5rem;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 782px) {
  body.admin-bar.home .site-header {
    top: 46px;
  }

  body.admin-bar .site-header .header-menu-block.header-builder-block-menu .main-nav {
    top: 46px;
    min-height: calc(100dvh - 46px);
    height: calc(100dvh - 46px);
  }

  body.admin-bar .mobile-nav-backdrop {
    top: 46px;
  }
}

@media (min-width: 783px) and (max-width: 920px) {
  body.admin-bar.home .site-header {
    top: 32px;
  }

  body.admin-bar .site-header .header-menu-block.header-builder-block-menu .main-nav {
    top: 32px;
    min-height: calc(100dvh - 32px);
    height: calc(100dvh - 32px);
  }

  body.admin-bar .mobile-nav-backdrop {
    top: 32px;
  }
}

@media (min-width: 921px) {
  body.admin-bar.home .site-header {
    top: 32px;
  }

  body.admin-bar .site-header .header-menu-block.header-builder-block-menu .main-nav {
    top: 32px;
    min-height: auto;
    height: auto;
  }
}

/*
  Global typography lock:
  Headings = Poppins, Body/Nav = Inter.
  Use !important so legacy builder inline styles cannot override.
*/
body,
input,
select,
textarea,
button {
  font-family: "Inter", "Segoe UI", sans-serif !important;
}

p,
li,
label,
small,
figcaption,
blockquote {
  font-family: "Inter", "Segoe UI", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Segoe UI", sans-serif !important;
}

.main-nav,
.main-nav .menu-list,
.main-nav a,
.menu-list a,
.header-cta,
.menu-toggle,
.btn {
  font-family: "Inter", "Segoe UI", sans-serif !important;
}

/*
  Shared interactive motion for button-like links and CTAs.
*/
.btn,
.header-cta,
.mot-deals-cta,
.booking-steps-cta,
.cta-band-urgent .cta-btn,
.hero-search-btn {
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
  will-change: transform, box-shadow;
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.mot-deals-cta:hover,
.mot-deals-cta:focus-visible,
.booking-steps-cta:hover,
.booking-steps-cta:focus-visible,
.cta-band-urgent .cta-btn:hover,
.cta-band-urgent .cta-btn:focus-visible,
.hero-search-btn:hover,
.hero-search-btn:focus-visible {
  transform: translateY(-2px) !important;
  filter: brightness(1.04);
}

a.btn:hover,
a.btn:focus-visible,
a.header-cta:hover,
a.header-cta:focus-visible,
a.mot-deals-cta:hover,
a.mot-deals-cta:focus-visible,
a.booking-steps-cta:hover,
a.booking-steps-cta:focus-visible,
a.cta-btn:hover,
a.cta-btn:focus-visible {
  color: var(--builder-color-button-text, #fff) !important;
  text-decoration: none;
}

/*
  Navigation link underline animation.
*/
.main-nav > .menu-list > li > a {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 calc(100% + 3px);
  transition: color 220ms ease, background-size 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav > .menu-list > li > a:hover,
.main-nav > .menu-list > li > a:focus-visible {
  background-size: 100% 2px;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .header-cta,
  .mot-deals-cta,
  .booking-steps-cta,
  .cta-band-urgent .cta-btn,
  .hero-search-btn,
  .main-nav a {
    transition: none;
  }

  .btn:hover,
  .btn:focus-visible,
  .header-cta:hover,
  .header-cta:focus-visible,
  .mot-deals-cta:hover,
  .mot-deals-cta:focus-visible,
  .booking-steps-cta:hover,
  .booking-steps-cta:focus-visible,
  .cta-band-urgent .cta-btn:hover,
  .cta-band-urgent .cta-btn:focus-visible,
  .hero-search-btn:hover,
  .hero-search-btn:focus-visible {
    transform: none !important;
    filter: none;
  }
}

/*
  Social proof section replica.
*/
.dark-section.social-proof-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0 102px;
  background:
    radial-gradient(58% 160% at 12% 52%, rgba(37, 99, 235, 0.25) 0%, rgba(37, 99, 235, 0) 72%),
    radial-gradient(64% 180% at 84% 50%, rgba(27, 49, 106, 0.3) 0%, rgba(6, 17, 44, 0) 70%),
    linear-gradient(90deg, #040b1b 0%, #071534 45%, #061739 100%);
}

.social-proof-wrap {
  width: min(1220px, calc(100% - 2rem));
  max-width: 1220px;
}

.social-proof-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.social-proof-kicker {
  font-family: "Inter", "Segoe UI", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.44rem;
  min-height: 34px;
  padding: 0.38rem 0.88rem 0.38rem 0.64rem;
  border-radius: 999px;
  border: 1px solid #dce6fd;
  background: #e9f0ff;
  color: #2563eb;
  text-align: center;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.512px;
}

.social-proof-kicker-icon {
  display: inline-grid;
  place-items: center;
  width: 13px;
  height: 13px;
}

.social-proof-kicker-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-proof-head h2 {
  margin: 20px 0 14px;
  color: #fff;
  text-align: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 55.2px;
  letter-spacing: -1.44px;
}

.social-proof-head p {
  margin: 0 auto;
  max-width: 475px;
  color: #9ca3af;
  text-align: center;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.2px;
}

.social-proof-rating-card {
  width: min(346px, 100%);
  margin: 28px auto 46px;
  padding: 12px 18px 11px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(3, 13, 38, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.social-proof-rating-left {
  display: grid;
  gap: 2px;
}

.social-proof-rating-number {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  color: #111827;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px;
  letter-spacing: -0.92px;
}

.social-proof-rating-star {
  color: #f59e0b;
  font-size: 20px;
  line-height: 1;
}

.social-proof-rating-left p {
  margin: 0;
  color: #9ca3af;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.social-proof-rating-divider {
  width: 1px;
  height: 52px;
  background: #e5e7eb;
}

.social-proof-rating-right {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  color: #111827;
}

.social-proof-google-g {
  display: inline-block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.62px;
  background: conic-gradient(from 180deg at 50% 50%, #4285f4 0deg 90deg, #34a853 90deg 180deg, #fbbc05 180deg 270deg, #ea4335 270deg 360deg);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.social-proof-rating-right strong {
  color: #111827;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.social-proof-card {
  position: relative;
  overflow: hidden;
  min-height: 324px;
  border-radius: 18px;
  background: #f3f4f6;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.04);
  padding: 23px 22px 18px;
  display: flex;
  flex-direction: column;
}

.social-proof-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 74px;
  border-bottom-left-radius: 72px;
  background: rgba(17, 24, 39, 0.05);
}

.social-proof-card.tone-blue::after {
  background: rgba(148, 163, 184, 0.15);
}

.social-proof-card.tone-purple::after {
  background: rgba(196, 181, 253, 0.2);
}

.social-proof-card.tone-green::after {
  background: rgba(187, 247, 208, 0.16);
}

.social-proof-quote {
  position: relative;
  z-index: 1;
  margin: 0 0 7px;
  color: #bfdbfe;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.social-proof-card.tone-purple .social-proof-quote {
  color: #c4b5fd;
}

.social-proof-card.tone-green .social-proof-quote {
  color: #a7f3d0;
}

.social-proof-stars {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: #f59e0b;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.34px;
}

.social-proof-card > p {
  position: relative;
  z-index: 1;
  margin: 0 0 15px;
  color: #4b5563;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.2px;
}

.social-proof-author {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-proof-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 10.2px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.social-proof-avatar.avatar-blue {
  background: #2563eb;
}

.social-proof-avatar.avatar-purple {
  background: #7c3aed;
}

.social-proof-avatar.avatar-green {
  background: #059669;
}

.social-proof-author-meta {
  display: grid;
  gap: 2px;
}

.social-proof-author-meta strong {
  color: #111827;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.44px;
}

.social-proof-author-meta small {
  color: #9ca3af;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 11.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.8px;
}

@media (max-width: 1140px) {
  .dark-section.social-proof-section {
    padding: 78px 0 88px;
  }

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

@media (max-width: 840px) {
  .social-proof-head h2 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -1.2px;
  }

  .social-proof-head p {
    max-width: 520px;
  }

  .social-proof-author-meta strong {
    font-size: 20px;
    line-height: 21px;
  }
}

@media (max-width: 680px) {
  .dark-section.social-proof-section {
    padding: 66px 0 74px;
  }

  .social-proof-wrap {
    width: min(1220px, calc(100% - 1.25rem));
  }

  .social-proof-head h2 {
    font-size: 34px;
    line-height: 39.1px;
    letter-spacing: -1.02px;
  }

  .social-proof-head p {
    font-size: 14.4px;
    line-height: 24.48px;
  }

  .social-proof-rating-card {
    gap: 10px;
    padding: 11px 14px;
  }

  .social-proof-rating-number {
    font-size: 38px;
    line-height: 37px;
  }

  .social-proof-rating-right strong {
    font-size: 15.4px;
    line-height: 18px;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .social-proof-card {
    min-height: 0;
  }
}

/*
  FAQ section replica.
*/
.light-section.mot-faq-section {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
  padding: 94px 0 124px;
}

.mot-faq-wrap {
  width: min(1220px, calc(100% - 2rem));
  max-width: 1220px;
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(560px, 1.22fr);
  gap: 2.95rem;
  align-items: start;
}

.mot-faq-copy {
  max-width: 360px;
  padding-top: 28px;
}

.mot-faq-kicker {
  font-family: "Inter", "Segoe UI", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.44rem;
  min-height: 34px;
  padding: 0.38rem 0.86rem 0.38rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #dce6fd;
  background: #e9f0ff;
  color: #155dfc;
  text-align: center;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.512px;
}

.mot-faq-kicker-icon {
  display: inline-grid;
  place-items: center;
  width: 13px;
  height: 13px;
}

.mot-faq-kicker-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mot-faq-copy h2 {
  margin: 20px 0 16px;
  color: #111827;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 800;
  line-height: 50.6px;
  letter-spacing: -1.32px;
}

.mot-faq-copy h2 span {
  color: #2563eb;
}

.mot-faq-copy p {
  margin: 0;
  color: #9ca3af;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.48px;
}

.mot-faq-copy p a {
  color: #2563eb;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.48px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.mot-faq-panel {
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
  padding: 6px 24px 4px;
}

.mot-faq-panel .mot-faq-item {
  margin: 0;
  border: none;
  border-bottom: 1px solid #eceff3;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.mot-faq-panel .mot-faq-item:last-child {
  border-bottom: 0;
}

.mot-faq-panel .mot-faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 62px;
  cursor: pointer;
  padding: 0;
  color: #111827;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.4px;
  letter-spacing: 0;
}

.mot-faq-panel .mot-faq-item summary::-webkit-details-marker {
  display: none;
}

.mot-faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f3f4f6;
}

.mot-faq-toggle::before,
.mot-faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1.8px;
  background: #9ca3af;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.mot-faq-toggle::after {
  width: 1.8px;
  height: 10px;
}

.mot-faq-panel .mot-faq-item[open] .mot-faq-toggle::after {
  display: none;
}

.mot-faq-answer {
  padding: 0 0 16px;
}

.mot-faq-answer p {
  margin: 0;
  max-width: 92%;
  color: #6b7280;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 13.6px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.44px;
}

@media (max-width: 1140px) {
  .light-section.mot-faq-section {
    padding: 82px 0 102px;
  }

  .mot-faq-wrap {
    grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
    gap: 2rem;
  }

  .mot-faq-copy h2 {
    font-size: 42px;
    line-height: 48.3px;
    letter-spacing: -1.26px;
  }

  .mot-faq-panel .mot-faq-item summary {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .mot-faq-wrap {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .mot-faq-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .mot-faq-panel {
    padding: 2px 18px;
  }
}

@media (max-width: 680px) {
  .light-section.mot-faq-section {
    padding: 66px 0 78px;
  }

  .mot-faq-wrap {
    width: min(1220px, calc(100% - 1.25rem));
  }

  .mot-faq-copy h2 {
    margin: 18px 0 13px;
    font-size: 36px;
    line-height: 41.4px;
    letter-spacing: -1.08px;
  }

  .mot-faq-copy p {
    font-size: 14.4px;
    line-height: 24.48px;
  }

  .mot-faq-panel {
    border-radius: 18px;
    padding: 2px 14px;
  }

  .mot-faq-panel .mot-faq-item summary {
    min-height: 56px;
    font-size: 14.4px;
    line-height: 20.4px;
  }
}

/*
  Premium footer replica.
*/
.site-footer.footer-premium {
  position: relative;
  overflow: hidden;
  padding: 72px 0 34px;
  background:
    radial-gradient(82% 170% at 18% 45%, rgba(37, 99, 235, 0.17) 0%, rgba(37, 99, 235, 0) 72%),
    radial-gradient(74% 190% at 88% 52%, rgba(20, 54, 125, 0.24) 0%, rgba(7, 21, 52, 0) 70%),
    linear-gradient(90deg, #040c1f 0%, #061737 54%, #051a3d 100%);
  color: #cbd5e1;
}

.site-footer.footer-premium::before {
  content: none;
}

.site-footer.footer-premium .footer-main-grid {
  width: min(1220px, calc(100% - 2rem));
  max-width: 1220px;
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(180px, 0.85fr) minmax(260px, 1.2fr) minmax(230px, 1.05fr);
  gap: 2.45rem;
  align-items: start;
}

.site-footer.footer-premium .footer-brand .brand-logo-wrap img,
.site-footer.footer-premium .footer-brand .brand-logo-wrap .custom-logo {
  max-height: 66px;
  width: auto;
}

.site-footer.footer-premium .footer-brand p {
  margin: 14px 0 0;
  max-width: 270px;
  color: #96a3bc;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.48px;
}

.site-footer.footer-premium .footer-socials {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer.footer-premium .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: 0;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 30, 64, 0.7);
  color: #cfd8ea;
  transition: border-color 160ms ease, transform 160ms ease, color 160ms ease, background 160ms ease;
}

.site-footer.footer-premium .footer-socials a:hover,
.site-footer.footer-premium .footer-socials a:focus-visible {
  color: #ffffff;
  border-color: rgba(58, 130, 246, 0.72);
  background: rgba(24, 48, 98, 0.82);
  transform: translateY(-1px);
}

.site-footer.footer-premium .footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.site-footer.footer-premium h3 {
  margin: 7px 0 16px;
  color: #f8fafc;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 15.2px;
  font-style: normal;
  font-weight: 600;
  line-height: 21.28px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

.site-footer.footer-premium .footer-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-footer.footer-premium .footer-menu-list li {
  position: relative;
  padding-left: 11px;
}

.site-footer.footer-premium .footer-menu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #5c6f98;
}

.site-footer.footer-premium .footer-menu-list a {
  display: inline-block;
  margin-top: 0;
  color: #8fa0bf;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 500;
  line-height: 21.6px;
}

.site-footer.footer-premium .footer-menu-list a:hover {
  color: #e5ecff;
}

.site-footer.footer-premium .footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.site-footer.footer-premium .footer-contact-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.site-footer.footer-premium .footer-contact-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  border: 1px solid rgba(59, 130, 246, 0.45);
  background: rgba(29, 78, 216, 0.3);
  display: block;
  color: #8ec2ff;
  line-height: 0;
}

.site-footer.footer-premium .footer-contact-icon svg {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer.footer-premium .footer-contact-list a,
.site-footer.footer-premium .footer-contact-list span {
  display: block;
  margin-top: 0;
  color: #8fa0bf;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.04px;
}

.site-footer.footer-premium .footer-contact-list a:hover {
  color: #e5ecff;
}

.site-footer.footer-premium .footer-map-card {
  border-radius: 15px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(30, 44, 73, 0.72);
  min-height: 126px;
  padding: 19px 16px 17px;
  display: grid;
  place-items: center;
  text-align: center;
}

.site-footer.footer-premium .footer-map-icon {
  width: 31px;
  height: 31px;
  color: #2f81ff;
  margin-bottom: 8px;
}

.site-footer.footer-premium .footer-map-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer.footer-premium .footer-map-card p {
  margin: 0;
  color: #8f9cb3;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 13.6px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.4px;
}

.site-footer.footer-premium .footer-map-button {
  margin-top: 12px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 49px;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.58);
  background: rgba(18, 45, 99, 0.58);
  color: #7db8ff;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.site-footer.footer-premium .footer-map-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer.footer-premium .footer-map-button:hover,
.site-footer.footer-premium .footer-map-button:focus-visible {
  color: #cbe3ff;
  border-color: rgba(96, 165, 250, 0.9);
  background: rgba(24, 59, 125, 0.75);
}

.site-footer.footer-premium .footer-booking-button {
  margin-top: 10px;
  display: inline-flex;
  width: 100%;
  min-height: 49px;
  border-radius: 12px;
  border: 1px solid #2563eb;
  background: linear-gradient(145deg, #3270ff, #2659d6);
  color: #ffffff;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-footer.footer-premium .footer-booking-button:hover,
.site-footer.footer-premium .footer-booking-button:focus-visible {
  color: #ffffff;
  background: linear-gradient(145deg, #3a78ff, #2c65e2);
}

.site-footer.footer-premium .footer-bottom {
  width: min(1220px, calc(100% - 2rem));
  max-width: 1220px;
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer.footer-premium .footer-bottom p {
  margin: 0;
  color: #687692;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
}

.site-footer.footer-premium .footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.site-footer.footer-premium .footer-legal-links a {
  margin-top: 0;
  color: #66758f;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 12.8px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
}

.site-footer.footer-premium .footer-legal-links a:hover {
  color: #dbe7ff;
}

@media (max-width: 1120px) {
  .site-footer.footer-premium {
    padding: 64px 0 30px;
  }

  .site-footer.footer-premium .footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.9rem 1.7rem;
  }
}

@media (max-width: 760px) {
  .site-footer.footer-premium {
    padding: 56px 0 28px;
  }

  .site-footer.footer-premium .footer-main-grid {
    width: min(1220px, calc(100% - 1.25rem));
    grid-template-columns: 1fr;
  }

  .site-footer.footer-premium .footer-brand p {
    max-width: none;
  }

  .site-footer.footer-premium .footer-bottom {
    width: min(1220px, calc(100% - 1.25rem));
    margin-top: 28px;
    gap: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer.footer-premium .footer-legal-links {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }
}
