:root {
  --wine: #4b071b;
  --wine-2: #6d1029;
  --wine-3: #8c1c39;
  --gold: #d8a33d;
  --gold-2: #f1c46a;
  --ink: #181318;
  --muted: #6e666a;
  --line: #e7dfe2;
  --soft: #f7f3f4;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(43, 10, 22, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 112px 0;
}
.section--soft {
  background: var(--soft);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: var(--wine);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.page-loader span {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--gold-2);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 2500;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1500;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: rgba(22, 8, 14, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(26, 10, 16, 0.08);
  border-color: rgba(75, 7, 27, 0.08);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  width: 118px;
  height: 62px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.site-header.is-scrolled .desktop-nav a {
  color: var(--ink);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.desktop-nav a:hover::after {
  right: 0;
}
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  border: 0;
  border-radius: 999px;
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}
.btn--large {
  min-height: 56px;
  padding: 0 28px;
}
.btn--primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 12px 28px rgba(75, 7, 27, 0.22);
}
.btn--primary:hover {
  background: var(--wine-2);
  box-shadow: 0 16px 34px rgba(75, 7, 27, 0.28);
}
.btn--gold {
  color: #27170b;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 35px rgba(216, 163, 61, 0.24);
}
.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.site-header.is-scrolled .btn--outline {
  color: var(--wine);
  border-color: rgba(75, 7, 27, 0.22);
}
.btn--outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}
.btn--glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: 0.25s;
}
.site-header.is-scrolled .menu-toggle {
  background: var(--soft);
}
.site-header.is-scrolled .menu-toggle span {
  background: var(--wine);
}
.mobile-menu {
  display: none;
}

.hero {
  min-height: 760px;
  position: relative;
  background: #190b10;
}
.hero-slider,
.hero-slide {
  min-height: 760px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-slide.is-active .hero-slide__media {
  transform: scale(1);
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 5, 12, 0.93) 0%,
    rgba(38, 6, 17, 0.77) 44%,
    rgba(28, 6, 14, 0.28) 72%,
    rgba(20, 4, 10, 0.15) 100%
  );
}
.hero-slide__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12),
    transparent 45%,
    rgba(0, 0, 0, 0.4)
  );
}
.hero-slide__overlay--second {
  background: linear-gradient(
    90deg,
    rgba(24, 5, 12, 0.94) 0%,
    rgba(45, 8, 21, 0.82) 48%,
    rgba(28, 6, 14, 0.38) 78%,
    rgba(20, 4, 10, 0.15) 100%
  );
}
.hero-content {
  min-height: 760px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 100px;
}
.hero-copy {
  width: min(720px, 70%);
  color: #fff;
}
.kicker {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}
.kicker span {
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.hero h1,
.hero h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(46px, 5.6vw, 78px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  max-width: 760px;
}
.hero-copy > p:not(.kicker) {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  width: min(650px, 100%);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.hero-proof--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 440px;
}
.hero-proof__item {
  padding: 18px 20px;
  background: rgba(21, 5, 12, 0.34);
}
.hero-proof__item strong,
.hero-proof__item span {
  display: block;
}
.hero-proof__item strong {
  color: var(--gold-2);
  font-family: "Inter", sans-serif;
  font-size: 19px;
}
.hero-proof__item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 4px;
}
.hero-controls {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-dots {
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 54px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.27);
  padding: 0;
  border-radius: 999px;
  overflow: hidden;
}
.hero-dots button span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold-2);
}
.hero-dots button.is-active span {
  animation: sliderProgress 6s linear forwards;
}
@keyframes sliderProgress {
  to {
    width: 100%;
  }
}
.hero-arrows {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.72);
}
.hero-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.hero-arrows span {
  font-size: 12px;
  letter-spacing: 0.12em;
}
.hero-arrows strong {
  color: #fff;
  font-size: 15px;
}

.quick-booking {
  padding: 34px 0 40px;
  background: #fff;
}
.quick-booking__panel {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) auto;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #fff;
}
.quick-booking__intro,
.quick-field {
  min-height: 92px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}
.quick-booking__intro {
  display: flex;
  gap: 14px;
  align-items: center;
}
.quick-booking__intro small,
.quick-field small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.quick-booking__intro strong,
.quick-field span {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  color: var(--ink);
}
.quick-booking__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--wine);
  font-size: 22px;
}
.quick-field {
  border: 0;
  border-right: 1px solid var(--line);
  text-align: left;
  background: #fff;
}
.quick-field:hover {
  background: #fcf9fa;
}
.quick-booking__panel > .btn {
  margin: 18px;
  align-self: center;
}

.trust-strip {
  padding: 26px 0;
  background: var(--wine);
  color: #fff;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-strip__grid > div {
  padding: 8px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.trust-strip__grid > div:last-child {
  border-right: 0;
}
.trust-strip span {
  grid-row: span 2;
  color: var(--gold-2);
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.trust-strip strong,
.trust-strip small {
  display: block;
}
.trust-strip strong {
  font-size: 14px;
}
.trust-strip small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 76px;
}
.image-frame {
  position: relative;
  min-height: 590px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--soft);
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(40, 6, 18, 0.38));
  pointer-events: none;
}
.image-frame img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}
.image-frame__badge {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  padding: 18px 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(42, 7, 20, 0.66);
  backdrop-filter: blur(12px);
}
.image-frame__badge strong,
.image-frame__badge span {
  display: block;
}
.image-frame__badge strong {
  font-family: "Inter", sans-serif;
  font-size: 21px;
}
.image-frame__badge span {
  color: rgba(255, 255, 255, 0.72);
}
.section-label {
  margin: 0 0 18px;
  color: var(--wine-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
}
.section-label--light {
  color: var(--gold-2);
}
.content-block h2,
.section-head h2,
.process-content h2,
.app-copy h2,
.confidence-content h2,
.drivers-copy h2,
.contact-copy h2,
.download-card h2 {
  margin: 0;
  font: 700 clamp(38px, 4.6vw, 52px) / 1.08 "Inter", sans-serif;
  letter-spacing: -0.05em;
}
.content-block p,
.section-head > p,
.process-content > p,
.app-copy > p,
.drivers-copy > p,
.contact-copy > p {
  color: var(--muted);
}
.lead {
  font-size: 19px;
  color: #3e3539 !important;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0 34px;
}
.check-grid span,
.driver-benefits span {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}
.check-grid span::before,
.driver-benefits span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--wine);
  font-weight: 700;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}
.section-head > p {
  margin: 0;
  font-size: 17px;
}
.section-head--center {
  display: block;
  text-align: center;
  max-width: 760px;
}
.section-head--center > p {
  max-width: 620px;
  margin: 18px auto 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefit-card {
  min-height: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(109, 16, 41, 0.24);
}
.benefit-card > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--soft);
  border-radius: 12px;
  color: var(--wine);
  font: 700 13px "Inter", sans-serif;
}
.benefit-card h3 {
  margin: 42px 0 12px;
  font: 700 21px/1.25 "Inter", sans-serif;
}
.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 312px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -55px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(216, 163, 61, 0.16),
    transparent 67%
  );
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.service-card > span {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #b6adb0;
  font-size: 12px;
}
.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--wine);
  color: var(--gold-2);
  font-size: 22px;
}
.service-card h3 {
  margin: 44px 0 10px;
  font: 700 20px/1.25 "Inter", sans-serif;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.service-card button {
  position: absolute;
  left: 26px;
  bottom: 23px;
  border: 0;
  background: transparent;
  color: var(--wine);
  padding: 0;
  font-weight: 700;
}
.service-card button b {
  color: var(--gold);
  margin-left: 6px;
}

.process {
  background: var(--wine);
  color: #fff;
}
.process-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: center;
}
.process-image {
  position: relative;
  min-height: 640px;
  border-radius: 26px;
  overflow: hidden;
}
.process-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}
.process-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(23, 3, 10, 0.55));
}
.process-image__card {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}
.process-image__card span {
  font: 700 42px "Inter", sans-serif;
  color: var(--wine);
}
.process-image__card p {
  margin: 0;
}
.process-content > p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 620px;
}
.steps-list {
  margin-top: 35px;
}
.steps-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.steps-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.steps-list article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-2);
  border: 1px solid rgba(241, 196, 106, 0.38);
  font-weight: 700;
}
.steps-list h3 {
  margin: 0 0 5px;
  font: 700 19px "Inter", sans-serif;
}
.steps-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0 36px;
}
.app-features div {
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--soft);
  border-radius: 12px;
}
.app-features span {
  color: var(--wine);
  font-weight: 700;
}
.app-features strong {
  font-size: 14px;
}
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-button {
  min-height: 60px;
  min-width: 178px;
  padding: 8px 18px;
  border: 0;
  border-radius: 13px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: #181318;
  color: #fff;
  text-align: left;
}
.store-button > span {
  font-size: 24px;
}
.store-button small,
.store-button strong {
  display: block;
  line-height: 1.1;
}
.store-button small {
  font-size: 10px;
}
.store-button strong {
  margin-top: 3px;
  font-size: 16px;
}
.phone-showcase {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
}
.phone-card {
  position: absolute;
  right: 0;
  top: 35px;
  width: 75%;
  height: 520px;
  border-radius: 30px;
  overflow: hidden;
  transform: rotate(5deg);
  box-shadow: var(--shadow);
}
.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(75, 7, 27, 0.05),
    rgba(75, 7, 27, 0.32)
  );
}
.phone-mockup {
  position: relative;
  z-index: 3;
  width: 310px;
  height: 620px;
  padding: 12px;
  border-radius: 42px;
  background: #111;
  box-shadow: 0 35px 90px rgba(28, 9, 15, 0.24);
  transform: translateX(-58px);
}
.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 24px;
  border-radius: 999px;
  background: #111;
  z-index: 5;
}
.phone-screen {
  height: 100%;
  padding: 34px 18px 18px;
  border-radius: 33px;
  background: linear-gradient(180deg, #fff, #f6f0f2);
  overflow: hidden;
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-top img {
  width: 72px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.phone-screen > p {
  margin: 28px 0 3px;
  color: var(--muted);
  font-size: 12px;
}
.phone-screen h3 {
  margin: 0;
  font: 700 25px/1.15 "Inter", sans-serif;
}
.phone-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.phone-search span {
  color: var(--wine);
}
.phone-map {
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(
      135deg,
      transparent 48%,
      rgba(75, 7, 27, 0.12) 49%,
      rgba(75, 7, 27, 0.12) 52%,
      transparent 53%
    ),
    linear-gradient(
      35deg,
      transparent 43%,
      rgba(216, 163, 61, 0.22) 44%,
      rgba(216, 163, 61, 0.22) 47%,
      transparent 48%
    ),
    #ebe5e7;
  position: relative;
  overflow: hidden;
}
.phone-map::after {
  content: "⌖";
  position: absolute;
  left: 54%;
  top: 44%;
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--wine);
  font-size: 21px;
}
.phone-map::before {
  content: "";
  position: absolute;
  left: 20%;
  right: 10%;
  top: 58%;
  height: 3px;
  background: var(--gold);
  transform: rotate(-15deg);
  border-radius: 999px;
}
.phone-driver {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 13px;
  background: #fff;
}
.phone-driver > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-size: 11px;
}
.phone-driver strong,
.phone-driver small {
  display: block;
}
.phone-driver strong {
  font-size: 12px;
}
.phone-driver small {
  color: var(--muted);
  font-size: 9px;
}
.phone-driver b {
  font-size: 11px;
  color: var(--wine);
}
.phone-screen > button {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 12px;
  margin-top: 14px;
  background: var(--wine);
  color: #fff;
  font-weight: 700;
}

.confidence-banner {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.confidence-banner__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.confidence-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(32, 4, 14, 0.94),
    rgba(53, 8, 23, 0.74) 47%,
    rgba(28, 4, 12, 0.18)
  );
  z-index: 1;
}
.confidence-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}
.confidence-content h2 {
  max-width: 800px;
}
.confidence-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  margin: 24px 0 34px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mission-card {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mission-card--dark {
  background: var(--wine);
  color: #fff;
  border-color: transparent;
}
.mission-card > span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
}
.mission-card h3 {
  margin: 16px 0 14px;
  font: 700 34px/1.1 "Inter", sans-serif;
  letter-spacing: -0.035em;
}
.mission-card p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
}
.mission-card--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.drivers {
  background: #211017;
  color: #fff;
}
.drivers-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}
.drivers-copy > p {
  color: rgba(255, 255, 255, 0.66);
  max-width: 600px;
}
.driver-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 34px 0 38px;
}
.driver-benefits span::before {
  color: var(--gold-2);
}
.drivers-image {
  position: relative;
  height: 650px;
  border-radius: 26px;
  overflow: hidden;
}
.drivers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drivers-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(25, 4, 12, 0.66));
}
.earning-card {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.91);
  color: var(--ink);
}
.earning-card small,
.earning-card strong {
  display: block;
}
.earning-card small {
  color: var(--muted);
}
.earning-card strong {
  font: 700 24px "Inter", sans-serif;
}

.download-cta {
  padding-top: 90px;
  padding-bottom: 90px;
}
.download-card {
  padding: 58px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--wine-2));
  box-shadow: var(--shadow);
}
.download-card > div:first-child {
  max-width: 660px;
}
.download-card h2 {
  font-size: clamp(34px, 4vw, 52px);
}
.download-card p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}
.download-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.store-button--light {
  background: #fff;
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: start;
}
.contact-copy .lead {
  margin-top: 24px;
}
.contact-details {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}
.contact-details a {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: background 0.25s ease;
}
.contact-details a:hover {
  background: var(--soft);
}
.contact-details span,
.contact-details strong {
  display: block;
}
.contact-details span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-details strong {
  margin-top: 4px;
  font-size: 18px;
}
.contact-form {
  padding: 36px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #ded4d7;
  border-radius: 12px;
  background: #fff;
  padding: 14px 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--wine-2);
  box-shadow: 0 0 0 3px rgba(109, 16, 41, 0.08);
}
textarea {
  resize: vertical;
  min-height: 130px;
}
.contact-form .btn {
  width: 100%;
}
.form-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  background: #14090d;
  color: #fff;
  padding-top: 76px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 54px;
}
.footer-brand img {
  width: 150px;
  height: 86px;
  object-fit: contain;
  border-radius: 13px;
  background: #fff;
}
.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.58);
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links strong,
.footer-contact strong {
  color: var(--gold-2);
  margin-bottom: 8px;
}
.footer-links a,
.footer-links button,
.footer-contact a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}
.footer-links button {
  padding: 0;
  border: 0;
  text-align: left;
  background: transparent;
}
.footer-links a:hover,
.footer-links button:hover,
.footer-contact a:hover {
  color: #fff;
}
.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}
.footer-bottom a {
  color: var(--gold-2);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 5, 11, 0.72);
  backdrop-filter: blur(6px);
}
.modal__dialog {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 38px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: 0.25s ease;
}
.modal.is-open .modal__dialog {
  transform: translateY(0);
}
.modal__dialog h2 {
  margin: 0 0 24px;
  font: 700 34px/1.12 "Inter", sans-serif;
  letter-spacing: -0.04em;
}
.modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--wine);
  font-size: 25px;
}
.modal-form .btn {
  width: 100%;
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.reveal-up {
  transform: translateY(35px);
}
.reveal-left {
  transform: translateX(-35px);
}
.reveal-right {
  transform: translateX(35px);
}
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu {
    position: fixed;
    top: 84px;
    left: 20px;
    right: 20px;
    padding: 24px;
    border-radius: 18px;
    background: var(--wine);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition: 0.25s;
  }
  .mobile-menu.is-open {
    opacity: 1;
    transform: none;
    visibility: visible;
  }
  .mobile-menu nav {
    display: grid;
  }
  .mobile-menu nav a {
    padding: 14px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-menu__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }
  .quick-booking__panel {
    grid-template-columns: 1fr 1fr;
  }
  .quick-booking__intro {
    grid-column: 1 / -1;
  }
  .quick-field:nth-of-type(3) {
    border-right: 0;
  }
  .quick-booking__panel > .btn {
    grid-column: 1 / -1;
    width: calc(100% - 36px);
  }
  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }
  .trust-strip__grid > div:nth-child(2) {
    border-right: 0;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-layout,
  .process-layout,
  .app-layout,
  .drivers-layout,
  .contact-layout {
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
  .footer-contact {
    grid-column: 2 / 3;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }
  .header-actions .btn {
    display: none;
  }
  .hero,
  .hero-slider,
  .hero-slide,
  .hero-content {
    min-height: 720px;
  }
  .hero-content {
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1,
  .hero h2 {
    font-size: clamp(40px, 10vw, 58px);
  }
  .hero-slide__overlay,
  .hero-slide__overlay--second {
    background: linear-gradient(
      180deg,
      rgba(20, 4, 10, 0.38),
      rgba(29, 4, 13, 0.9) 58%,
      rgba(22, 3, 10, 0.98)
    );
  }
  .hero-slide__media {
    background-position: 58% center;
  }
  .hero-proof {
    width: 100%;
  }
  .hero-controls {
    bottom: 26px;
  }
  .split-layout,
  .process-layout,
  .app-layout,
  .drivers-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .image-frame,
  .image-frame img {
    min-height: 470px;
    height: 470px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process-image,
  .process-image img {
    min-height: 500px;
    height: 500px;
  }
  .process-content {
    padding-top: 8px;
  }
  .phone-showcase {
    min-height: 620px;
  }
  .phone-card {
    width: 70%;
  }
  .phone-mockup {
    transform: translateX(-40px);
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .download-card {
    display: block;
    padding: 42px;
  }
  .download-actions {
    justify-content: flex-start;
    margin-top: 28px;
  }
  .drivers-image {
    height: 540px;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .header-inner {
    min-height: 74px;
  }
  .brand {
    width: 92px;
    height: 52px;
  }
  .mobile-menu {
    top: 76px;
    left: 14px;
    right: 14px;
  }
  .mobile-menu__actions {
    grid-template-columns: 1fr;
  }
  .hero,
  .hero-slider,
  .hero-slide,
  .hero-content {
    min-height: 700px;
  }
  .hero-content {
    padding-top: 104px;
    padding-bottom: 120px;
  }
  .hero h1,
  .hero h2 {
    font-size: 40px;
    letter-spacing: -0.045em;
  }
  .hero-copy > p:not(.kicker) {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .hero-proof__item {
    padding: 12px 16px;
  }
  .hero-proof--compact {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .hero-controls {
    align-items: flex-end;
  }
  .hero-arrows span {
    display: none;
  }
  .quick-booking__panel {
    grid-template-columns: 1fr;
  }
  .quick-booking__intro,
  .quick-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .quick-booking__panel > .btn {
    grid-column: auto;
  }
  .trust-strip__grid {
    grid-template-columns: 1fr;
  }
  .trust-strip__grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .services-grid,
  .benefits-grid,
  .check-grid,
  .app-features,
  .driver-benefits {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 300px;
  }
  .content-block h2,
  .section-head h2,
  .process-content h2,
  .app-copy h2,
  .confidence-content h2,
  .drivers-copy h2,
  .contact-copy h2,
  .download-card h2 {
    font-size: 36px;
  }
  .image-frame,
  .image-frame img {
    min-height: 390px;
    height: 390px;
  }
  .process-image,
  .process-image img {
    min-height: 430px;
    height: 430px;
  }
  .steps-list article {
    grid-template-columns: 52px 1fr;
  }
  .phone-showcase {
    min-height: 580px;
  }
  .phone-card {
    right: -10px;
    width: 82%;
    height: 450px;
  }
  .phone-mockup {
    width: 278px;
    height: 560px;
    transform: translateX(-20px);
  }
  .phone-map {
    height: 175px;
  }
  .confidence-banner {
    min-height: 610px;
  }
  .mission-card {
    padding: 34px 28px;
    min-height: 350px;
  }
  .drivers-image {
    height: 430px;
  }
  .download-card {
    padding: 34px 24px;
  }
  .download-actions,
  .store-buttons {
    display: grid;
  }
  .store-button {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-contact {
    grid-column: auto;
  }
  .footer-bottom {
    padding: 22px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .modal__dialog {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   PREMIUM FULL-VIEWPORT HERO — 2026 REDESIGN
   Scoped to .hero--premium so all other sections stay intact.
   ========================================================= */
.site-header {
  background: linear-gradient(
    180deg,
    rgba(12, 4, 8, 0.62),
    rgba(12, 4, 8, 0.16)
  );
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.header-inner {
  width: min(1420px, calc(100% - 64px));
  min-height: clamp(76px, 9.2vh, 96px);
}
.brand {
  width: 138px;
  height: 82px;
  padding: 3px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.brand img {
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}
.desktop-nav {
  gap: clamp(24px, 2.6vw, 46px);
}
.desktop-nav a {
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.header-cta {
  min-height: 54px;
  padding: 0 27px;
  border-radius: 14px;
  font-size: 14px;
}
.header-cta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-header:not(.is-scrolled) .btn--primary.header-cta {
  color: #ffe6a8;
  border: 1px solid rgba(170, 38, 73, 0.86);
  background: linear-gradient(
    135deg,
    rgba(101, 5, 32, 0.96),
    rgba(126, 10, 43, 0.78)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 34px rgba(70, 0, 22, 0.3);
}
.site-header:not(.is-scrolled) .btn--outline.header-cta {
  color: var(--gold-2);
  border-color: rgba(219, 170, 72, 0.42);
  background: rgba(15, 10, 12, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero--premium,
.hero--premium .hero-slider,
.hero--premium .hero-slide,
.hero--premium .hero-stage {
  height: 100vh;
  height: 100svh;
  min-height: 690px;
}
.hero--premium {
  position: relative;
  overflow: hidden;
  background: #080608;
}
.hero--premium::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(4, 2, 4, 0.28));
}
.hero-shell {
  width: min(1420px, calc(100% - 64px));
  margin-inline: auto;
}
.hero--premium .hero-slide__media {
  background-size: cover;
  background-position: center 54%;
  filter: saturate(0.82) contrast(1.02) brightness(0.86);
  transform: scale(1.055);
}
.hero--premium .hero-slide.is-active .hero-slide__media {
  animation: premiumHeroZoom 8s ease-out forwards;
}
@keyframes premiumHeroZoom {
  from {
    transform: scale(1.065);
  }
  to {
    transform: scale(1);
  }
}
.hero--premium .hero-slide__overlay {
  background: radial-gradient(
      circle at 72% 40%,
      rgba(145, 76, 34, 0.16),
      transparent 38%
    ),
    linear-gradient(
      90deg,
      rgba(7, 5, 7, 0.98) 0%,
      rgba(18, 7, 12, 0.91) 28%,
      rgba(29, 10, 17, 0.62) 54%,
      rgba(13, 8, 10, 0.26) 76%,
      rgba(8, 6, 7, 0.42) 100%
    );
}
.hero--premium .hero-slide__overlay::after {
  background: linear-gradient(
      180deg,
      rgba(2, 2, 3, 0.28),
      transparent 28%,
      transparent 70%,
      rgba(4, 2, 4, 0.62)
    ),
    radial-gradient(
      circle at 30% 42%,
      transparent 0 34%,
      rgba(3, 2, 3, 0.12) 68%,
      rgba(3, 2, 3, 0.32) 100%
    );
}
.hero--premium .hero-slide__overlay--second {
  background: radial-gradient(
      circle at 75% 38%,
      rgba(154, 83, 30, 0.14),
      transparent 38%
    ),
    linear-gradient(
      90deg,
      rgba(7, 4, 7, 0.98) 0%,
      rgba(28, 7, 16, 0.9) 31%,
      rgba(39, 9, 21, 0.59) 57%,
      rgba(12, 7, 9, 0.24) 78%,
      rgba(7, 5, 6, 0.46) 100%
    );
}
.hero-stage {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  padding-top: clamp(96px, 12vh, 132px);
  padding-bottom: clamp(94px, 11vh, 122px);
}
.hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 314px;
  align-items: center;
  gap: clamp(50px, 7vw, 118px);
}
.hero--premium .hero-copy {
  width: 100%;
  max-width: 850px;
  color: #fff;
}
.hero--premium .kicker {
  margin-bottom: clamp(15px, 2.1vh, 25px);
  color: #f0c65c;
  font-size: clamp(10px, 0.78vw, 13px);
  letter-spacing: 0.23em;
}
.hero--premium .kicker span {
  width: 35px;
  background: linear-gradient(90deg, #f3cc6b, #c79331);
}
.hero--premium h1,
.hero--premium h2 {
  max-width: 850px;
  font-size: clamp(54px, 5.15vw, 48px);
  line-height: 0.99;
  letter-spacing: -0.058em;
  text-shadow: 0 7px 34px rgba(0, 0, 0, 0.28);
}
.hero-highlight {
  color: transparent;
  background: linear-gradient(110deg, #f9d97c 4%, #dcad49 50%, #a9772f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 6px 20px rgba(215, 164, 59, 0.13));
}
.hero-title-line {
  width: 210px;
  height: 1px;
  margin-top: clamp(15px, 2vh, 24px);
  background: linear-gradient(90deg, #dcae4b, rgba(220, 174, 75, 0));
}
.hero--premium .hero-copy > p:not(.kicker) {
  max-width: 610px;
  margin-top: clamp(17px, 2.2vh, 25px);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.76);
}
.hero--premium .hero-actions {
  margin-top: clamp(22px, 3vh, 34px);
  gap: 16px;
}
.hero--premium .btn--large {
  min-height: 60px;
  padding: 0 29px;
  border-radius: 15px;
}
.hero--premium .btn--gold {
  background: linear-gradient(135deg, #f7cf66, #d7a43b);
  box-shadow: 0 15px 38px rgba(216, 164, 58, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.hero--premium .btn--glass {
  border-color: rgba(224, 177, 73, 0.54);
  background: rgba(8, 7, 8, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.round-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 20, 7, 0.48);
  border-radius: 50%;
  font-size: 16px;
}
.hero-benefits {
  width: min(790px, 100%);
  margin-top: clamp(24px, 3.4vh, 40px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(238, 196, 102, 0.18);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    120deg,
    rgba(48, 21, 29, 0.72),
    rgba(14, 11, 13, 0.6)
  );
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}
.hero-benefit {
  min-height: 110px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  position: relative;
  text-align: center;
}
.hero-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24%;
  bottom: 24%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.hero-benefit__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #f0c456;
}
.hero-benefit__icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-benefit > span:last-child {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-benefit strong,
.hero-benefit small {
  display: block;
}
.hero-benefit strong {
  max-width: 145px;
  font-size: 12px;
  color: #fff;
  line-height: 1.32;
  font-weight: 650;
}
.hero-benefit small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.45;
}

.hero-service-card {
  width: 314px;
  padding: 26px 20px 19px;
  color: #fff;
  border: 1px solid rgba(239, 198, 103, 0.22);
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(71, 25, 37, 0.8),
    rgba(13, 10, 12, 0.77)
  );
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transform: translateY(8px);
}
.hero-service-card__badge {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f1c65a;
  background: rgba(100, 0, 29, 0.76);
  box-shadow: 0 10px 26px rgba(95, 0, 30, 0.26);
}
.hero-service-card__badge svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-service-card h3 {
  margin: 20px 0 12px;
  font: 600 20px/1.35 "Inter", sans-serif;
  letter-spacing: -0.025em;
}
.mini-gold-line {
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #e6b84f, rgba(230, 184, 79, 0));
}
.hero-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}
.hero-service-card li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
}
.hero-service-card li svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #fff;
  flex: 0 0 auto;
}
.hero-rating {
  margin-top: 22px;
  min-height: 65px;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 12, 13, 0.34);
}
.rating-avatars {
  display: flex;
  padding-left: 5px;
}
.rating-avatars span {
  width: 30px;
  height: 30px;
  margin-left: -7px;
  border: 2px solid #9d752f;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.hero-rating p {
  margin: 0;
  flex: 1;
  line-height: 1.25;
}
.hero-rating strong,
.hero-rating small {
  display: block;
  white-space: nowrap;
}
.hero-rating strong {
  font-size: 11px;
  color: #fff;
}
.hero-rating small {
  margin-top: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.54);
}
.hero-rating b {
  color: #f4ca62;
  font-size: 11px;
  white-space: nowrap;
}

.hero--premium .hero-controls {
  z-index: 12;
  bottom: clamp(20px, 3.2vh, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.hero-pagination,
.hero--premium .hero-arrows {
  pointer-events: auto;
}
.hero-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
}
.hero-pagination > strong {
  color: #e8b949;
  font-size: 20px;
}
.hero-pagination > span {
  font-size: 14px;
}
.hero--premium .hero-dots {
  margin-left: 24px;
  gap: 8px;
}
.hero--premium .hero-dots button {
  width: 58px;
  height: 4px;
  background: rgba(255, 255, 255, 0.24);
}
.hero--premium .hero-arrows {
  gap: 16px;
}
.hero--premium .hero-arrows button {
  width: 56px;
  height: 56px;
  font-size: 21px;
  background: rgba(14, 13, 14, 0.52);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.hero--premium .hero-arrows .hero-arrow--next {
  color: #fff;
  border-color: rgba(157, 20, 58, 0.95);
  background: linear-gradient(145deg, #76102e, #4f071e);
}

/* Height-aware desktop adjustments prevent overlap on short laptop viewports. */
@media (min-width: 1101px) and (max-height: 780px) {
  .hero--premium,
  .hero--premium .hero-slider,
  .hero--premium .hero-slide,
  .hero--premium .hero-stage {
    min-height: 600px;
  }
  .header-inner {
    min-height: 74px;
  }
  .brand {
    width: 112px;
    height: 66px;
  }
  .header-cta {
    min-height: 44px;
    padding-inline: 20px;
  }
  .hero-stage {
    padding-top: 86px;
    padding-bottom: 72px;
  }
  .hero--premium h1,
  .hero--premium h2 {
    font-size: clamp(46px, 4.8vw, 46px);
  }
  .hero--premium .hero-copy > p:not(.kicker) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
  }
  .hero--premium .hero-actions {
    margin-top: 18px;
  }
  .hero--premium .btn--large {
    min-height: 50px;
  }
  .hero-benefits {
    margin-top: 20px;
  }
  .hero-benefit {
    min-height: 86px;
    padding: 12px 9px;
    gap: 6px;
  }
  .hero-benefit__icon,
  .hero-benefit__icon svg {
    width: 29px;
    height: 29px;
  }
  .hero-benefit strong {
    font-size: 11px;
  }
  .hero-benefit small {
    margin-top: 4px;
    font-size: 9px;
  }
  .hero-service-card {
    width: 285px;
    padding: 21px 17px 15px;
  }
  .hero-service-card h3 {
    margin: 14px 0 9px;
    font-size: 17px;
  }
  .hero-service-card ul {
    gap: 9px;
  }
  .hero-rating {
    margin-top: 14px;
    min-height: 55px;
  }
  .hero--premium .hero-arrows button {
    width: 46px;
    height: 46px;
  }
}
@media (min-width: 1101px) and (max-height: 620px) {
  .hero--premium,
  .hero--premium .hero-slider,
  .hero--premium .hero-slide,
  .hero--premium .hero-stage {
    min-height: 520px;
  }
  .hero-benefits {
    display: none;
  }
  .hero-service-card {
    transform: scale(0.88);
    transform-origin: right center;
  }
  .hero--premium h1,
  .hero--premium h2 {
    font-size: clamp(40px, 4.3vw, 48px);
  }
  .hero-title-line {
    margin-top: 12px;
  }
  .hero--premium .hero-copy > p:not(.kicker) {
    max-width: 560px;
  }
}

@media (max-width: 1100px) {
  .header-inner,
  .hero-shell {
    width: min(100% - 40px, 940px);
  }
  .brand {
    width: 112px;
    height: 68px;
  }
  .hero-layout {
    grid-template-columns: 1fr 270px;
    gap: 34px;
  }
  .hero--premium h1,
  .hero--premium h2 {
    font-size: clamp(48px, 6.6vw, 48px);
  }
  .hero-service-card {
    width: 270px;
  }
  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
  }
  .hero-benefit:nth-child(2)::after {
    display: none;
  }
  .hero-benefit:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 820px) {
  .header-inner,
  .hero-shell {
    width: min(100% - 32px, 760px);
  }
  .hero--premium,
  .hero--premium .hero-slider,
  .hero--premium .hero-slide,
  .hero--premium .hero-stage {
    min-height: 760px;
    height: 100svh;
  }
  .hero-stage {
    align-items: flex-end;
    padding-top: 104px;
    padding-bottom: 112px;
  }
  .hero-layout {
    display: block;
  }
  .hero-service-card {
    display: none;
  }
  .hero--premium .hero-copy {
    max-width: 680px;
  }
  .hero--premium h1,
  .hero--premium h2 {
    font-size: clamp(46px, 9.2vw, 66px);
  }
  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .hero--premium .hero-slide__media {
    background-position: 62% center;
  }
  .hero--premium .hero-slide__overlay,
  .hero--premium .hero-slide__overlay--second {
    background: linear-gradient(
      180deg,
      rgba(8, 5, 7, 0.3),
      rgba(18, 6, 12, 0.7) 46%,
      rgba(6, 4, 6, 0.97) 88%
    );
  }
  .hero--premium .hero-controls {
    bottom: 22px;
  }
}

@media (max-width: 580px) {
  .header-inner,
  .hero-shell {
    width: min(100% - 28px, 540px);
  }
  .brand {
    width: 94px;
    height: 58px;
  }
  .hero--premium,
  .hero--premium .hero-slider,
  .hero--premium .hero-slide,
  .hero--premium .hero-stage {
    min-height: 720px;
  }
  .hero-stage {
    padding-top: 92px;
    padding-bottom: 100px;
  }
  .hero--premium .kicker {
    letter-spacing: 0.15em;
  }
  .hero--premium h1,
  .hero--premium h2 {
    font-size: clamp(40px, 12vw, 44px);
    line-height: 1.02;
  }
  .hero-title-line {
    width: 150px;
  }
  .hero--premium .hero-copy > p:not(.kicker) {
    font-size: 14px;
    line-height: 1.55;
  }
  .hero--premium .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero--premium .hero-actions .btn {
    width: 100%;
    min-height: 52px;
  }
  .hero-benefits {
    margin-top: 17px;
    grid-template-columns: 1fr 1fr;
    border-radius: 15px;
  }
  .hero-benefit {
    min-height: 82px;
    padding: 11px 8px;
    gap: 6px;
  }
  .hero-benefit__icon,
  .hero-benefit__icon svg {
    width: 27px;
    height: 27px;
  }
  .hero-benefit strong {
    max-width: 130px;
    font-size: 10px;
    line-height: 1.28;
  }
  .hero-benefit small {
    display: none;
  }
  .hero--premium .hero-dots {
    margin-left: 10px;
  }
  .hero--premium .hero-dots button {
    width: 36px;
  }
  .hero--premium .hero-arrows button {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 420px), (max-height: 690px) and (max-width: 820px) {
  .hero-benefits {
    display: none;
  }
  .hero--premium,
  .hero--premium .hero-slider,
  .hero--premium .hero-slide,
  .hero--premium .hero-stage {
    min-height: 620px;
  }
  .hero--premium h1,
  .hero--premium h2 {
    font-size: clamp(37px, 11vw, 48px);
  }
}

/* Extra protection for very short desktop viewport heights. */
@media (min-width: 1101px) and (max-height: 620px) {
  .hero--premium,
  .hero--premium .hero-slider,
  .hero--premium .hero-slide,
  .hero--premium .hero-stage {
    height: 100vh;
    height: 100svh;
    min-height: 0;
  }
  .hero-stage {
    padding-top: 72px;
    padding-bottom: 50px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-service-card {
    display: none;
  }
  .hero--premium .kicker {
    margin-bottom: 10px;
  }
  .hero--premium h1,
  .hero--premium h2 {
    font-size: clamp(38px, 4.1vw, 54px);
    line-height: 0.96;
  }
  .hero-title-line {
    margin-top: 9px;
  }
  .hero--premium .hero-copy > p:not(.kicker) {
    margin-top: 10px;
    max-width: 650px;
    font-size: 13px;
    line-height: 1.42;
  }
  .hero--premium .hero-actions {
    margin-top: 13px;
  }
  .hero--premium .btn--large {
    min-height: 44px;
    padding-inline: 22px;
  }
  .hero--premium .hero-controls {
    bottom: 10px;
  }
  .hero--premium .hero-arrows button {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   DRIVWHERE PRE-LAUNCH AWARENESS UPDATE
   Keeps the approved premium visual theme while removing all
   live booking, enquiry, registration, and contact actions.
   ========================================================= */
.launch-pill {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f4cf74;
  border: 1px solid rgba(230, 184, 79, 0.34);
  border-radius: 999px;
  background: rgba(18, 11, 14, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.launch-pill i,
.launch-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #efbd4d;
  box-shadow: 0 0 0 5px rgba(239, 189, 77, 0.11),
    0 0 16px rgba(239, 189, 77, 0.72);
  animation: launchPulse 1.8s ease-in-out infinite;
}
@keyframes launchPulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}
.site-header.is-scrolled .launch-pill {
  color: var(--wine);
  border-color: rgba(75, 7, 27, 0.18);
  background: rgba(247, 243, 244, 0.92);
}
.site-header.is-scrolled .launch-pill i {
  background: var(--wine-3);
  box-shadow: 0 0 0 5px rgba(140, 28, 57, 0.08);
}

.hero-launch-card {
  gap: 13px;
}
.hero-launch-card .launch-dot {
  margin-left: 3px;
}
.hero-launch-card p strong {
  white-space: normal;
}
.hero-launch-card b {
  max-width: 76px;
  overflow-wrap: anywhere;
  text-align: right;
  line-height: 1.2;
}

.awareness-intro {
  position: relative;
  z-index: 20;
  padding: 34px 0 42px;
  background: #fff;
}
.awareness-intro__panel {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(150px, 0.72fr)) auto;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(43, 10, 22, 0.1);
}
.awareness-intro__lead,
.awareness-point {
  min-height: 104px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}
.awareness-intro__lead {
  display: flex;
  align-items: center;
  gap: 15px;
}
.awareness-intro__icon {
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--gold-2);
  background: linear-gradient(145deg, var(--wine), var(--wine-2));
  font: 700 13px "Inter", sans-serif;
  box-shadow: 0 12px 28px rgba(75, 7, 27, 0.19);
}
.awareness-intro small,
.awareness-point small {
  display: block;
  color: var(--wine-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.awareness-intro strong,
.awareness-point strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}
.awareness-intro__lead strong {
  font-size: 16px;
}
.awareness-point {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.awareness-intro__panel > .btn {
  margin: 21px 18px;
  align-self: center;
}

.service-card .service-status {
  position: absolute;
  left: 26px;
  right: auto;
  top: auto;
  bottom: 23px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
}
.service-card .service-status b {
  margin-left: 6px;
  color: var(--gold);
}

.store-button[disabled],
.phone-screen button[disabled] {
  cursor: default;
  opacity: 0.84;
  pointer-events: none;
}
.store-button {
  position: relative;
}
.store-button em {
  position: absolute;
  top: -9px;
  right: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #2e1b09;
  background: var(--gold-2);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.13);
}

.launch-vision {
  background: linear-gradient(180deg, #fff, #faf6f7);
}
.launch-vision__layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 74px;
}
.launch-vision__copy h2 {
  margin: 0;
  font: 700 clamp(38px, 4.6vw, 62px) / 1.08 "Inter", sans-serif;
  letter-spacing: -0.05em;
}
.launch-vision__copy > p:not(.section-label) {
  color: var(--muted);
}
.launch-vision__copy .lead {
  margin-top: 24px;
}
.launch-vision__copy .btn {
  margin-top: 24px;
}
.launch-vision__cards {
  display: grid;
  gap: 14px;
}
.launch-vision__cards article {
  position: relative;
  min-height: 164px;
  padding: 28px 30px 28px 108px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(43, 10, 22, 0.07);
}
.launch-vision__cards article::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(216, 163, 61, 0.17),
    transparent 68%
  );
}
.launch-vision__cards article > span {
  position: absolute;
  left: 28px;
  top: 31px;
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--gold-2);
  background: var(--wine);
  font: 700 10px "Inter", sans-serif;
  letter-spacing: 0.08em;
}
.launch-vision__cards h3 {
  margin: 0 0 8px;
  font: 700 20px/1.25 "Inter", sans-serif;
}
.launch-vision__cards p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-top--prelaunch {
  grid-template-columns: 1.55fr 0.75fr 0.75fr 1fr;
}
.launch-pill--footer {
  margin-top: 18px;
  width: fit-content;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1320px) and (min-width: 1101px) {
  .header-inner,
  .hero-shell {
    width: min(100% - 40px, 1240px);
  }
  .desktop-nav {
    gap: 20px;
  }
  .desktop-nav a {
    font-size: 13px;
  }
  .launch-pill {
    display: none;
  }
}

@media (max-width: 1100px) {
  .header-actions > .launch-pill {
    display: none;
  }
  .launch-pill--mobile {
    display: inline-flex;
    justify-content: center;
    min-height: 50px;
  }
  .awareness-intro__panel {
    grid-template-columns: 1fr 1fr;
  }
  .awareness-intro__lead {
    grid-column: 1 / -1;
  }
  .awareness-intro__lead,
  .awareness-point {
    border-bottom: 1px solid var(--line);
  }
  .awareness-point:nth-of-type(2) {
    border-right: 0;
  }
  .awareness-intro__panel > .btn {
    grid-column: 1 / -1;
    width: calc(100% - 36px);
  }
  .launch-vision__layout {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .awareness-intro {
    padding-top: 24px;
  }
  .launch-vision__layout {
    grid-template-columns: 1fr;
  }
  .footer-top--prelaunch {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top--prelaunch .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .awareness-intro__panel {
    grid-template-columns: 1fr;
  }
  .awareness-intro__lead,
  .awareness-point {
    min-height: auto;
    padding: 18px;
    border-right: 0;
  }
  .awareness-intro__lead {
    grid-column: auto;
  }
  .awareness-intro__panel > .btn {
    grid-column: auto;
  }
  .launch-vision__copy h2 {
    font-size: 36px;
  }
  .launch-vision__cards article {
    padding: 92px 24px 25px;
  }
  .launch-vision__cards article > span {
    left: 24px;
    top: 22px;
  }
  .footer-top--prelaunch {
    grid-template-columns: 1fr;
  }
  .footer-top--prelaunch .footer-brand {
    grid-column: auto;
  }
  .hero-launch-card b {
    font-size: 9px;
  }
}

/* Client-content-only layout refinements */
@media (min-width: 1101px) {
  .desktop-nav {
    gap: clamp(18px, 1.6vw, 30px);
  }
  .desktop-nav a {
    font-size: 14px;
  }
  .header-cta {
    padding-inline: 20px;
  }
}

.benefit-card {
  min-height: 210px;
}
.benefit-card h3 {
  margin: 34px 0 0;
}
.service-card {
  min-height: 220px;
}
.service-card h3 {
  margin-bottom: 0;
}
.drivers-copy h3 {
  margin: 28px 0 0;
  font: 700 22px/1.3 "Inter", sans-serif;
}
.hero-launch-card {
  justify-content: flex-start;
}
.hero-launch-card p {
  flex: 0 1 auto;
}
.phone-top {
  justify-content: flex-start;
}

@media (max-width: 580px) {
  .benefit-card,
  .service-card {
    min-height: 190px;
  }
}

/* =========================================================
   DRIVWHERE SECTION REFINEMENTS - WHY CHOOSE / SERVICES / HOW IT WORKS
   ========================================================= */
.why-choose-enhanced {
  position: relative;
  overflow: hidden;
}
.why-choose-enhanced::before,
.why-choose-enhanced::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}
.why-choose-enhanced::before {
  width: 280px;
  height: 280px;
  left: -100px;
  top: 90px;
  background: radial-gradient(
    circle,
    rgba(75, 7, 27, 0.1),
    rgba(75, 7, 27, 0) 68%
  );
}
.why-choose-enhanced::after {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 40px;
  background: radial-gradient(
    circle,
    rgba(216, 164, 58, 0.16),
    rgba(216, 164, 58, 0) 66%
  );
}
.benefits-grid--enhanced {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.benefit-card {
  position: relative;
  overflow: hidden;
}
.benefits-grid--enhanced .benefit-card {
  min-height: 250px;
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 255, 255, 0.94)
    ),
    linear-gradient(135deg, rgba(75, 7, 27, 0.04), rgba(216, 164, 58, 0.05));
  box-shadow: 0 16px 44px rgba(24, 11, 16, 0.06);
  isolation: isolate;
}
.benefits-grid--enhanced .benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(214, 167, 71, 0.2),
    transparent 34%
  );
  opacity: 0.95;
  z-index: -1;
}
.benefits-grid--enhanced .benefit-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(75, 7, 27, 0.95),
    rgba(216, 164, 58, 0.85)
  );
  transform: scaleX(0.18);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.benefits-grid--enhanced .benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 54px rgba(39, 13, 22, 0.12);
}
.benefits-grid--enhanced .benefit-card:hover::after {
  transform: scaleX(1);
}
.benefit-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.benefit-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #f4c860;
  background: linear-gradient(135deg, #62112a, #22050e);
  box-shadow: 0 16px 34px rgba(75, 7, 27, 0.18);
  font-size: 22px;
}
.benefit-card__number {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--wine);
  border: 1px solid rgba(75, 7, 27, 0.12);
  background: rgba(75, 7, 27, 0.04);
  font: 700 12px "Inter", sans-serif;
  letter-spacing: 0.12em;
}
.benefits-grid--enhanced .benefit-card > span {
  display: none;
}
.benefits-grid--enhanced .benefit-card h3 {
  margin: 20px 0 12px;
  font: 700 20px/1.28 "Inter", sans-serif;
  letter-spacing: -0.03em;
}
.benefits-grid--enhanced .benefit-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.68;
  color: #6b6267;
}

.services--enhanced {
  position: relative;
}
.services-grid--enhanced {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.services-grid--enhanced .service-card {
  min-height: 310px;
  padding: 24px 24px 58px;
  border-radius: 24px;
  border: 1px solid rgba(75, 7, 27, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(252, 248, 249, 0.96)
  );
  box-shadow: 0 16px 42px rgba(22, 8, 13, 0.06);
}
.services-grid--enhanced .service-card::before {
  content: "";
  position: absolute;
  top: -34px;
  right: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(216, 164, 58, 0.16),
    rgba(216, 164, 58, 0) 68%
  );
}
.services-grid--enhanced .service-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 14px 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(75, 7, 27, 0.1),
    rgba(75, 7, 27, 0.02)
  );
}
.services-grid--enhanced .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 54px rgba(39, 13, 22, 0.12);
}
.services-grid--enhanced .service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #65122b, #2a0912);
  box-shadow: 0 16px 34px rgba(75, 7, 27, 0.18);
  font-size: 23px;
}
.services-grid--enhanced .service-card > span {
  right: 22px;
  top: 22px;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(75, 7, 27, 0.04);
  color: var(--wine);
  border: 1px solid rgba(75, 7, 27, 0.1);
  font: 700 12px "Inter", sans-serif;
  letter-spacing: 0.12em;
}
.services-grid--enhanced .service-card h3 {
  margin: 22px 0 10px;
  font: 700 20px/1.26 "Inter", sans-serif;
  letter-spacing: -0.03em;
}
.services-grid--enhanced .service-card p {
  margin: 0;
  color: #6b6267;
  font-size: 14px;
  line-height: 1.68;
  max-width: 95%;
}
.services-grid--enhanced .service-card .service-status {
  left: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--wine);
  background: rgba(75, 7, 27, 0.05);
  border: 1px solid rgba(75, 7, 27, 0.1);
  font-size: 12px;
  font-weight: 700;
}
.services-grid--enhanced .service-card .service-status b {
  margin-left: 0;
  color: var(--gold);
}

.process--timeline {
  background: radial-gradient(
      circle at top left,
      rgba(216, 164, 58, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #4b071b 0%, #23040e 100%);
  overflow: hidden;
}
.process--timeline .section-head {
  margin-bottom: 20px;
}
.process--timeline .section-head > p {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
}
.timeline-journey {
  position: relative;
  padding: 24px 0 8px;
}
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  padding-top: 98px;
}
.timeline-track::before,
.timeline-track::after {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
}
.timeline-track::before {
  top: 31px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2),
    rgba(241, 198, 90, 0.56),
    rgba(255, 255, 255, 0.2)
  );
}
.timeline-track::after {
  top: 26px;
  height: 12px;
  background-image: radial-gradient(
    circle,
    rgba(244, 201, 96, 0.5) 1.2px,
    transparent 1.6px
  );
  background-size: 22px 12px;
  background-repeat: repeat-x;
  opacity: 0.85;
}
.timeline-car {
  position: absolute;
  top: 0;
  left: calc(12.5% - 26px);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #f4c860;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(241, 198, 90, 0.22);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 24px;
  z-index: 2;
  animation: driveAcross 10s linear infinite;
}
.timeline-step {
  position: relative;
  padding-top: 0;
}
.timeline-dot {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3cb66, #cf9827);
  color: #3b0614;
  box-shadow: 0 16px 32px rgba(241, 198, 90, 0.25),
    0 0 0 10px rgba(255, 255, 255, 0.04);
  font: 700 15px "Inter", sans-serif;
  letter-spacing: 0.08em;
  z-index: 2;
}
.timeline-card {
  /* min-height: 205px; */
  padding: 26px 22px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.timeline-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 198, 90, 0.28);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05)
  );
}
.timeline-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font: 700 22px/1.22 "Inter", sans-serif;
  letter-spacing: -0.03em;
}
.timeline-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.72;
}

@keyframes driveAcross {
  0% {
    left: calc(12.5% - 28px);
  }
  100% {
    left: calc(87.5% - 28px);
  }
}

@media (max-width: 1100px) {
  .benefits-grid--enhanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-grid--enhanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 72px;
    padding-top: 76px;
  }
  .timeline-track::before,
  .timeline-track::after,
  .timeline-car {
    display: none;
  }
  .timeline-step {
    padding-top: 0;
  }
  .timeline-dot {
    top: -30px;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 760px) {
  .benefits-grid--enhanced,
  .services-grid--enhanced,
  .timeline-track {
    grid-template-columns: 1fr;
  }
  .benefits-grid--enhanced .benefit-card,
  .services-grid--enhanced .service-card,
  .timeline-card {
    min-height: auto;
  }
  .timeline-track {
    row-gap: 54px;
    padding-top: 44px;
  }
  .timeline-step {
    padding-top: 0;
  }
  .timeline-dot {
    top: -22px;
    width: 56px;
    height: 56px;
    font-size: 13px;
  }
  .timeline-card {
    padding: 48px 18px 20px;
    text-align: left;
  }
  .timeline-card h3 {
    font-size: 20px;
  }
}


/* =========================================================
   FINAL TYPOGRAPHY, WHY-CHOOSE ALIGNMENT & COMING-SOON CTA
   ========================================================= */
body,
button,
input,
select,
textarea {
  font-family: "Inter", sans-serif;
}

/* Keep the hero composition unchanged; make all regular section H2s balanced. */
main > section:not(.hero) h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

/* Centered editorial heading layout for Why Choose DrivWhere. */
.why-choose-enhanced .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(920px, calc(100% - 40px));
  margin-inline: auto;
  text-align: center;
}
.why-choose-enhanced .section-head > div {
  width: 100%;
}
.why-choose-enhanced .section-head .section-label {
  margin-bottom: 14px;
}
.why-choose-enhanced .section-head h2 {
  margin-inline: auto;
}
.why-choose-enhanced .section-head > p {
  max-width: 860px;
  /* margin: 22px auto 0; */
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
  text-align: center;
}

/* Download CTAs swap their label to Coming Soon on hover/focus. */
.coming-soon-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.coming-soon-btn .btn-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: opacity .25s ease, transform .3s ease;
}
.coming-soon-btn .btn-state b {
  font-size: 14px;
  font-weight: 700;
}
.coming-soon-btn .btn-state--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(105%);
}
.coming-soon-btn:hover .btn-state--default,
.coming-soon-btn:focus-visible .btn-state--default {
  opacity: 0;
  transform: translateY(-105%);
}
.coming-soon-btn:hover .btn-state--hover,
.coming-soon-btn:focus-visible .btn-state--hover {
  opacity: 1;
  transform: translateY(0);
}
.header-cta.coming-soon-btn {
  min-width: 148px;
}
.download-actions .coming-soon-btn {
  min-width: 184px;
  cursor: default;
}

@media (max-width: 760px) {
  main > section:not(.hero) h2 {
    font-size: clamp(29px, 8vw, 36px);
    line-height: 1.18;
  }
  .why-choose-enhanced .section-head {
    width: min(100% - 30px, 680px);
  }
  .why-choose-enhanced .section-head > p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.72;
  }
}


/* =========================================================
   REFINED WEBSITE TYPOGRAPHY — INTER
   Clean, neutral modern sans-serif with restrained weights.
   ========================================================= */
html,
body,
button,
input,
select,
textarea {
  font-family: "Inter", sans-serif;
}

body {
  font-weight: 400;
  letter-spacing: 0;
}

p,
li,
input,
select,
textarea {
  font-weight: 400;
}

.desktop-nav a,
.mobile-menu a {
  font-weight: 500;
  letter-spacing: -0.01em;
}

.btn,
button {
  font-weight: 600;
}

.hero--premium h1,
.hero--premium h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.038em;
}

main > section:not(.hero) h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.026em;
}

h3,
.benefit-card h3,
.service-card h3,
.timeline-card h3,
.hero-service-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.018em;
}

.section-label,
.kicker {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.benefit-card__number,
.services-grid--enhanced .service-card > span,
.timeline-dot,
.hero-benefit strong {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.coming-soon-btn .btn-state b {
  font-weight: 600;
}

/* =========================================================
   MOBILE HEADER UPDATE
   Replace the hamburger icon with the existing Download App CTA.
   ========================================================= */
@media (max-width: 1100px) {
  .menu-toggle {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }

  .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .header-cta {
    display: inline-flex !important;
    min-width: 148px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 13px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .header-inner {
    gap: 12px;
  }

  .header-cta {
    min-width: 132px;
    min-height: 44px;
    padding-inline: 15px;
    font-size: 12px;
  }

  .header-cta.coming-soon-btn {
    min-width: 132px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .coming-soon-btn:active .btn-state--default,
  .coming-soon-btn.is-coming-soon .btn-state--default {
    opacity: 0;
    transform: translateY(-105%);
  }

  .coming-soon-btn:active .btn-state--hover,
  .coming-soon-btn.is-coming-soon .btn-state--hover {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   HERO IMAGE VISIBILITY + FLOATING CONTACT ACTIONS
   ========================================================= */

/* Keep the darker treatment only behind the left-side copy,
   then fade smoothly into the original banner image on the right. */
.hero--premium .hero-slide__overlay,
.hero--premium .hero-slide__overlay--second {
  background:
    linear-gradient(90deg,
      rgba(12, 3, 7, .96) 0%,
      rgba(22, 5, 12, .88) 28%,
      rgba(27, 7, 14, .64) 47%,
      rgba(18, 5, 10, .25) 66%,
      rgba(8, 4, 6, .04) 82%,
      rgba(0, 0, 0, 0) 100%) !important;
}

/* Remove the previous full-width overlay effects so the right side
   remains clear and the original hero photograph stays visible. */
.hero--premium .hero-slide__overlay::after,
.hero--premium .hero-slide__overlay--second::after {
  opacity: 0 !important;
  background: none !important;
}

.floating-contact-actions {
  position: fixed;
  right: 22px;
  bottom: 108px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-contact {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 14px 34px rgba(20, 5, 10, .25);
  transition: transform .25s ease, box-shadow .25s ease;
  isolation: isolate;
}

.floating-contact::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: inherit;
  opacity: .20;
  animation: floatingContactPulse 2.2s ease-out infinite;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(20, 5, 10, .34);
}

.floating-contact svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.floating-contact--whatsapp {
  background: linear-gradient(145deg, #2ed76f, #139847);
}

.floating-contact--whatsapp::before {
  background: #25d366;
}

.floating-contact--call {
  background: linear-gradient(145deg, #741430, #420817);
}

.floating-contact--call::before {
  background: #7a1532;
  animation-delay: .55s;
}

.floating-contact__label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translate(8px, -50%);
  padding: 8px 11px;
  border-radius: 9px;
  color: #fff;
  background: rgba(23, 8, 13, .92);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.floating-contact:hover .floating-contact__label,
.floating-contact:focus-visible .floating-contact__label {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

@keyframes floatingContactPulse {
  0% { transform: scale(.86); opacity: .34; }
  70%, 100% { transform: scale(1.28); opacity: 0; }
}

@media (max-width: 820px) {
  .hero--premium .hero-slide__overlay,
  .hero--premium .hero-slide__overlay--second {
    background:
      linear-gradient(90deg,
        rgba(10, 3, 6, .94) 0%,
        rgba(18, 5, 10, .84) 42%,
        rgba(15, 5, 9, .48) 70%,
        rgba(0, 0, 0, .06) 100%) !important;
  }

  .floating-contact-actions {
    right: 14px;
    bottom: 88px;
    gap: 10px;
  }

  .floating-contact {
    width: 50px;
    height: 50px;
  }

  .floating-contact svg {
    width: 22px;
    height: 22px;
  }

  .floating-contact__label {
    display: none;
  }
}

@media (max-width: 480px) {
  .floating-contact-actions {
    right: 12px;
    bottom: 78px;
  }

  .floating-contact {
    width: 47px;
    height: 47px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact::before {
    animation: none;
  }
}


/* Footer contact column */
.footer-top--prelaunch .footer-contact {
  min-width: 0;
}
.footer-top--prelaunch .footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.footer-top--prelaunch .footer-contact a i {
  width: 16px;
  flex: 0 0 16px;
  color: var(--gold-2);
  text-align: center;
  font-size: 13px;
}
.footer-top--prelaunch .footer-contact a span {
  min-width: 0;
}
@media (max-width: 820px) {
  .footer-top--prelaunch .footer-contact {
    grid-column: auto;
  }
}
@media (max-width: 580px) {
  .footer-top--prelaunch .footer-contact a {
    width: 100%;
  }
}

/* =========================================================
   FINAL MOBILE RESPONSIVE & HORIZONTAL OVERFLOW FIX
   Keeps the existing design while preventing side scrolling.
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  position: relative;
}

main,
.site-header,
.site-footer,
.hero,
.section,
.confidence-banner {
  max-width: 100%;
}

/* Grid and flex children must be allowed to shrink inside the viewport. */
.header-inner > *,
.hero-layout > *,
.split-layout > *,
.section-head > *,
.benefits-grid > *,
.services-grid > *,
.timeline-track > *,
.app-layout > *,
.mission-grid > *,
.drivers-layout > *,
.footer-top > * {
  min-width: 0;
}

@media (max-width: 820px) {
  html,
  body {
    overflow-x: clip !important;
    overscroll-behavior-x: none;
  }

  main,
  .site-header,
  .site-footer,
  .hero,
  .hero-slider,
  .hero-slide,
  .section,
  .confidence-banner,
  .app-section,
  .why-choose-enhanced {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .container,
  .header-inner,
  .hero-shell {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    margin-inline: auto;
  }

  /* Horizontal reveal motion can temporarily enlarge the page on mobile. */
  .reveal-left,
  .reveal-right {
    transform: translateY(28px);
  }

  .reveal-left.is-visible,
  .reveal-right.is-visible {
    transform: none;
  }

  /* Keep the app mockup composition fully inside its column. */
  .app-layout,
  .phone-showcase {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: clip;
  }

  .phone-card {
    right: 0;
    max-width: calc(100% - 8px);
    transform-origin: center center;
  }

  .phone-mockup {
    max-width: calc(100% - 28px);
  }

  .floating-contact-actions {
    max-width: calc(100vw - 24px);
  }

  .download-card,
  .contact-form,
  .mission-card,
  .benefit-card,
  .service-card,
  .timeline-card {
    max-width: 100%;
  }

  .footer-contact a,
  .footer-bottom,
  .contact-details a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 580px) {
  .container,
  .header-inner,
  .hero-shell {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
  }

  .section {
    padding-block: 68px;
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .header-actions {
    min-width: 0;
  }

  .header-cta,
  .header-cta.coming-soon-btn {
    max-width: 142px;
  }

  .hero--premium .hero-copy,
  .hero--premium h1,
  .hero--premium h2,
  .hero--premium .hero-copy > p:not(.kicker) {
    max-width: 100%;
  }

  .hero--premium .kicker {
    line-height: 1.45;
  }

  .hero--premium .hero-controls {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    gap: 12px;
  }

  .hero-pagination {
    min-width: 0;
  }

  .hero--premium .hero-arrows {
    flex: 0 0 auto;
  }

  .phone-showcase {
    min-height: 560px;
  }

  .phone-card {
    width: 78%;
    right: 0;
    top: 42px;
    height: 430px;
    transform: none;
  }

  .phone-mockup {
    width: min(278px, calc(100% - 24px));
    height: 560px;
    transform: translateX(-10px);
  }

  .phone-screen {
    padding-inline: 15px;
  }

  .download-actions,
  .download-actions .btn,
  .store-buttons,
  .store-button {
    width: 100%;
  }

  .floating-contact-actions {
    right: 12px;
  }
}

@media (max-width: 360px) {
  .brand {
    width: 84px;
    height: 52px;
  }

  .header-cta,
  .header-cta.coming-soon-btn {
    min-width: 120px;
    max-width: 126px;
    min-height: 42px;
    padding-inline: 11px;
    font-size: 11px;
  }

  .hero--premium h1,
  .hero--premium h2 {
    font-size: clamp(34px, 10.8vw, 39px);
  }

  .hero--premium .hero-arrows {
    gap: 8px;
  }

  .hero--premium .hero-arrows button {
    width: 40px;
    height: 40px;
  }

  .hero--premium .hero-dots button {
    width: 30px;
  }

  .hero--premium .hero-dots {
    margin-left: 7px;
    gap: 6px;
  }

  .hero-pagination > strong {
    font-size: 17px;
  }

  .phone-mockup {
    transform: none;
  }

  .content-block h2,
  .section-head h2,
  .app-copy h2,
  .confidence-content h2,
  .drivers-copy h2,
  .download-card h2 {
    overflow-wrap: anywhere;
  }
}

/* Fallback plus tablet containment for browsers without overflow: clip. */
html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

@media (max-width: 1100px) {
  .app-section,
  .app-layout,
  .phone-showcase {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }
}

/* =========================================================
   CLIENT REQUESTED REFINEMENTS — HERO COPY + MOBILE SPACING
   ========================================================= */

/* Make both hero descriptions cleaner, brighter and more prominent. */
.hero--premium .hero-copy > p:not(.kicker) {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

/* Reduce excessive vertical whitespace only on tablet/mobile views. */
@media (max-width: 820px) {
  .section {
    padding-block: 62px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .split-layout,
  .app-layout,
  .drivers-layout {
    gap: 38px;
  }

  .confidence-content {
    padding-block: 72px;
  }

  .download-cta {
    padding-block: 62px;
  }
}

@media (max-width: 580px) {
  .section {
    padding-block: 48px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .split-layout,
  .app-layout,
  .drivers-layout {
    gap: 30px;
  }

  .benefits-grid,
  .services-grid,
  .mission-grid {
    gap: 16px;
  }

  .confidence-banner {
    min-height: 520px;
  }

  .confidence-content {
    padding-block: 58px;
  }

  .download-cta {
    padding-block: 48px;
  }
}

/* Mobile only: remove the extra blank space below the About DrivWhere content. */
@media (max-width: 580px) {
  #about {
    padding-bottom: 18px;
  }

  #about .check-grid:empty {
    display: none;
    margin: 0;
  }
}

/* =========================================================
   HERO COPY MICRO UPDATE
   ========================================================= */
.hero-tnc {
  width: fit-content;
  margin: 10px 0 0 !important;
  color: rgba(255, 255, 255, .78) !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-trust-title .hero-title-line-one,
.hero-trust-title .hero-title-line-two {
  display: block;
}

@media (max-width: 580px) {
  .hero-tnc {
    margin-top: 7px !important;
    font-size: 10px !important;
    letter-spacing: .035em;
  }

  /* Keep the second slide heading on exactly two lines on mobile. */
  .hero--premium .hero-trust-title {
    font-size: clamp(30px, 9vw, 38px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.045em !important;
  }

  .hero-trust-title .hero-title-line-one,
  .hero-trust-title .hero-title-line-two {
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .hero--premium .hero-trust-title {
    font-size: clamp(28px, 8.7vw, 32px) !important;
  }
}


/* =========================================================
   FINAL HERO SLIDE CONSISTENCY FIX
   Keeps both mobile slides identical in typography, spacing,
   alignment and overall content position.
   ========================================================= */
.hero-tnc--placeholder {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.hero-trust-title .hero-title-line-one,
.hero-trust-title .hero-title-line-two {
  display: block;
}

@media (max-width: 820px) {
  /* Both slides begin from the exact same vertical point instead of
     being positioned according to their individual content height. */
  .hero--premium .hero-stage {
    align-items: flex-start !important;
    padding-top: clamp(168px, 24svh, 218px) !important;
    padding-bottom: 104px !important;
  }

  .hero--premium .hero-layout,
  .hero--premium .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  /* Use one shared type treatment for slide 1 and slide 2. */
  .hero--premium .hero-copy h1,
  .hero--premium .hero-copy h2,
  .hero--premium .hero-trust-title {
    margin: 0 !important;
    max-width: 100% !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: clamp(36px, 9.7vw, 44px) !important;
    font-weight: 700 !important;
    line-height: 1.03 !important;
    letter-spacing: -.048em !important;
    text-wrap: balance;
  }

  .hero--premium .kicker {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    letter-spacing: .15em !important;
  }

  .hero--premium .hero-tnc {
    height: 12px;
    margin: 8px 0 0 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 12px !important;
  }

  .hero--premium .hero-title-line {
    width: 150px;
    margin-top: 13px !important;
  }

  .hero--premium .hero-copy > p:not(.kicker):not(.hero-tnc) {
    margin-top: 17px !important;
    max-width: 100% !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.55 !important;
  }

  .hero--premium .hero-actions {
    margin-top: 21px !important;
  }

  .hero-trust-title .hero-title-line-one,
  .hero-trust-title .hero-title-line-two {
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .hero--premium .hero-copy h1,
  .hero--premium .hero-copy h2,
  .hero--premium .hero-trust-title {
    font-size: clamp(32px, 9.25vw, 38px) !important;
  }
}

@media (max-width: 360px) {
  .hero--premium .hero-copy h1,
  .hero--premium .hero-copy h2,
  .hero--premium .hero-trust-title {
    font-size: clamp(30px, 8.9vw, 34px) !important;
  }
}

@media (max-width: 820px) and (max-height: 720px) {
  .hero--premium .hero-stage {
    padding-top: 142px !important;
    padding-bottom: 82px !important;
  }

  .hero--premium .hero-copy h1,
  .hero--premium .hero-copy h2,
  .hero--premium .hero-trust-title {
    font-size: clamp(31px, 8.6vw, 38px) !important;
  }

  .hero--premium .hero-copy > p:not(.kicker):not(.hero-tnc) {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .hero--premium .hero-actions {
    margin-top: 16px !important;
  }

  .hero--premium .hero-actions .btn {
    min-height: 48px !important;
  }
}
