:root {
  --handei-bg: #ffffff;
  --handei-bg-soft: #f6fbfc;
  --handei-surface: rgba(255, 255, 255, 0.96);
  --handei-surface-strong: #ffffff;
  --handei-line: rgba(6, 180, 197, 0.16);
  --handei-line-strong: rgba(4, 155, 170, 0.32);
  --handei-text: #111111;
  --handei-muted: #5f6870;
  --handei-accent: #06b4c5;
  --handei-accent-strong: #049baa;
  --handei-accent-glow: rgba(6, 180, 197, 0.18);
  --handei-success: #049baa;
  --handei-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  --handei-radius-xl: 32px;
  --handei-radius-lg: 24px;
  --handei-radius-md: 18px;
  --handei-radius-sm: 14px;
  --handei-max: 100%;
  --handei-font-body: "Outfit", sans-serif;
  --handei-font-heading: "Inter Tight", sans-serif;
  --handei-text-sm: 14px;
  --handei-text-md: 16px;
  --handei-text-lg: 18px;
}

body.page-drive .page-drive-app__visual,
body.page-drive .page-drive-app__visual:hover,
body.page-drive .page-drive-app__visual:focus-within {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
  padding: 0 !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  color: var(--handei-text);
  font-family: var(--handei-font-body);
  font-size: var(--handei-text-md);
  line-height: 1.7;
}

body::before {
  display: none;
}

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

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

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

main {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - clamp(24px, 4vw, 72px)), var(--handei-max));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--handei-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

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

.section-head h2,
.hero-copy h1,
.page-hero h1 {
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.section-head p,
.hero-copy p,
.page-hero p,
.page-copy p,
.card p,
.split-copy p,
.legal-copy p,
.legal-copy li,
.contact-card p {
  color: var(--handei-muted);
  font-size: var(--handei-text-md);
  line-height: 1.7;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--handei-text);
  font-size: 14px;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

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

.btn--primary,
.btn--ghost {
  border-color: var(--handei-accent);
  background: var(--handei-accent);
  color: #111111;
  box-shadow: none;
  font-weight: 800;
}

.btn--primary:hover,
.btn--ghost:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__name {
  font-family: var(--handei-font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand__tag {
  color: var(--handei-muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-nav__actions .btn--ghost {
  border-color: #111111;
  background: #ffffff;
  color: #111111;
}

.site-nav__actions .btn--ghost:hover,
.site-nav__actions .btn--ghost[aria-current="page"] {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.site-nav__actions .btn--primary {
  border-color: var(--handei-accent);
  background: var(--handei-accent);
  color: #111111;
}

.site-nav__actions .btn--primary:hover,
.site-nav__actions .btn--primary[aria-current="page"] {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.nav-menu__item {
  position: relative;
}

.nav-menu__link,
.nav-menu__action-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--handei-muted);
  font-size: var(--handei-text-md);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--handei-accent);
  box-shadow: 0 0 16px var(--handei-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-menu__link:hover,
.nav-menu__link[aria-current="page"] {
  color: var(--handei-text);
}

.nav-menu__link:hover::after,
.nav-menu__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-menu__link--dropdown::before,
.nav-menu__action-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  order: 2;
  margin-top: -3px;
}

.nav-menu__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 25;
  display: grid;
  gap: 2px;
  min-width: 220px;
  padding: 10px 0 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-menu__dropdown::before {
  display: none;
}

.nav-menu__dropdown--action {
  left: auto;
  right: 0;
}

.nav-menu__dropdown--action::before {
  left: auto;
  right: 24px;
}

.nav-menu__dropdown-link {
  display: block;
  padding: 12px 14px;
  border-radius: 0;
  color: var(--handei-muted);
  background: transparent;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.nav-menu__dropdown-link:hover,
.nav-menu__dropdown-link[aria-current="page"] {
  color: var(--handei-text);
  background: transparent;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.nav-menu__item--dropdown:hover .nav-menu__dropdown,
.nav-menu__item--dropdown:focus-within .nav-menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--handei-text);
}

.hero {
  padding: 48px 0 64px;
}

.hero--booking {
  padding: 0;
}

.hero-image-section {
  width: 100%;
  margin: 0;
}

.hero-image-section--section {
  position: relative;
}

.hero-image-section__frame {
  width: 100%;
  overflow: hidden;
  background: #111111;
}

.hero-image-section__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-image-section__frame--section {
  height: calc(100vh - 96px);
  min-height: 620px;
}

.hero-image-section__frame--section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom !important;
}

.drive-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.drive-hero-overlay__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.drive-hero-card {
  position: absolute;
  top: clamp(24px, 4vw, 42px);
  right: 0;
  pointer-events: auto;
  width: min(360px, 100%);
  display: grid;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
}

.drive-hero-card .eyebrow {
  margin-bottom: 12px;
}

.drive-hero-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.drive-hero-card p {
  margin: 0 0 16px;
}

.drive-hero-form {
  gap: 12px;
}

.drive-hero-form .field-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.drive-hero-form .field-grid > div {
  display: grid;
  gap: 8px;
}

.drive-hero-form .btn {
  width: 100%;
}

.drive-hero-app-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.drive-hero-app-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.drive-hero-app-link:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.drive-hero-form .contact-note,
.drive-hero-form .form-result {
  margin: 0;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
}

.hero-banner__content,
.hero-visual__frame,
.booking-card,
.service-pillar,
.story-panel,
.mini-stat,
.city-showcase__card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--handei-line);
  border-radius: var(--handei-radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 253, 0.96) 100%);
  box-shadow: var(--handei-shadow);
}

.hero-banner__content,
.story-panel {
  padding: clamp(32px, 4vw, 56px);
}

.hero-banner__content::before,
.hero-visual__frame::before,
.service-pillar::before,
.story-panel::before,
.mini-stat::before,
.city-showcase__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(6, 180, 197, 0.08), transparent 28%),
    linear-gradient(225deg, rgba(17, 17, 17, 0.02), transparent 42%);
}

.hero-banner__content h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-banner__content p {
  max-width: 620px;
  margin: 0;
  color: var(--handei-muted);
  font-size: var(--handei-text-md);
}

.hero-banner__content .button-row {
  margin-top: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.booking-card {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(180deg, #111111 0%, #1b1b1b 100%);
  border-color: rgba(17, 17, 17, 0.88);
  box-shadow: 0 24px 56px rgba(17, 17, 17, 0.16);
}

.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(6, 180, 197, 0.18), transparent 30%);
}

.booking-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.booking-card__head strong {
  color: #ffffff;
  font-family: var(--handei-font-heading);
  font-size: 24px;
}

.booking-card__head span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.booking-field {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.booking-field label {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-field strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 15px;
}

.booking-card .button-row {
  margin-top: 18px;
}

.booking-card .contact-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.hero-banner__visual {
  position: relative;
}

.option-banner {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(17, 17, 17, 0.88);
  border-radius: var(--handei-radius-xl);
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
  box-shadow: 0 24px 56px rgba(17, 17, 17, 0.14);
}

.option-banner__intro h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
}

.option-banner__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.option-banner__item {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.96);
  color: var(--handei-text);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.option-banner__item:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 180, 197, 0.32);
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.1);
}

.option-banner__item span {
  color: var(--handei-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.option-banner__item strong {
  font-size: 21px;
  line-height: 1.18;
}

.option-banner__item small {
  color: var(--handei-muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual__frame {
  padding: 22px;
  background: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
  border-color: rgba(17, 17, 17, 0.88);
}

.hero-visual__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  object-fit: cover;
  object-position: center center;
}

.hero-visual__metric,
.hero-visual__badge {
  position: absolute;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.18);
}

.hero-visual__metric {
  top: 26px;
  right: 26px;
  min-width: 126px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--handei-accent) 0%, var(--handei-accent-strong) 100%);
  color: #ffffff;
}

.hero-visual__metric strong {
  display: block;
  font-family: var(--handei-font-heading);
  font-size: 28px;
  line-height: 1;
}

.hero-visual__metric span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual__badge {
  left: 26px;
  max-width: 260px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--handei-text);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual__badge--top {
  top: 112px;
}

.hero-visual__badge--bottom {
  bottom: 26px;
}

.service-pillars,
.story-grid,
.story-stack,
.city-showcase,
.app-grid {
  display: grid;
  gap: 18px;
}

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

.service-pillar,
.mini-stat {
  padding: 28px;
}

.service-pillar__kicker,
.mini-stat__kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--handei-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-pillar h3,
.mini-stat h3,
.city-showcase__card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.service-pillar p,
.mini-stat p,
.city-showcase__card p {
  margin: 0;
  color: var(--handei-muted);
  font-size: var(--handei-text-md);
  line-height: 1.7;
}

.story-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.story-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
}

.story-panel p {
  margin: 0 0 16px;
  color: var(--handei-muted);
}

.story-panel .list {
  margin-top: 20px;
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.05;
}

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

.city-showcase__card {
  padding: 34px;
}

.city-showcase__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.city-showcase__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(248, 252, 253, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--handei-muted);
  font-size: 13px;
  font-weight: 700;
}

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

.app-card {
  min-height: 100%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-board,
.card,
.split-panel,
.legal-panel,
.city-map,
.contact-card,
.faq-card,
.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--handei-line);
  border-radius: var(--handei-radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 253, 0.96) 100%);
  box-shadow: var(--handei-shadow);
}

.hero-copy {
  padding: 48px;
}

.hero-copy::before,
.hero-board::before,
.card::before,
.split-panel::before,
.legal-panel::before,
.city-map::before,
.contact-card::before,
.faq-card::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(140deg, rgba(6, 180, 197, 0.09), transparent 28%),
    linear-gradient(220deg, rgba(17, 17, 17, 0.025), transparent 46%);
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.hero-copy p {
  max-width: 640px;
  margin: 0 0 24px;
  font-size: var(--handei-text-md);
}

.hero-copy .button-row {
  margin: 28px 0 24px;
}

.hero-copy .chip-row {
  margin-top: 22px;
}

.hero-board {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 28px;
}

.hero-board__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-board__label strong {
  font-family: var(--handei-font-heading);
  font-size: 22px;
}

.hero-board__label span {
  color: var(--handei-muted);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-board__routes {
  display: grid;
  gap: 14px;
}

.route-card {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(248, 251, 247, 0.95);
}

.route-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.route-card p {
  margin: 0 0 12px;
  color: var(--handei-muted);
  font-size: 14px;
}

.route-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--handei-success);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.stats-grid,
.service-grid,
.values-grid,
.feature-grid,
.city-link-grid,
.faq-grid,
.contact-grid,
.legal-grid {
  display: grid;
  gap: 18px;
}

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

.card {
  padding: 26px;
}

.stat-card strong,
.feature-card strong,
.contact-card h3 {
  display: block;
  font-family: var(--handei-font-heading);
}

.stat-card strong {
  font-size: 38px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--handei-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-grid,
.city-link-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card h3,
.city-link-card h3,
.feature-card h3,
.faq-card h3,
.page-copy h2,
.split-copy h2,
.legal-copy h2,
.legal-copy h3 {
  margin: 0 0 10px;
  line-height: 1.25;
}

.service-card h3,
.city-link-card h3,
.feature-card h3,
.faq-card h3 {
  font-size: 22px;
}

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

.feature-card {
  padding: 24px;
}

.feature-card__kicker,
.value-card__kicker,
.city-link-card__kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--handei-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.values-grid .card {
  min-height: 100%;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.split-panel,
.legal-panel,
.faq-card,
.cta-panel {
  padding: 34px;
}

.city-map {
  display: grid;
  gap: 20px;
  align-items: end;
  min-height: 100%;
  padding: 34px;
}

.city-map__frame {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at 28% 24%, rgba(6, 180, 197, 0.16), transparent 16%),
    radial-gradient(circle at 68% 40%, rgba(6, 180, 197, 0.12), transparent 14%),
    radial-gradient(circle at 52% 72%, rgba(17, 17, 17, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(250, 254, 255, 1), rgba(245, 250, 252, 1));
  overflow: hidden;
}

.city-map__frame::before,
.city-map__frame::after {
  content: "";
  position: absolute;
  inset: 0;
}

.city-map__frame::before {
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.city-map__frame::after {
  background:
    linear-gradient(115deg, transparent 42%, rgba(6, 180, 197, 0.18) 42%, rgba(6, 180, 197, 0.18) 44%, transparent 44%),
    linear-gradient(200deg, transparent 52%, rgba(17, 17, 17, 0.09) 52%, rgba(17, 17, 17, 0.09) 54%, transparent 54%);
  opacity: 0.72;
}

.city-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(6, 180, 197, 0.22);
  background: #111111;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.city-pin::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--handei-accent);
  box-shadow: 0 0 18px var(--handei-accent);
}

.city-pin--harare {
  top: 18%;
  left: 16%;
}

.city-pin--bulawayo {
  right: 14%;
  bottom: 18%;
}

.city-map__rail {
  display: grid;
  gap: 12px;
}

.city-map__rail div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.city-map__rail strong {
  font-size: 15px;
}

.city-map__rail span {
  color: var(--handei-muted);
  font-size: 14px;
}

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

.list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  align-items: start;
}

.list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--handei-accent) 0%, rgba(6, 180, 197, 0.26) 70%, transparent 72%);
}

.city-link-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
}

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

.city-link-card__meta span {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(248, 252, 253, 0.96);
  color: var(--handei-muted);
  font-size: 13px;
  font-weight: 700;
}

.city-link-card__link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--handei-accent);
  font-weight: 800;
}

.city-link-card__link::after,
.text-link::after {
  content: "->";
  font-size: 14px;
}

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

.page-hero__panel {
  padding: 42px;
  border-radius: var(--handei-radius-xl);
  border: 1px solid var(--handei-line);
  background:
    radial-gradient(circle at top right, rgba(6, 180, 197, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 253, 0.98));
  box-shadow: var(--handei-shadow);
}

.page-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--handei-muted);
  font-size: 14px;
}

.page-hero__crumbs a {
  color: var(--handei-accent);
}

.page-hero__panel .chip-row,
.page-hero__panel .button-row {
  margin-top: 22px;
}

.about-hero-image-frame img {
  width: 100%;
  height: clamp(420px, 46vw, 680px);
  object-fit: cover;
  object-position: center center;
}

.about-story-grid {
  align-items: stretch;
}

.about-purpose-grid {
  align-items: stretch;
}

.about-purpose-card {
  background:
    radial-gradient(circle at top right, rgba(6, 180, 197, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 252, 253, 0.96));
}

.about-team-note {
  margin-bottom: 18px;
}

.page-copy,
.split-copy,
.legal-copy {
  display: grid;
  gap: 16px;
}

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

.faq-card {
  min-height: 100%;
}

.faq-card p:last-child,
.legal-copy p:last-child {
  margin-bottom: 0;
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--handei-text);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: var(--handei-text);
  padding: 15px 16px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-note {
  color: var(--handei-muted);
  font-size: 14px;
}

.form-result {
  min-height: 24px;
  color: var(--handei-success);
  font-size: 14px;
  font-weight: 700;
}

.stats-grid .card,
.service-grid .card,
.feature-grid .card,
.contact-grid .contact-card,
.faq-grid .faq-card {
  min-height: 100%;
}

.service-card .text-link,
.feature-card .text-link,
.contact-card .text-link,
.split-copy .text-link {
  margin-top: 4px;
}

.legal-grid {
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 112px;
  padding: 24px;
}

.legal-nav h3 {
  margin: 0 0 12px;
  font-family: var(--handei-font-heading);
  font-size: 20px;
  line-height: 1.2;
}

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

.legal-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--handei-muted);
  background: rgba(249, 251, 248, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--handei-text);
  border-color: var(--handei-line-strong);
}

.legal-copy h2 {
  font-size: clamp(30px, 4vw, 40px);
}

.legal-copy h3 {
  font-size: 22px;
}

.legal-copy ul,
.legal-copy ol {
  margin: 0;
  padding-left: 20px;
}

.legal-copy li + li {
  margin-top: 8px;
}

.cta-panel {
  display: grid;
  gap: 16px;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.12;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 34px 0 56px;
}

.site-footer__shell {
  padding: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--handei-radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--handei-shadow);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.site-footer__brand p,
.site-footer__bottom,
.site-footer__group a {
  color: var(--handei-muted);
}

.site-footer__brand p {
  max-width: 560px;
}

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

.site-footer__group h3 {
  margin: 0 0 12px;
  font-family: var(--handei-font-heading);
  font-size: 20px;
  line-height: 1.2;
}

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

.site-footer__group a:hover {
  color: var(--handei-text);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  padding-top: 22px;
  font-size: 14px;
}

.section-head h2,
.hero-copy h1,
.page-hero h1,
.brand__name,
.hero-banner__content h1,
.booking-card__head strong,
.option-banner__intro h2,
.option-banner__item strong,
.service-pillar h3,
.mini-stat h3,
.city-showcase__card h3,
.story-panel h2,
.hero-board__label strong,
.stat-card strong,
.service-card h3,
.city-link-card h3,
.feature-card h3,
.faq-card h3,
.page-copy h2,
.split-copy h2,
.legal-copy h2,
.legal-copy h3,
.contact-card h3,
.legal-nav h3,
.cta-panel h2,
.site-footer__group h3 {
  font-family: var(--handei-font-heading);
}

.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1080px) {
  .option-banner,
  .hero-banner,
  .story-grid,
  .hero__grid,
  .split,
  .site-footer__top,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .option-banner__grid,
  .service-pillars,
  .stats-grid,
  .service-grid,
  .city-showcase,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .legal-nav {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 88px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--handei-shadow);
  }

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

  .site-nav__links,
  .site-nav__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu__link::after {
    display: none;
  }

  .nav-menu__item,
  .nav-menu__item--action {
    width: 100%;
  }

  .nav-menu__link,
  .nav-menu__action-link,
  .site-nav__actions .btn {
    width: 100%;
    justify-content: space-between;
  }

  .nav-menu__dropdown,
  .nav-menu__dropdown--action {
    position: static;
    min-width: 0;
    margin-top: 10px;
    padding: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .nav-menu__dropdown::before,
  .nav-menu__dropdown--action::before {
    display: none;
  }

  .hero-copy,
  .hero-board,
  .hero-banner__content,
  .option-banner,
  .split-panel,
  .legal-panel,
  .faq-card,
  .cta-panel,
  .page-hero__panel,
  .story-panel,
  .service-pillar,
  .mini-stat,
  .city-showcase__card,
  .booking-card {
    padding: 28px;
  }

  .service-pillars,
  .feature-grid,
  .values-grid,
  .faq-grid,
  .field-grid,
  .site-footer__links,
  .stats-grid,
  .service-grid,
  .contact-grid,
  .city-showcase,
  .app-grid,
  .booking-grid,
  .option-banner__grid {
    grid-template-columns: 1fr;
  }

  .city-map__frame {
    min-height: 340px;
  }

  .hero-visual__metric,
  .hero-visual__badge {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .hero-image-section__frame--section {
    height: calc(100vh - 88px);
    min-height: 420px;
  }

  .hero-image-section__frame--section img {
    object-position: center bottom !important;
  }

  .drive-hero-card {
    top: 16px;
    right: 16px;
    width: min(340px, calc(100% - 16px));
    padding: 22px;
  }

  .drive-hero-form .field-grid {
    grid-template-columns: 1fr;
  }

  .drive-hero-app-links {
    grid-template-columns: 1fr;
  }
}

body.page-drive .page-drive-app__visual,
body.page-drive .page-drive-app__visual:hover,
body.page-drive .page-drive-app__visual:focus-within {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
  padding: 0 !important;
}

body.page-drive .page-drive-app__visual,
body.page-drive .page-drive-app__visual:hover,
body.page-drive .page-drive-app__visual:focus-within {
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
  transition: none;
}

@media (max-width: 560px) {
  .section {
    padding: 74px 0;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .brand__name {
    font-size: 20px;
  }

  .brand__mark {
    width: 68px;
    height: 68px;
  }

  .brand__tag {
    letter-spacing: 0.1em;
  }

  .hero-copy,
  .hero-board,
  .card,
  .split-panel,
  .legal-panel,
  .city-map,
  .contact-card,
  .faq-card,
  .cta-panel,
  .page-hero__panel,
  .site-footer__shell {
    border-radius: 24px;
  }
}

/* 2026 structure refresh */

:root {
  --handei-line: rgba(17, 17, 17, 0.08);
  --handei-line-strong: rgba(17, 17, 17, 0.14);
  --handei-shadow: 0 20px 48px rgba(15, 23, 42, 0.07);
}

body.theme-handei {
  background: #ffffff;
  color: #101417;
}

body.theme-handei .container {
  width: min(calc(100% - clamp(28px, 5vw, 92px)), 1320px);
}

body.theme-handei .section {
  padding: clamp(76px, 8vw, 112px) 0;
}

body.theme-handei .section--tight {
  padding: clamp(56px, 6vw, 84px) 0;
}

body.theme-handei .eyebrow {
  margin-bottom: 16px;
  letter-spacing: 0.16em;
}

body.theme-handei .eyebrow::before {
  width: 28px;
  box-shadow: none;
}

body.theme-handei .chip {
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  color: #273039;
  box-shadow: inset 0 -1px 0 rgba(17, 17, 17, 0.03);
}

body.theme-handei .btn {
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

body.theme-handei .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  backdrop-filter: none;
}

body.theme-handei .site-header__inner {
  min-height: 84px;
  gap: 28px;
}

body.theme-handei .brand__mark {
  width: 72px;
  height: 72px;
}

body.theme-handei .site-nav {
  gap: 14px;
}

body.theme-handei .site-nav__links {
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.theme-handei .nav-menu__link {
  padding: 10px 0;
  color: #33404a;
  font-size: 14px;
}

body.theme-handei .nav-menu__link::after {
  bottom: -4px;
  height: 2px;
  background: #111111;
  box-shadow: none;
}

body.theme-handei .nav-menu__link:hover,
body.theme-handei .nav-menu__link[aria-current="page"] {
  background: transparent;
  color: #111111;
}

body.theme-handei .nav-menu__dropdown {
  top: calc(100% + 12px);
  border-radius: 0;
  background: #ffffff;
}

body.theme-handei .nav-menu__dropdown-link {
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 700;
}

body.theme-handei .site-nav__actions .btn {
  min-height: 48px;
  padding-inline: 20px;
}

body.theme-handei .hero-image-section__frame {
  background: #ffffff;
}

body.theme-handei .hero-image-section__frame img {
  display: block;
}

body.page-home .hero + .section .option-banner {
  position: relative;
  z-index: 3;
  margin-top: -68px;
}

body.theme-handei .option-banner {
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.09);
}

body.page-home .option-banner {
  grid-template-columns: 0.82fr 1.18fr;
}

body.page-home .option-banner__intro {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #111111 0%, #1a2024 100%);
}

body.page-home .option-banner__intro .eyebrow {
  color: var(--handei-accent);
}

body.page-home .option-banner__intro h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.06;
}

body.page-home .option-banner__intro p {
  color: rgba(255, 255, 255, 0.72);
}

body.theme-handei .option-banner__grid {
  gap: 14px;
}

body.theme-handei .option-banner__item {
  position: relative;
  padding: 28px 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: #f8fbfc;
  box-shadow: none;
}

body.theme-handei .option-banner__item::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: #111111;
}

body.theme-handei .option-banner__item:nth-child(2)::before {
  background: var(--handei-accent-strong);
}

body.theme-handei .option-banner__item:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.12);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

body.theme-handei .service-pillars,
body.theme-handei .service-grid,
body.theme-handei .stats-grid,
body.theme-handei .values-grid,
body.theme-handei .feature-grid,
body.theme-handei .faq-grid,
body.theme-handei .contact-grid,
body.theme-handei .city-showcase,
body.theme-handei .app-grid {
  gap: 22px;
}

body.theme-handei .service-pillar,
body.theme-handei .hero-copy,
body.theme-handei .hero-board,
body.theme-handei .card,
body.theme-handei .split-panel,
body.theme-handei .legal-panel,
body.theme-handei .city-map,
body.theme-handei .contact-card,
body.theme-handei .faq-card,
body.theme-handei .cta-panel,
body.theme-handei .city-showcase__card,
body.theme-handei .story-panel,
body.theme-handei .mini-stat {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--handei-shadow);
}

body.theme-handei .service-pillar::before,
body.theme-handei .hero-copy::before,
body.theme-handei .hero-board::before,
body.theme-handei .card::before,
body.theme-handei .split-panel::before,
body.theme-handei .legal-panel::before,
body.theme-handei .city-map::before,
body.theme-handei .contact-card::before,
body.theme-handei .faq-card::before,
body.theme-handei .cta-panel::before,
body.theme-handei .city-showcase__card::before,
body.theme-handei .story-panel::before,
body.theme-handei .mini-stat::before {
  background: none;
}

body.theme-handei .service-pillar,
body.theme-handei .city-showcase__card,
body.theme-handei .story-panel,
body.theme-handei .card,
body.theme-handei .faq-card,
body.theme-handei .contact-card {
  border-top: 4px solid #111111;
}

body.theme-handei .service-pillar:nth-child(even),
body.theme-handei .stats-grid .card:nth-child(even),
body.theme-handei .feature-grid .card:nth-child(even),
body.theme-handei .values-grid .card:nth-child(even),
body.theme-handei .faq-grid .faq-card:nth-child(even),
body.theme-handei .contact-grid .contact-card:nth-child(even),
body.theme-handei .city-showcase__card:nth-child(even) {
  border-top-color: var(--handei-accent-strong);
}

body.page-home .service-pillar {
  padding: 32px;
}

body.page-home .app-download-band {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 20px;
  align-items: stretch;
}

body.page-home .app-download-band__content,
body.page-home .app-download-band__visual {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  box-shadow: var(--handei-shadow);
}

body.page-home .app-download-band__content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(34px, 5vw, 54px);
  background: linear-gradient(135deg, #111111 0%, #1a2024 100%);
}

body.page-home .app-download-band__content .eyebrow {
  color: var(--handei-accent);
}

body.page-home .app-download-band__content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.06;
}

body.page-home .app-download-band__content p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
}

body.page-home .app-download-band__content .chip-row {
  margin-top: 6px;
}

body.page-home .app-download-band__content .chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

body.page-home .app-download-band__visual {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(6, 180, 197, 0.16), transparent 32%),
    linear-gradient(180deg, #f8fbfc 0%, #eef6f8 100%);
}

body.page-home .app-download-band__phone {
  width: min(380px, 100%);
  padding: 14px;
  border-radius: 44px;
  background: linear-gradient(180deg, #111111 0%, #1e252a 100%);
  box-shadow: 0 26px 54px rgba(15, 20, 24, 0.16);
}

body.page-home .app-download-band__phone img {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 30px;
  object-fit: cover;
  background: #f7fafb;
}

body.theme-handei .story-grid {
  grid-template-columns: 1.14fr 0.86fr;
  gap: 24px;
}

body.theme-handei .story-panel {
  padding: 42px;
}

body.theme-handei .story-panel .list {
  gap: 16px;
}

body.theme-handei .story-stack {
  gap: 18px;
}

body.theme-handei .mini-stat {
  padding: 28px;
}

body.theme-handei .story-stack .mini-stat:first-child,
body.theme-handei .story-stack .mini-stat:last-child {
  background: linear-gradient(135deg, #111111 0%, #1d2529 100%);
  border-color: rgba(17, 17, 17, 0.92);
  color: #ffffff;
}

body.theme-handei .story-stack .mini-stat:first-child p,
body.theme-handei .story-stack .mini-stat:last-child p {
  color: rgba(255, 255, 255, 0.72);
}

body.theme-handei .story-stack .mini-stat:first-child .mini-stat__kicker,
body.theme-handei .story-stack .mini-stat:last-child .mini-stat__kicker {
  color: var(--handei-accent);
}

body.theme-handei .page-hero {
  padding: 34px 0 22px;
}

body.theme-handei .page-hero__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
}

body.theme-handei .page-hero__panel::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: clamp(148px, 16vw, 220px);
  aspect-ratio: 1;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background:
    radial-gradient(circle at 30% 30%, rgba(6, 180, 197, 0.22), transparent 58%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.03), rgba(17, 17, 17, 0));
}

body.page-city .page-hero__panel::after,
body.page-cities .page-hero__panel::after {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(24, 31, 36, 0.96)),
    radial-gradient(circle at 30% 30%, rgba(6, 180, 197, 0.14), transparent 58%);
}

body.page-about .page-hero__panel::after {
  background:
    radial-gradient(circle at 30% 30%, rgba(6, 180, 197, 0.24), transparent 58%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.02));
}

body.theme-handei .page-hero__panel > * {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

body.theme-handei .page-hero__crumbs {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

body.theme-handei .stats-grid .card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 210px;
  padding: 30px 24px;
}

body.theme-handei .stat-card strong {
  margin-top: auto;
  font-size: 34px;
}

body.theme-handei .service-card,
body.theme-handei .feature-card,
body.theme-handei .value-card,
body.theme-handei .faq-card,
body.theme-handei .contact-card,
body.theme-handei .city-showcase__card {
  min-height: 100%;
  padding: 30px;
}

body.theme-handei .service-card h3,
body.theme-handei .feature-card h3,
body.theme-handei .value-card h3,
body.theme-handei .faq-card h3,
body.theme-handei .city-showcase__card h3 {
  margin-bottom: 12px;
}

body.theme-handei .service-card p,
body.theme-handei .feature-card p,
body.theme-handei .value-card p,
body.theme-handei .faq-card p,
body.theme-handei .contact-card p {
  margin-bottom: 0;
}

body.theme-handei .split {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
}

body.theme-handei .split-panel,
body.theme-handei .contact-card,
body.theme-handei .legal-panel {
  padding: 38px;
}

body.theme-handei .split > aside.split-panel,
body.page-ride #ride-request aside.contact-card,
body.page-contact #contact-form aside.contact-card {
  background: linear-gradient(135deg, #111111 0%, #1a2024 100%);
  border-color: rgba(17, 17, 17, 0.92);
  color: #ffffff;
  box-shadow: 0 22px 56px rgba(15, 20, 24, 0.16);
}

body.theme-handei .split > aside.split-panel h2,
body.theme-handei .split > aside.split-panel h3,
body.page-ride #ride-request aside.contact-card h3,
body.page-contact #contact-form aside.contact-card h3 {
  color: #ffffff;
}

body.theme-handei .split > aside.split-panel p,
body.theme-handei .split > aside.split-panel li span,
body.page-ride #ride-request aside.contact-card p,
body.page-contact #contact-form aside.contact-card p {
  color: rgba(255, 255, 255, 0.74);
}

body.theme-handei .split > aside.split-panel .chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

body.page-home .city-showcase__card,
body.page-cities .city-showcase__card {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 0;
}

body.theme-handei .city-showcase__meta span,
body.theme-handei .city-link-card__meta span {
  background: #ffffff;
}

body.theme-handei .faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.theme-handei .faq-card {
  border-left: 4px solid #111111;
  border-top-width: 1px;
}

body.theme-handei .faq-grid .faq-card:nth-child(even) {
  border-left-color: var(--handei-accent-strong);
}

body.theme-handei .contact-form {
  gap: 16px;
}

body.theme-handei .field-grid {
  gap: 16px;
}

body.theme-handei .contact-form input,
body.theme-handei .contact-form select,
body.theme-handei .contact-form textarea {
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #f8fbfc;
  padding: 15px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.theme-handei .contact-form textarea {
  min-height: 160px;
}

body.theme-handei .contact-form input:focus,
body.theme-handei .contact-form select:focus,
body.theme-handei .contact-form textarea:focus {
  outline: none;
  border-color: var(--handei-accent-strong);
  box-shadow: 0 0 0 4px rgba(6, 180, 197, 0.12);
  background: #ffffff;
}

body.theme-handei .drive-hero-card {
  border-top: none;
  border-radius: 30px;
}

body.theme-handei .cta-panel {
  display: grid;
  gap: 16px;
  padding: 42px;
  border-color: rgba(17, 17, 17, 0.92);
  background: linear-gradient(135deg, #111111 0%, #1a2024 100%);
  box-shadow: 0 24px 60px rgba(15, 20, 24, 0.18);
}

body.theme-handei .cta-panel::before {
  background:
    radial-gradient(circle at top right, rgba(6, 180, 197, 0.24), transparent 34%),
    linear-gradient(220deg, rgba(255, 255, 255, 0.04), transparent 48%);
}

body.theme-handei .cta-panel h2,
body.theme-handei .cta-panel .eyebrow,
body.theme-handei .cta-panel .button-row {
  position: relative;
  z-index: 1;
}

body.theme-handei .cta-panel h2 {
  color: #ffffff;
}

body.theme-handei .cta-panel p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
}

body.theme-handei .cta-panel .eyebrow {
  color: var(--handei-accent);
}

body.theme-handei .cta-panel .eyebrow::before {
  box-shadow: none;
}

body.theme-handei .cta-panel .btn--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.theme-handei .cta-panel .btn--ghost:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

body.theme-handei .site-footer {
  padding: 28px 0 48px;
}

body.theme-handei .site-footer__shell {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 34px;
  background: linear-gradient(135deg, #111111 0%, #1a2024 100%);
  box-shadow: 0 24px 60px rgba(15, 20, 24, 0.18);
}

body.theme-handei .site-footer__top {
  grid-template-columns: 1.02fr 0.98fr;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-handei .site-footer__brand p,
body.theme-handei .site-footer__bottom,
body.theme-handei .site-footer__group a {
  color: rgba(255, 255, 255, 0.72);
}

body.theme-handei .site-footer__group h3 {
  color: #ffffff;
}

body.theme-handei .site-footer__group a:hover {
  color: #ffffff;
}

@media (max-width: 1080px) {
  body.page-home .option-banner {
    grid-template-columns: 1fr;
  }

  body.page-home .app-download-band {
    grid-template-columns: 1fr;
  }

  body.page-home .hero + .section .option-banner {
    margin-top: -36px;
  }

  body.theme-handei .story-grid,
  body.theme-handei .split,
  body.theme-handei .site-footer__top {
    grid-template-columns: 1fr;
  }

  body.theme-handei .stats-grid,
  body.theme-handei .service-grid,
  body.theme-handei .contact-grid,
  body.theme-handei .city-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body.theme-handei .site-nav__links {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.theme-handei .nav-menu__link {
    width: 100%;
    justify-content: space-between;
    background: #f7fafb;
  }

  body.theme-handei .page-hero__panel::after {
    display: none;
  }

  body.page-home .hero + .section .option-banner {
    margin-top: -18px;
  }

  body.page-home .app-download-band__content,
  body.page-home .app-download-band__visual {
    border-radius: 28px;
  }

  body.theme-handei .service-pillars,
  body.theme-handei .stats-grid,
  body.theme-handei .service-grid,
  body.theme-handei .values-grid,
  body.theme-handei .feature-grid,
  body.theme-handei .faq-grid,
  body.theme-handei .contact-grid,
  body.theme-handei .city-showcase,
  body.theme-handei .app-grid,
  body.theme-handei .field-grid,
  body.theme-handei .site-footer__links {
    grid-template-columns: 1fr;
  }

  body.theme-handei .page-hero__panel,
  body.theme-handei .story-panel,
  body.theme-handei .service-pillar,
  body.theme-handei .card,
  body.theme-handei .split-panel,
  body.theme-handei .contact-card,
  body.theme-handei .faq-card,
  body.theme-handei .cta-panel,
  body.theme-handei .city-showcase__card,
  body.theme-handei .site-footer__shell {
    padding: 28px;
    border-radius: 28px;
  }

  body.theme-handei .brand__mark {
    width: 64px;
    height: 64px;
  }
}

/* 2026 premium redesign */

body.theme-handei {
  background: #ffffff;
  color: #111111;
}

body.theme-handei .container {
  width: min(calc(100% - clamp(24px, 5vw, 96px)), 1360px);
}

body.theme-handei .section {
  padding: clamp(72px, 8vw, 112px) 0;
}

body.theme-handei .section--tight {
  padding: clamp(52px, 6vw, 84px) 0;
}

body.theme-handei .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 8px 26px rgba(17, 17, 17, 0.04);
}

body.theme-handei .site-header__inner {
  min-height: 84px;
  gap: 28px;
}

body.theme-handei .brand__mark {
  width: 68px;
  height: 68px;
}

body.theme-handei .site-nav {
  gap: 26px;
}

body.theme-handei .site-nav__links {
  gap: 24px;
}

body.theme-handei .site-nav__actions {
  gap: 14px;
}

body.theme-handei .nav-menu__link,
body.theme-handei .nav-menu__action-link {
  color: #2a2d2f;
  font-size: 15px;
  font-weight: 700;
}

body.theme-handei .nav-menu__dropdown {
  min-width: 240px;
  padding: 10px 0 0;
  border-radius: 0;
  background: #ffffff;
}

body.theme-handei .nav-menu__dropdown-link {
  padding: 14px 16px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
}

body.theme-handei .eyebrow {
  margin-bottom: 16px;
  color: #00bfd3;
  letter-spacing: 0.16em;
}

body.theme-handei .eyebrow::before {
  width: 26px;
  box-shadow: none;
}

body.theme-handei .section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

body.theme-handei .section-head h2,
body.theme-handei .hero-copy h1,
body.theme-handei .page-hero h1,
body.theme-handei .split-copy h2,
body.theme-handei .story-panel h2 {
  font-family: var(--handei-font-heading);
  letter-spacing: -0.045em;
}

body.theme-handei .section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
}

body.theme-handei .page-hero {
  padding: 36px 0 24px;
}

body.theme-handei .page-hero__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(6, 180, 197, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f6fbfc 68%, #eef7f8 100%);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.07);
}

body.theme-handei .page-hero__panel::after {
  content: "";
  position: absolute;
  inset: auto 40px 38px auto;
  width: clamp(110px, 12vw, 170px);
  height: 2px;
  background: #111111;
  opacity: 0.12;
}

body.theme-handei .page-hero h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.97;
}

body.theme-handei .page-hero p {
  max-width: 650px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

body.theme-handei .page-hero__crumbs {
  align-items: center;
  gap: 12px;
  padding-top: 6px;
  color: #6b7279;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.page-home .hero {
  padding: 0;
}

body.page-home .hero-image-section,
body.page-about .hero-image-section {
  padding: 0;
}

body.page-home .hero-image-section__frame,
body.page-about .about-hero-image-frame {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.page-home .hero-image-section__frame img,
body.page-about .about-hero-image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

body.page-home .section-home-options {
  position: relative;
  z-index: 3;
  margin-top: -88px;
  padding-top: 0;
  padding-bottom: 28px;
}

body.page-home .option-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.12);
}

body.page-home .option-banner__intro {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

body.page-home .option-banner__intro h2 {
  margin: 0;
  font-family: var(--handei-font-heading);
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

body.page-home .option-banner__intro p {
  max-width: 420px;
  margin: 0;
  color: #5f6870;
  font-size: 17px;
}

body.page-home .option-banner__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.page-home .option-banner__item {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 26px 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

body.page-home .option-banner__item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 191, 211, 0.26);
  box-shadow: 0 26px 54px rgba(17, 17, 17, 0.09);
}

body.page-home .option-banner__item span,
body.page-home .service-pillar__kicker,
body.theme-handei .feature-card__kicker,
body.theme-handei .value-card__kicker,
body.theme-handei .mini-stat__kicker,
body.page-home .city-link-card__kicker {
  color: #697177;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-home .option-banner__item strong {
  font-family: var(--handei-font-heading);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

body.page-home .option-banner__item small {
  color: #5f6870;
  font-size: 15px;
  line-height: 1.6;
}

body.page-home .section-home-services {
  padding-top: 12px;
}

body.theme-handei .service-pillars,
body.theme-handei .stats-grid,
body.theme-handei .service-grid,
body.theme-handei .feature-grid,
body.theme-handei .values-grid,
body.theme-handei .faq-grid,
body.theme-handei .contact-grid,
body.theme-handei .app-grid {
  display: grid;
  gap: 22px;
}

body.theme-handei .service-pillars,
body.theme-handei .service-grid,
body.theme-handei .contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.theme-handei .stats-grid,
body.theme-handei .feature-grid,
body.theme-handei .values-grid,
body.theme-handei .faq-grid,
body.theme-handei .app-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.theme-handei .card,
body.theme-handei .contact-card,
body.theme-handei .faq-card,
body.theme-handei .split-panel,
body.theme-handei .service-pillar,
body.theme-handei .city-showcase__card,
body.theme-handei .mini-stat,
body.theme-handei .cta-panel {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.06);
}

body.theme-handei .card,
body.theme-handei .contact-card,
body.theme-handei .faq-card,
body.theme-handei .split-panel,
body.theme-handei .service-pillar,
body.theme-handei .city-showcase__card,
body.theme-handei .mini-stat {
  padding: 30px;
}

body.page-home .service-pillar {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding-top: 34px;
}

body.page-home .service-pillar::before,
body.theme-handei .service-card::before,
body.theme-handei .feature-card::before,
body.theme-handei .value-card::before,
body.theme-handei .faq-card::before,
body.theme-handei .contact-card::before,
body.theme-handei .city-showcase__card::before,
body.theme-handei .split-panel::before {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #111111;
}

body.page-home .service-pillar:nth-child(2) {
  background: linear-gradient(180deg, #111111 0%, #181c1d 100%);
  color: #ffffff;
}

body.page-home .service-pillar:nth-child(2) p,
body.page-home .service-pillar:nth-child(2) .service-pillar__kicker {
  color: rgba(255, 255, 255, 0.78);
}

body.theme-handei .service-pillar h3,
body.theme-handei .card h3,
body.theme-handei .contact-card h3,
body.theme-handei .faq-card h3 {
  margin: 0;
  font-family: var(--handei-font-heading);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

body.theme-handei .service-pillar p,
body.theme-handei .card p,
body.theme-handei .contact-card p,
body.theme-handei .faq-card p {
  margin: 0;
  color: #5f6870;
}

body.theme-handei .story-grid,
body.theme-handei .split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: start;
}

body.theme-handei .story-panel {
  display: grid;
  gap: 18px;
  padding: clamp(32px, 3vw, 44px);
  border-radius: 34px;
  background: linear-gradient(180deg, #111111 0%, #171a1b 100%);
  box-shadow: 0 30px 84px rgba(17, 17, 17, 0.16);
}

body.theme-handei .story-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
}

body.theme-handei .story-panel p,
body.theme-handei .story-panel .list span {
  color: rgba(255, 255, 255, 0.76);
}

body.theme-handei .story-panel .chip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.theme-handei .story-panel .btn--ghost {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}

body.theme-handei .story-panel .btn--ghost:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

body.theme-handei .story-stack {
  display: grid;
  gap: 22px;
}

body.theme-handei .mini-stat strong,
body.theme-handei .stat-card strong {
  display: block;
  font-family: var(--handei-font-heading);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.04em;
}

body.theme-handei .stat-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #697177;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.theme-handei .stat-card p {
  margin: 0;
}

body.theme-handei .city-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.theme-handei .city-showcase__card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding-top: 34px;
}

body.theme-handei .city-showcase__card h3 {
  margin: 0;
  font-family: var(--handei-font-heading);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body.theme-handei .city-showcase__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.theme-handei .city-showcase__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f4f8f8;
  color: #40474d;
  font-size: 14px;
  font-weight: 700;
}

body.page-home .section-home-app .app-download-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: stretch;
  padding: 12px;
  border-radius: 38px;
  background: #101314;
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.22);
}

body.page-home .app-download-band__content,
body.page-home .app-download-band__visual {
  border-radius: 30px;
}

body.page-home .app-download-band__content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 4vw, 46px);
}

body.page-home .app-download-band__content h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--handei-font-heading);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

body.page-home .app-download-band__content p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

body.page-home .app-download-band__content .chip {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.page-home .app-download-band__content .btn--ghost {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

body.page-home .app-download-band__content .btn--ghost:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

body.page-home .app-download-band__visual {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(6, 180, 197, 0.28), transparent 44%),
    linear-gradient(180deg, #15191a 0%, #101314 100%);
}

body.page-home .app-download-band__phone {
  width: min(100%, 330px);
  padding: 18px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

body.page-home .section-home-confidence .feature-card,
body.page-about .feature-card,
body.theme-handei .service-card,
body.theme-handei .value-card,
body.theme-handei .faq-card {
  display: grid;
  gap: 14px;
}

body.theme-handei .split-panel {
  display: grid;
  gap: 16px;
}

body.theme-handei .split-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.02;
}

body.theme-handei .list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.theme-handei .list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

body.theme-handei .list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #00bfd3;
}

body.theme-handei .contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.theme-handei .contact-card,
body.theme-handei .contact-form,
body.page-drive .drive-hero-card {
  gap: 18px;
}

body.theme-handei .contact-form {
  display: grid;
}

body.theme-handei .field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.theme-handei .contact-form label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.theme-handei .contact-form input,
body.theme-handei .contact-form select,
body.theme-handei .contact-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: #f7fbfb;
  color: #111111;
}

body.theme-handei .contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

body.theme-handei .contact-form input:focus,
body.theme-handei .contact-form select:focus,
body.theme-handei .contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 191, 211, 0.44);
  box-shadow: 0 0 0 4px rgba(0, 191, 211, 0.12);
}

body.page-contact .section-contact-form .split,
body.page-ride .section-ride-form .split,
body.page-cities .section-cities-list + .section .split {
  align-items: stretch;
}

body.page-contact .section-contact-form .contact-card,
body.page-ride .section-ride-form .contact-card,
body.page-drive .drive-hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

body.page-drive .drive-hero-card {
  max-width: 420px;
  box-shadow: 0 26px 68px rgba(17, 17, 17, 0.18);
}

body.page-home .section-home-cta .cta-panel,
body.page-about .section-about-cta .cta-panel,
body.theme-handei .cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: clamp(34px, 4vw, 52px);
  border-color: rgba(17, 17, 17, 0.12);
  background:
    radial-gradient(circle at top right, rgba(6, 180, 197, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f6fbfc 100%);
}

body.theme-handei .cta-panel::after {
  content: "";
  position: absolute;
  inset: auto 34px 34px auto;
  width: 120px;
  height: 2px;
  background: rgba(17, 17, 17, 0.14);
}

body.theme-handei .cta-panel h2 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--handei-font-heading);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

body.theme-handei .cta-panel p {
  max-width: 620px;
  margin: 0;
}

body.theme-handei .site-footer {
  margin-top: 40px;
  padding: 0 0 40px;
  background: transparent;
}

body.theme-handei .site-footer__shell {
  padding: clamp(30px, 4vw, 44px);
  border-radius: 34px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #101314;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.18);
}

body.theme-handei .site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 36px;
}

body.theme-handei .site-footer__brand p,
body.theme-handei .site-footer__bottom,
body.theme-handei .site-footer__group a {
  color: rgba(255, 255, 255, 0.68);
}

body.theme-handei .site-footer__group h3 {
  color: #ffffff;
}

body.theme-handei .site-footer__group a:hover {
  color: #ffffff;
}

body.theme-handei .site-footer .brand__mark {
  width: 72px;
  height: 72px;
}

body.theme-handei .site-footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  body.page-home .option-banner,
  body.page-home .app-download-band,
  body.theme-handei .story-grid,
  body.theme-handei .split,
  body.theme-handei .site-footer__top {
    grid-template-columns: 1fr;
  }

  body.page-home .option-banner__grid,
  body.theme-handei .faq-grid,
  body.theme-handei .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.theme-handei .service-pillars,
  body.theme-handei .stats-grid,
  body.theme-handei .service-grid,
  body.theme-handei .feature-grid,
  body.theme-handei .values-grid,
  body.theme-handei .contact-grid,
  body.theme-handei .city-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-home .section-home-options {
    margin-top: -54px;
  }
}

@media (max-width: 860px) {
  body.theme-handei .site-header__inner {
    min-height: 78px;
  }

  body.theme-handei .container {
    width: min(calc(100% - 24px), 1360px);
  }

  body.page-home .section-home-options {
    margin-top: -24px;
  }

  body.page-home .option-banner__grid,
  body.theme-handei .service-pillars,
  body.theme-handei .stats-grid,
  body.theme-handei .service-grid,
  body.theme-handei .feature-grid,
  body.theme-handei .values-grid,
  body.theme-handei .faq-grid,
  body.theme-handei .contact-grid,
  body.theme-handei .city-showcase,
  body.theme-handei .app-grid,
  body.theme-handei .field-grid,
  body.theme-handei .site-footer__links {
    grid-template-columns: 1fr;
  }

  body.theme-handei .page-hero__panel,
  body.theme-handei .story-panel,
  body.theme-handei .card,
  body.theme-handei .contact-card,
  body.theme-handei .faq-card,
  body.theme-handei .split-panel,
  body.theme-handei .service-pillar,
  body.theme-handei .city-showcase__card,
  body.theme-handei .mini-stat,
  body.theme-handei .cta-panel,
  body.theme-handei .site-footer__shell {
    padding: 26px;
    border-radius: 26px;
  }

  body.theme-handei .page-hero h1,
  body.page-home .option-banner__intro h2,
  body.theme-handei .story-panel h2,
  body.page-home .app-download-band__content h2,
  body.theme-handei .cta-panel h2 {
    max-width: none;
    font-size: clamp(30px, 9vw, 42px);
  }

  body.theme-handei .site-footer {
    padding-bottom: 24px;
  }
}

/* 2026 calm premium direction */

body.theme-handei {
  --handei-accent: #06b4c5;
  --handei-accent-strong: #049baa;
  --handei-line: #e7ecef;
  --handei-line-strong: #d6e2e7;
  --handei-muted: #626b73;
  --handei-shadow: 0 16px 40px rgba(16, 18, 20, 0.06);
}

body.theme-handei .container {
  width: min(calc(100% - clamp(24px, 5vw, 88px)), 1280px);
}

body.theme-handei .section {
  padding: clamp(68px, 7vw, 102px) 0;
}

body.theme-handei .section--tight {
  padding: clamp(44px, 5vw, 72px) 0;
}

body.theme-handei .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #edf1f3;
  box-shadow: 0 4px 20px rgba(16, 18, 20, 0.04);
}

body.theme-handei .site-header__inner {
  min-height: 78px;
}

body.theme-handei .brand__mark {
  width: 62px;
  height: 62px;
}

body.theme-handei .nav-menu__link,
body.theme-handei .nav-menu__action-link {
  color: #23282d;
  font-size: 15px;
  font-weight: 700;
}

body.theme-handei .nav-menu__dropdown {
  padding: 10px 0 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

body.theme-handei .nav-menu__dropdown-link {
  border-radius: 0;
  background: transparent;
}

body.theme-handei .site-nav__actions .btn--ghost {
  background: #ffffff;
  color: #111111;
  border-color: #d9e1e5;
}

body.theme-handei .site-nav__actions .btn--primary {
  background: var(--handei-accent);
  color: #111111;
  border-color: var(--handei-accent);
}

body.theme-handei .btn {
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: none;
}

body.theme-handei .section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

body.theme-handei .section-head h2,
body.theme-handei .page-hero h1,
body.theme-handei .story-panel h2,
body.theme-handei .split-copy h2,
body.theme-handei .cta-panel h2 {
  letter-spacing: -0.04em;
}

body.theme-handei .section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
}

body.theme-handei .page-hero {
  padding: 28px 0 20px;
}

body.theme-handei .page-hero__panel {
  gap: 16px;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid #edf1f3;
  border-radius: 24px;
  background: #f8fbfb;
  box-shadow: none;
}

body.theme-handei .page-hero__panel::after {
  display: none;
}

body.theme-handei .page-hero h1 {
  max-width: 15ch;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.98;
}

body.theme-handei .page-hero p {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.65;
}

body.page-home .section-home-options {
  margin-top: -64px;
  padding-top: 0;
}

body.page-home .option-banner {
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid #edf1f3;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(16, 18, 20, 0.08);
}

body.page-home .option-banner__intro {
  gap: 14px;
  padding: 10px 6px;
}

body.page-home .option-banner__intro h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

body.page-home .option-banner__intro p {
  font-size: 16px;
}

body.page-home .option-banner__grid {
  gap: 16px;
}

body.page-home .option-banner__item {
  gap: 12px;
  padding: 22px 20px;
  border: 1px solid #edf1f3;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: none;
}

body.page-home .option-banner__item:hover {
  transform: translateY(-2px);
  border-color: #dbe5ea;
  box-shadow: 0 10px 24px rgba(16, 18, 20, 0.05);
}

body.page-home .option-banner__item strong {
  font-size: 22px;
  line-height: 1.08;
}

body.theme-handei .service-pillars,
body.theme-handei .service-grid,
body.theme-handei .contact-grid {
  gap: 18px;
}

body.theme-handei .stats-grid,
body.theme-handei .feature-grid,
body.theme-handei .values-grid,
body.theme-handei .faq-grid,
body.theme-handei .app-grid,
body.theme-handei .city-showcase {
  gap: 18px;
}

body.theme-handei .card,
body.theme-handei .contact-card,
body.theme-handei .faq-card,
body.theme-handei .split-panel,
body.theme-handei .service-pillar,
body.theme-handei .city-showcase__card,
body.theme-handei .mini-stat,
body.theme-handei .cta-panel {
  border: 1px solid #edf1f3;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: none;
}

body.theme-handei .card,
body.theme-handei .contact-card,
body.theme-handei .faq-card,
body.theme-handei .split-panel,
body.theme-handei .service-pillar,
body.theme-handei .city-showcase__card,
body.theme-handei .mini-stat {
  padding: 24px;
}

body.page-home .service-pillar,
body.theme-handei .service-card,
body.theme-handei .feature-card,
body.theme-handei .value-card,
body.theme-handei .faq-card,
body.theme-handei .contact-card,
body.theme-handei .city-showcase__card,
body.theme-handei .split-panel {
  position: relative;
}

body.page-home .service-pillar::before,
body.theme-handei .service-card::before,
body.theme-handei .feature-card::before,
body.theme-handei .value-card::before,
body.theme-handei .faq-card::before,
body.theme-handei .contact-card::before,
body.theme-handei .city-showcase__card::before,
body.theme-handei .split-panel::before {
  width: 48px;
  height: 3px;
  margin-bottom: 16px;
  background: var(--handei-accent);
}

body.page-home .service-pillar:nth-child(2) {
  background: #f8fbfb;
  color: #111111;
}

body.page-home .service-pillar:nth-child(2) p,
body.page-home .service-pillar:nth-child(2) .service-pillar__kicker {
  color: #626b73;
}

body.theme-handei .service-pillar h3,
body.theme-handei .card h3,
body.theme-handei .contact-card h3,
body.theme-handei .faq-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
}

body.theme-handei .story-grid,
body.theme-handei .split {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 22px;
}

body.theme-handei .story-panel {
  gap: 16px;
  padding: 28px;
  border: 1px solid #edf1f3;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: none;
}

body.theme-handei .story-panel h2 {
  color: #111111;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

body.theme-handei .story-panel p,
body.theme-handei .story-panel .list span {
  color: #626b73;
}

body.theme-handei .story-panel .chip {
  background: #f4f8f8;
  border-color: #e3ecef;
  color: #111111;
}

body.theme-handei .mini-stat,
body.theme-handei .stat-card {
  background: #f8fbfb;
}

body.theme-handei .mini-stat strong,
body.theme-handei .stat-card strong {
  font-size: clamp(26px, 3vw, 36px);
}

body.theme-handei .city-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.theme-handei .city-showcase__card {
  gap: 16px;
}

body.theme-handei .city-showcase__card h3 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
}

body.theme-handei .city-showcase__meta span {
  min-height: 36px;
  padding: 8px 12px;
  background: #f4f8f8;
}

body.page-home .section-home-app .app-download-band {
  padding: 10px;
  border-radius: 24px;
  background: #111518;
  box-shadow: none;
}

body.page-home .app-download-band__content,
body.page-home .app-download-band__visual {
  border-radius: 20px;
}

body.page-home .app-download-band__content {
  padding: 30px;
}

body.page-home .app-download-band__content h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
}

body.page-home .app-download-band__phone {
  width: min(100%, 280px);
  padding: 14px;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

body.theme-handei .split-copy h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
}

body.theme-handei .list {
  gap: 10px;
}

body.theme-handei .list li::before {
  width: 8px;
  height: 8px;
  margin-top: 9px;
}

body.page-ride .section-ride-form .contact-card {
  order: 2;
}

body.page-ride .section-ride-form .split-copy {
  order: 1;
}

body.page-ride .section-ride-form .split,
body.page-contact .section-contact-form .split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

body.theme-handei .contact-form label {
  font-size: 12px;
}

body.theme-handei .contact-form input,
body.theme-handei .contact-form select,
body.theme-handei .contact-form textarea {
  min-height: 54px;
  border: 1px solid #dfe8ec;
  border-radius: 16px;
  background: #ffffff;
}

body.theme-handei .cta-panel {
  gap: 16px;
  padding: 30px;
  border-radius: 24px;
  background: #f8fbfb;
}

body.theme-handei .cta-panel::after {
  display: none;
}

body.theme-handei .cta-panel h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

body.theme-handei .site-footer {
  margin-top: 28px;
  padding-bottom: 24px;
}

body.theme-handei .site-footer__shell {
  padding: 28px;
  border: 0;
  border-radius: 24px;
  background: #111518;
  box-shadow: none;
}

body.theme-handei .site-footer__top {
  gap: 28px;
}

body.theme-handei .site-footer__brand p,
body.theme-handei .site-footer__bottom,
body.theme-handei .site-footer__group a {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-handei .site-footer__group h3 {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.theme-handei .site-footer__bottom {
  gap: 12px;
}

@media (max-width: 1100px) {
  body.page-home .option-banner,
  body.theme-handei .story-grid,
  body.theme-handei .split,
  body.theme-handei .site-footer__top,
  body.page-ride .section-ride-form .split,
  body.page-contact .section-contact-form .split {
    grid-template-columns: 1fr;
  }

  body.page-home .section-home-options {
    margin-top: -42px;
  }

  body.page-home .option-banner__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.theme-handei .service-pillars,
  body.theme-handei .service-grid,
  body.theme-handei .contact-grid,
  body.theme-handei .stats-grid,
  body.theme-handei .feature-grid,
  body.theme-handei .values-grid,
  body.theme-handei .faq-grid,
  body.theme-handei .app-grid,
  body.theme-handei .city-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-ride .section-ride-form .contact-card,
  body.page-ride .section-ride-form .split-copy {
    order: initial;
  }
}

@media (max-width: 860px) {
  body.page-home .section-home-options {
    margin-top: -18px;
  }

  body.page-home .option-banner__grid,
  body.theme-handei .service-pillars,
  body.theme-handei .service-grid,
  body.theme-handei .contact-grid,
  body.theme-handei .stats-grid,
  body.theme-handei .feature-grid,
  body.theme-handei .values-grid,
  body.theme-handei .faq-grid,
  body.theme-handei .app-grid,
  body.theme-handei .city-showcase,
  body.theme-handei .field-grid,
  body.theme-handei .site-footer__links {
    grid-template-columns: 1fr;
  }

  body.theme-handei .page-hero__panel,
  body.theme-handei .story-panel,
  body.theme-handei .card,
  body.theme-handei .contact-card,
  body.theme-handei .faq-card,
  body.theme-handei .split-panel,
  body.theme-handei .service-pillar,
  body.theme-handei .city-showcase__card,
  body.theme-handei .mini-stat,
  body.theme-handei .cta-panel,
  body.theme-handei .site-footer__shell,
  body.page-home .option-banner,
  body.page-home .app-download-band__content,
  body.page-home .app-download-band__visual {
    padding: 22px;
    border-radius: 20px;
  }

  body.theme-handei .page-hero h1,
  body.page-home .option-banner__intro h2,
  body.theme-handei .story-panel h2,
  body.page-home .app-download-band__content h2,
  body.theme-handei .cta-panel h2 {
    max-width: none;
    font-size: clamp(28px, 9vw, 38px);
  }

  body.page-home .section-home-app .app-download-band {
    grid-template-columns: 1fr;
  }
}

body.theme-handei .page-visual {
  display: block;
}

body.theme-handei .page-visual--inline {
  margin-bottom: 24px;
}

body.theme-handei .page-visual__frame {
  overflow: hidden;
  border: 1px solid #edf1f3;
  border-radius: 22px;
  background: #f8fbfb;
}

body.theme-handei .page-visual__frame img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

body.page-home .why-handei-layout {
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

body.page-home .why-handei-layout .page-visual__frame img {
  aspect-ratio: 16 / 9;
}

body.page-home .section-home-driver {
  display: block;
}

body.page-home .section-home-driver__copy {
  max-width: 900px;
}

body.page-home .why-handei-copy {
  gap: 16px;
}

body.page-home .why-handei-copy p {
  margin: 0;
}

body.page-home .why-handei-features__head {
  margin-top: 28px;
}

body.page-home .why-handei-features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.theme-handei .city-showcase__media {
  overflow: hidden;
  margin: -24px -24px 0;
  border-bottom: 1px solid #edf1f3;
  border-radius: 22px 22px 0 0;
  background: #f8fbfb;
}

body.theme-handei .city-showcase__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 860px) {
  body.page-home .why-handei-layout {
    grid-template-columns: 1fr;
  }

  body.page-home .why-handei-features {
    grid-template-columns: 1fr;
  }

  body.theme-handei .city-showcase__media {
    margin: -22px -22px 0;
    border-radius: 20px 20px 0 0;
  }

  body.theme-handei .page-visual--inline {
    margin-bottom: 18px;
  }

  body.theme-handei .page-visual__frame {
    border-radius: 20px;
  }
}

/* 2026 clarity cleanup */
body.theme-handei {
  background:
    radial-gradient(circle at top left, rgba(6, 180, 197, 0.08), transparent 26%),
    linear-gradient(180deg, #f7fbfc 0%, #ffffff 24%, #f9fcfc 100%);
  color: #10181d;
}

body.theme-handei .site-header {
  background: rgba(249, 252, 252, 0.94);
  border-bottom: 1px solid #dfeaec;
  box-shadow: 0 10px 34px rgba(16, 24, 29, 0.04);
}

body.theme-handei .site-header__inner {
  min-height: 84px;
}

body.theme-handei .section {
  padding: clamp(56px, 7vw, 86px) 0;
}

body.theme-handei .section--tight {
  padding: clamp(40px, 5vw, 60px) 0;
}

body.theme-handei .page-hero {
  padding: clamp(32px, 5vw, 52px) 0 24px;
}

body.theme-handei .page-hero__panel,
body.theme-handei .card,
body.theme-handei .split-panel,
body.theme-handei .story-panel,
body.theme-handei .contact-card,
body.theme-handei .faq-card,
body.theme-handei .city-showcase__card,
body.theme-handei .mini-stat,
body.theme-handei .cta-panel,
body.theme-handei .page-visual__frame {
  border: 1px solid #dfeaec;
  border-top: 1px solid #dfeaec;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(16, 24, 29, 0.06);
}

body.theme-handei .page-hero__panel {
  background:
    radial-gradient(circle at top right, rgba(6, 180, 197, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfc 100%);
}

body.theme-handei .page-visual__frame {
  background:
    linear-gradient(180deg, #ffffff 0%, #f1f8fa 100%);
  overflow: hidden;
}

body.theme-handei .page-visual__frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body.theme-handei .page-hero h1,
body.theme-handei .section-head h2,
body.theme-handei .story-panel h2,
body.theme-handei .split-copy h2,
body.theme-handei .cta-panel h2,
body.theme-handei .legal-copy h2,
body.theme-handei .legal-copy h3 {
  color: #10181d;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

body.theme-handei .page-hero p,
body.theme-handei .section-head p,
body.theme-handei .card p,
body.theme-handei .split-copy p,
body.theme-handei .story-panel p,
body.theme-handei .legal-copy p,
body.theme-handei .legal-copy li,
body.theme-handei .contact-card p {
  color: #5d6a73;
  max-width: 64ch;
}

body.theme-handei .split-copy .list span,
body.theme-handei .story-panel .list span,
body.theme-handei .faq-card p {
  color: #223039;
}

body.theme-handei .chip {
  border-color: #dbe8ec;
  background: #f3f8f9;
  color: #20303a;
  box-shadow: none;
}

body.theme-handei .btn {
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
}

body.theme-handei .btn--primary,
body.theme-handei .site-nav__actions .btn--primary {
  border-color: #06b4c5;
  background: #06b4c5;
  color: #091316;
  box-shadow: 0 12px 28px rgba(6, 180, 197, 0.2);
}

body.theme-handei .btn--ghost,
body.theme-handei .site-nav__actions .btn--ghost {
  border-color: #cfdee4;
  background: #ffffff;
  color: #10181d;
}

body.theme-handei .btn--primary:hover,
body.theme-handei .btn--ghost:hover,
body.theme-handei .site-nav__actions .btn--primary:hover,
body.theme-handei .site-nav__actions .btn--ghost:hover {
  border-color: #10181d;
  background: #10181d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 24, 29, 0.14);
}

body.theme-handei .service-grid,
body.theme-handei .feature-grid,
body.theme-handei .values-grid,
body.theme-handei .faq-grid,
body.theme-handei .contact-grid,
body.theme-handei .city-showcase,
body.theme-handei .stats-grid,
body.theme-handei .app-grid {
  gap: 22px;
}

body.theme-handei .service-card,
body.theme-handei .feature-card,
body.theme-handei .value-card,
body.theme-handei .faq-card,
body.theme-handei .city-showcase__card {
  display: grid;
  gap: 12px;
}

body.theme-handei .text-link {
  color: #0b8ea0;
}

body.theme-handei .text-link::after {
  content: "->";
}

body.theme-handei .legal-grid {
  gap: 24px;
}

body.theme-handei .legal-copy {
  max-width: 76ch;
}

body.theme-handei .site-footer {
  margin-top: 40px;
  padding-bottom: 32px;
}

body.theme-handei .site-footer__shell {
  border-radius: 30px;
  border: 1px solid #11181d;
  background: linear-gradient(180deg, #10181d 0%, #162229 100%);
  box-shadow: 0 24px 60px rgba(16, 24, 29, 0.18);
}

body.theme-handei .site-footer__brand p,
body.theme-handei .site-footer__group a,
body.theme-handei .site-footer__bottom span {
  color: rgba(255, 255, 255, 0.74);
}

body.theme-handei .site-footer__group h3,
body.theme-handei .site-footer .brand__name {
  color: #ffffff;
}

body.page-home .hero-image-section__frame {
  overflow: hidden;
  border-radius: 0 0 34px 34px;
  background: #dfeef2;
}

body.page-home .hero-image-section__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

body.page-home .section-home-options {
  margin-top: 0;
  padding-top: 26px;
}

body.page-home .section-home-intro {
  margin-bottom: 24px;
}

body.page-home .section-home-driver__copy {
  max-width: none;
}

body.page-home .why-handei-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

body.page-home .why-handei-layout {
  display: block;
}

body.page-home .why-handei-copy {
  width: 100%;
  max-width: none;
}

body.page-home .why-handei-tool {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid #dfeaec;
  border-radius: 18px;
  background: #f7fbfc;
}

body.page-home .why-handei-tool__kicker {
  color: #71808a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.page-home .why-handei-tool h3 {
  margin: 0;
  font-family: var(--handei-font-heading);
  font-size: 22px;
  line-height: 1.08;
}

body.page-home .why-handei-tool p {
  margin: 0;
  color: #5d6a73;
}

body.page-home .service-pillar--with-image {
  gap: 16px;
  padding: 16px;
  align-content: start;
  background: #ffffff;
  color: #111111;
}

body.page-home .service-pillar--with-image::before {
  display: none;
}

body.page-home .service-pillar--with-image:nth-child(2) {
  background: #ffffff;
  color: #111111;
}

body.page-home .service-pillar__media {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 5 / 4;
  background: #dfeaec;
}

body.page-home .service-pillar__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-home .service-pillar__body {
  display: grid;
  gap: 10px;
  padding: 0 8px 8px;
}

body.page-home .service-pillar__body h3,
body.page-home .service-pillar__body p {
  margin: 0;
}

body.page-home .service-pillar--with-image p,
body.page-home .service-pillar--with-image:nth-child(2) p {
  color: #5d6a73;
}

body.page-home .app-download-band {
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0c1418 0%, #14222a 100%);
  box-shadow: 0 24px 56px rgba(16, 24, 29, 0.14);
}

body.page-home .app-download-band__content,
body.page-home .app-download-band__visual {
  border: 0;
  box-shadow: none;
}

body.page-home .app-download-band__content {
  background: transparent;
}

body.page-home .app-download-band__visual {
  background:
    radial-gradient(circle at top left, rgba(6, 180, 197, 0.26), transparent 34%),
    linear-gradient(180deg, #f3fafb 0%, #dfeef2 100%);
}

body.page-home .app-download-band__mockup {
  display: block;
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 26px 40px rgba(16, 24, 29, 0.18));
}

body.page-home .section-home-app .app-download-band {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 22px;
  padding: 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(6, 180, 197, 0.12), transparent 28%),
    linear-gradient(135deg, #0b1216 0%, #132129 100%);
}

body.page-home .app-download-band__content {
  display: grid;
  gap: 18px;
  padding: clamp(32px, 4vw, 48px);
}

body.page-home .app-download-band__content p {
  max-width: 56ch;
}

body.page-home .app-download-band__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.page-home .app-download-band__feature {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

body.page-home .app-download-band__feature strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

body.page-home .app-download-band__feature span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

body.page-home .app-download-band__note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

body.page-home .app-download-band__visual {
  position: relative;
  overflow: hidden;
  place-items: center;
  padding: 28px 22px;
  background:
    radial-gradient(circle at top left, rgba(6, 180, 197, 0.36), transparent 32%),
    radial-gradient(circle at bottom right, rgba(17, 17, 17, 0.08), transparent 42%),
    linear-gradient(180deg, #f4fbfc 0%, #deeff3 100%);
}

body.page-home .app-download-band__visual::before,
body.page-home .app-download-band__visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(6, 180, 197, 0.12);
}

body.page-home .app-download-band__visual::before {
  width: 180px;
  height: 180px;
  top: -48px;
  right: -36px;
}

body.page-home .app-download-band__visual::after {
  width: 140px;
  height: 140px;
  bottom: -44px;
  left: -26px;
}

body.page-home .app-download-band__mockup {
  position: relative;
  z-index: 2;
  width: min(100%, 338px);
  filter: drop-shadow(0 28px 46px rgba(16, 24, 29, 0.2));
}

body.page-home .app-download-band__badge {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(17, 24, 29, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #142028;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 16px 28px rgba(16, 24, 29, 0.08);
}

body.page-home .app-download-band__badge--top {
  top: 46px;
  left: 42px;
}

body.page-home .app-download-band__badge--bottom {
  right: 18px;
  bottom: 28px;
  max-width: 200px;
  border-radius: 20px;
}

@media (max-width: 860px) {
  body.theme-handei .page-hero__panel,
  body.theme-handei .card,
  body.theme-handei .split-panel,
  body.theme-handei .story-panel,
  body.theme-handei .contact-card,
  body.theme-handei .faq-card,
  body.theme-handei .city-showcase__card,
  body.theme-handei .cta-panel,
  body.theme-handei .page-visual__frame,
  body.theme-handei .site-footer__shell {
    border-radius: 22px;
  }

  body.page-home .hero-image-section__frame {
    border-radius: 0 0 24px 24px;
  }

  body.page-home .hero-image-section__frame img {
    aspect-ratio: 16 / 10;
  }

  body.page-home .why-handei-tools {
    grid-template-columns: 1fr;
  }

  body.page-home .service-pillar__media {
    aspect-ratio: 4 / 3;
  }

  body.page-home .section-home-app .app-download-band {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
  }

  body.page-home .app-download-band__features {
    grid-template-columns: 1fr;
  }

  body.page-home .app-download-band__visual {
    min-height: 0;
    padding: 22px 18px 28px;
  }

  body.page-home .app-download-band__mockup {
    width: min(100%, 278px);
  }

  body.page-home .app-download-band__badge {
    position: static;
    display: inline-flex;
    justify-self: center;
    margin: 0 0 10px;
  }

  body.page-home .app-download-band__badge--bottom {
    margin: 10px 0 0;
    max-width: none;
  }

  body.page-home .section-home-options {
    padding-top: 18px;
  }
}

/* 2026 inner-page polish */
body:not(.page-home) .page-hero__panel {
  max-width: 980px;
  padding: clamp(32px, 4vw, 48px);
}

body:not(.page-home) .page-hero__panel p {
  max-width: 60ch;
}

body:not(.page-home) .section {
  padding-block: clamp(48px, 6vw, 78px);
}

body:not(.page-home) .section--tight {
  padding-block: clamp(36px, 5vw, 56px);
}

body:not(.page-home) .service-grid,
body:not(.page-home) .feature-grid,
body:not(.page-home) .values-grid,
body:not(.page-home) .faq-grid,
body:not(.page-home) .stats-grid,
body:not(.page-home) .contact-grid,
body:not(.page-home) .city-showcase {
  gap: 18px;
}

body:not(.page-home) .card,
body:not(.page-home) .service-card,
body:not(.page-home) .feature-card,
body:not(.page-home) .value-card,
body:not(.page-home) .faq-card,
body:not(.page-home) .stat-card,
body:not(.page-home) .contact-card,
body:not(.page-home) .split-panel,
body:not(.page-home) .story-panel,
body:not(.page-home) .city-showcase__card,
body:not(.page-home) .cta-panel,
body.page-legal .legal-panel {
  display: grid;
  gap: 12px;
  align-content: start;
}

body.page-about .about-story-grid,
body.page-cities .split,
body.page-blog .split,
body.page-news .split,
body.page-how .split,
body.page-faq .split,
body.page-team .split {
  grid-template-columns: 1fr;
  gap: 18px;
}

body.page-about .about-story-grid {
  align-items: start;
}

body.page-contact .section-contact-form .split,
body.page-ride .section-ride-form .split {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 20px;
  align-items: start;
}

body.page-cities .city-showcase__media img,
body.page-city .page-visual__frame img {
  aspect-ratio: 16 / 8;
  object-position: center;
}

body.page-about .page-hero__panel,
body.page-blog .page-hero__panel,
body.page-news .page-hero__panel,
body.page-team .page-hero__panel,
body.page-faq .page-hero__panel,
body.page-how .page-hero__panel,
body.page-cities .page-hero__panel {
  max-width: 900px;
}

body:not(.page-home) .feature-card__kicker,
body:not(.page-home) .value-card__kicker {
  display: none;
}

body:not(.page-home) .feature-grid .feature-card,
body:not(.page-home) .values-grid .value-card {
  padding-top: 24px;
}

body.page-blog .service-card,
body.page-news .service-card,
body.page-about .service-card,
body.page-city .service-card {
  min-height: 100%;
}

body.page-blog .service-card .text-link,
body.page-news .service-card .text-link {
  display: inline-flex;
  margin-top: auto;
}

body.page-contact .contact-card,
body.page-ride .contact-card,
body.page-drive .contact-card {
  min-height: 100%;
}

body.page-contact .contact-card h3,
body.page-ride .contact-card h3,
body.page-drive .contact-card h3 {
  margin: 0;
}

body.page-legal .legal-grid {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

body.page-legal .legal-nav ul {
  display: grid;
  gap: 10px;
}

body.page-legal .legal-copy section + section {
  padding-top: 20px;
  border-top: 1px solid #edf1f3;
}

body.page-legal .legal-copy ul {
  margin-top: 0;
}

@media (max-width: 1100px) {
  body.page-contact .section-contact-form .split,
  body.page-ride .section-ride-form .split,
  body.page-legal .legal-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026 drive page redesign */
body.page-drive .page-drive-hero {
  padding: clamp(44px, 7vw, 88px) 0 40px;
}

body.page-drive .page-drive-hero__shell {
  display: block;
}

body.page-drive .page-drive-hero__copy,
body.page-drive .page-drive-apply__copy,
body.page-drive .page-drive-app__copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

body.page-drive .page-drive-hero__copy {
  max-width: 860px;
}

body.page-drive .page-drive-hero__copy h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

body.page-drive .page-drive-hero__copy p {
  max-width: 52ch;
  margin: 0;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.6;
}

body.page-drive .page-drive-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

body.page-drive .page-drive-hero__meta span {
  color: #4f5b63;
  font-size: 14px;
  font-weight: 700;
}

body.page-drive .page-drive-hero__visual {
  overflow: hidden;
  width: 100%;
  margin-top: clamp(28px, 4vw, 40px);
  background: #eef3ec;
  border-radius: 38px;
}

body.page-drive .page-drive-hero__visual img {
  display: block;
  width: 100%;
  height: clamp(420px, 58vw, 760px);
  object-fit: cover;
  object-position: center;
}

body.page-drive .eyebrow {
  margin-bottom: 8px;
  color: #4d5c51;
  letter-spacing: 0.14em;
}

body.page-drive .eyebrow::before {
  display: none;
}

body.page-drive .btn--primary,
body.page-drive .btn--ghost {
  min-height: 54px;
  padding: 14px 24px;
  box-shadow: none;
}

body.page-drive .btn--primary {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

body.page-drive .btn--ghost {
  border-color: #d9dfd8;
  background: #ffffff;
  color: #111111;
}

body.page-drive .btn--primary:hover {
  border-color: #2f5740;
  background: #2f5740;
  color: #ffffff;
}

body.page-drive .btn--ghost:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

body.page-drive .section {
  padding: clamp(78px, 8vw, 118px) 0;
}

body.page-drive .section--tight {
  padding: clamp(62px, 7vw, 98px) 0;
}

body.page-drive .page-drive-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

body.page-drive .page-drive-benefits__grid,
body.page-drive .page-drive-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

body.page-drive .page-drive-benefit-card {
  gap: 18px;
  min-height: 100%;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

body.page-drive .page-drive-benefit-card__media,
body.page-drive .page-drive-app__visual {
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

body.page-drive .page-drive-benefit-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.page-drive .page-drive-app__visual {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  box-shadow: none;
  transform: none;
  transition: none;
}

body.page-drive .page-drive-app__visual img {
  display: block;
  width: min(100%, 420px);
  aspect-ratio: auto;
  object-fit: contain;
}

body.page-drive .page-drive-app__visual:hover {
  border: 0;
  box-shadow: none;
  transform: none;
}

body.page-drive .page-drive-benefit-card__body {
  display: grid;
  gap: 12px;
  padding: 0 4px;
}

body.page-drive .page-drive-benefit-card__body h3,
body.page-drive .page-drive-benefit-card__body p {
  margin: 0;
}

body.page-drive .page-drive-steps .container {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 42px;
  background: #f3f7ef;
}

body.page-drive .page-drive-step-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid #dfeaec;
  background: #ffffff;
  box-shadow: none;
}

body.page-drive .page-drive-step-card__index,
body.page-drive .page-drive-apply__list > span,
body.page-drive .page-drive-app__flow-item > span {
  color: #4d5c51;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-drive .page-drive-step-card h3,
body.page-drive .page-drive-step-card p {
  margin: 0;
}

body.page-drive .page-drive-apply__layout,
body.page-drive .page-drive-app__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
}

body.page-drive .page-drive-apply__shell {
  padding: clamp(30px, 4vw, 46px);
  border-radius: 42px;
  background: var(--handei-accent);
}

body.page-drive .page-drive-apply__layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
  align-items: center;
}

body.page-drive .page-drive-app__layout {
  align-items: center;
}

body.page-drive .page-drive-apply__copy h2,
body.page-drive .page-drive-app__copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

body.page-drive .page-drive-apply__copy p,
body.page-drive .page-drive-app__copy p {
  margin: 0;
  max-width: 56ch;
}

body.page-drive .page-drive-apply__copy .eyebrow,
body.page-drive .page-drive-apply__copy h2,
body.page-drive .page-drive-apply__copy p {
  color: #111111;
}

body.page-drive .page-drive-apply__copy .eyebrow {
  opacity: 0.72;
}

body.page-drive .page-drive-apply__highlights,
body.page-drive .page-drive-app__flow {
  display: grid;
  gap: 0;
  margin-top: 8px;
}

body.page-drive .page-drive-apply__highlight,
body.page-drive .page-drive-app__flow-item {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 22px 0;
  border-top: 1px solid #d7dfd2;
}

body.page-drive .page-drive-apply__highlight:first-child {
  margin-top: 10px;
}

body.page-drive .page-drive-apply__highlight {
  border-top-color: rgba(17, 17, 17, 0.16);
}

body.page-drive .page-drive-apply__highlight > span,
body.page-drive .page-drive-app__flow-item > span {
  color: #4d5c51;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-drive .page-drive-apply__highlight p,
body.page-drive .page-drive-app__flow-item p {
  margin: 0;
  max-width: 44ch;
}

body.page-drive .page-drive-apply__highlight > span,
body.page-drive .page-drive-apply__highlight p {
  color: #111111;
}

body.page-drive .page-drive-signup {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 3vw, 36px);
  position: static;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: none;
}

body.page-drive .page-drive-signup h3,
body.page-drive .page-drive-signup p {
  margin: 0;
}

body.page-drive .drive-signup-form {
  display: grid;
  gap: 16px;
}

body.page-drive .drive-signup-form .field-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

body.page-drive .drive-signup-form label {
  margin-bottom: 10px;
  font-size: 13px;
}

body.page-drive .drive-signup-form input {
  min-height: 54px;
  border-color: #d8e0d3;
  border-radius: 16px;
  background: #f8faf6;
}

body.page-drive .drive-signup-form input::placeholder {
  color: #6c786b;
}

body.page-drive .drive-signup-form .btn--primary {
  width: 100%;
  min-height: 54px;
}

body.page-drive .page-drive-signup .contact-note {
  margin-top: -2px;
}

body.page-drive .page-drive-signup__apps {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #e1e8dc;
}

body.page-drive .page-drive-signup__apps h4,
body.page-drive .page-drive-signup__apps p {
  margin: 0;
}

body.page-drive .page-drive-signup__apps h4 {
  font-size: 18px;
  line-height: 1.2;
}

body.page-drive .page-drive-signup__apps p {
  color: #5f6c5f;
}

body.page-drive .page-drive-signup__app-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.page-drive .page-drive-faq .faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

body.page-drive .page-drive-faq .faq-card {
  min-height: 100%;
  padding: 0;
  border: 0;
  border-top: 1px solid #dfeaec;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-top: 26px;
}

body.page-drive .page-drive-faq .faq-card h3,
body.page-drive .page-drive-faq .faq-card p {
  margin: 0;
}

body.page-drive .page-drive-cta .cta-panel {
  border: 0;
  border-radius: 42px;
  background: #111111;
  box-shadow: none;
}

body.page-drive .page-drive-cta .cta-panel::before,
body.page-drive .page-drive-cta .cta-panel::after {
  display: none;
}

body.page-drive .page-drive-cta .cta-panel h2,
body.page-drive .page-drive-cta .cta-panel p,
body.page-drive .page-drive-cta .cta-panel .eyebrow {
  color: #ffffff;
}

body.page-drive .page-drive-cta .cta-panel .eyebrow {
  opacity: 0.78;
}

body.page-drive .page-drive-cta .cta-panel .btn--primary {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

body.page-drive .page-drive-cta .cta-panel .btn--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #ffffff;
}

body.page-drive .page-drive-cta .cta-panel .btn--primary:hover {
  border-color: #d7e4d5;
  background: #d7e4d5;
  color: #111111;
}

body.page-drive .page-drive-cta .cta-panel .btn--ghost:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

@media (max-width: 1100px) {
  body.page-drive .page-drive-benefits__grid,
  body.page-drive .page-drive-steps__grid,
  body.page-drive .page-drive-apply__layout,
  body.page-drive .page-drive-app__layout,
  body.page-drive .page-drive-faq .faq-grid {
    grid-template-columns: 1fr;
  }

  body.page-drive .page-drive-hero__copy h1,
  body.page-drive .page-drive-apply__copy h2,
  body.page-drive .page-drive-app__copy h2 {
    max-width: none;
  }

  body.page-drive .page-drive-steps .container {
    border-radius: 32px;
  }

  body.page-drive .page-drive-apply__shell {
    border-radius: 32px;
  }

  body.page-drive .page-drive-hero__visual img {
    height: clamp(360px, 52vw, 560px);
  }
}

@media (max-width: 860px) {
  body.page-drive .page-drive-apply__shell,
  body.page-drive .page-drive-signup {
    padding: 24px;
  }

  body.page-drive .drive-signup-form .field-grid {
    grid-template-columns: 1fr;
  }

  body.page-drive .page-drive-signup__app-links {
    grid-template-columns: 1fr;
  }

  body.page-drive .page-drive-apply__shell,
  body.page-drive .page-drive-signup,
  body.page-drive .page-drive-hero__visual,
  body.page-drive .page-drive-app__visual,
  body.page-drive .page-drive-cta .cta-panel {
    border-radius: 22px;
  }

  body.page-drive .page-drive-steps .container {
    padding: 22px;
    border-radius: 26px;
  }

  body.page-drive .page-drive-hero__visual img {
    height: 340px;
  }
}

body.page-about .about-page-hero {
  padding: clamp(44px, 7vw, 88px) 0 40px;
}

body.page-about .about-page-hero__shell {
  display: block;
}

body.page-about .about-layout,
body.page-about .about-direction {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

body.page-about .about-page-hero__copy,
body.page-about .about-copy-block,
body.page-about .about-direction__copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

body.page-about .about-page-hero__copy {
  max-width: 860px;
}

body.page-about .eyebrow {
  margin-bottom: 8px;
  color: #4d5c51;
  letter-spacing: 0.14em;
}

body.page-about .eyebrow::before {
  display: none;
}

body.page-about .btn--primary,
body.page-about .btn--ghost {
  min-height: 54px;
  padding: 14px 24px;
  box-shadow: none;
}

body.page-about .btn--primary {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

body.page-about .btn--ghost {
  border-color: #d9dfd8;
  background: #ffffff;
  color: #111111;
}

body.page-about .btn--primary:hover {
  border-color: #2f5740;
  background: #2f5740;
  color: #ffffff;
}

body.page-about .btn--ghost:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

body.page-about .about-page-hero__copy h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

body.page-about .about-page-hero__copy p {
  max-width: 52ch;
  margin: 0;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.6;
}

body.page-about .about-page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

body.page-about .about-page-hero__meta span {
  color: #4f5b63;
  font-size: 14px;
  font-weight: 700;
}

body.page-about .section {
  padding: clamp(78px, 8vw, 118px) 0;
}

body.page-about .section--tight {
  padding: clamp(62px, 7vw, 98px) 0;
}

body.page-about .about-media-block,
body.page-about .about-direction__media {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background: #eef3ec;
  box-shadow: none;
}

body.page-about .about-media-block img,
body.page-about .about-direction__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-about .about-media-block img,
body.page-about .about-direction__media img {
  aspect-ratio: 16 / 12;
}

body.page-about .about-page-hero__full-visual {
  position: relative;
  width: 100%;
  margin-top: clamp(28px, 4vw, 40px);
  overflow: hidden;
  background: #eef3ec;
}

body.page-about .about-page-hero__full-visual img {
  display: block;
  width: 100%;
  height: clamp(420px, 58vw, 760px);
  object-fit: cover;
  object-position: center;
}

body.page-about .about-copy-block h2,
body.page-about .about-direction__copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

body.page-about .about-copy-block p,
body.page-about .about-direction__copy p {
  margin: 0;
  max-width: 56ch;
}

body.page-about .about-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

body.page-about .section-about-focus .container {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 42px;
  background: #f3f7ef;
}

body.page-about .about-focus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

body.page-about .about-focus-card {
  gap: 18px;
  min-height: 100%;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

body.page-about .about-focus-card__media {
  overflow: hidden;
  border-radius: 28px;
  background: #dfe8de;
}

body.page-about .about-focus-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.page-about .about-focus-card__body {
  display: grid;
  gap: 12px;
  padding: 0 4px;
}

body.page-about .about-focus-card__index {
  display: inline-flex;
  width: fit-content;
  color: #4d5c51;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-about .about-focus-card h3 {
  margin: 0;
}

body.page-about .about-focus-card p {
  margin: 0;
}

body.page-about .about-direction {
  align-items: stretch;
  gap: clamp(32px, 5vw, 76px);
}

body.page-about .about-direction__copy {
  padding: clamp(10px, 2vw, 24px) 0;
}

body.page-about .about-direction__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid #dfeaec;
}

body.page-about .about-direction__columns span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #4d5c51;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-about .about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.page-about .about-principle {
  display: grid;
  gap: 12px;
  align-content: start;
  padding-top: 26px;
  border-top: 1px solid #dfeaec;
}

body.page-about .about-principle span {
  color: #4d5c51;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-about .about-principle h3,
body.page-about .about-principle p {
  margin: 0;
}

body.page-about .section-about-cta .cta-panel {
  border: 0;
  border-radius: 42px;
  background: #111111;
  box-shadow: none;
}

body.page-about .section-about-cta .cta-panel::before,
body.page-about .section-about-cta .cta-panel::after {
  display: none;
}

body.page-about .section-about-cta .cta-panel h2,
body.page-about .section-about-cta .cta-panel p,
body.page-about .section-about-cta .cta-panel .eyebrow {
  color: #ffffff;
}

body.page-about .section-about-cta .cta-panel .eyebrow {
  opacity: 0.78;
}

body.page-about .section-about-cta .cta-panel .btn--primary {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

body.page-about .section-about-cta .cta-panel .btn--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #ffffff;
}

body.page-about .section-about-cta .cta-panel .btn--primary:hover {
  border-color: #d7e4d5;
  background: #d7e4d5;
  color: #111111;
}

body.page-about .section-about-cta .cta-panel .btn--ghost:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

@media (max-width: 1100px) {
  body.page-about .about-layout,
  body.page-about .about-direction,
  body.page-about .about-focus-grid,
  body.page-about .about-principles {
    grid-template-columns: 1fr;
  }

  body.page-about .about-page-hero__copy h1,
  body.page-about .about-copy-block h2,
  body.page-about .about-direction__copy h2 {
    max-width: none;
  }

  body.page-about .section-about-focus .container {
    border-radius: 32px;
  }

  body.page-about .about-page-hero__full-visual img {
    height: clamp(360px, 52vw, 560px);
  }
}

@media (max-width: 860px) {
  body.page-about .about-page-hero {
    padding-top: 28px;
  }

  body.page-about .about-media-block,
  body.page-about .about-direction__media,
  body.page-about .section-about-cta .cta-panel {
    border-radius: 26px;
  }

  body.page-about .section-about-focus .container {
    padding: 22px;
    border-radius: 26px;
  }

  body.page-about .about-page-hero__full-visual img {
    height: 340px;
  }

  body.page-about .about-direction__columns {
    grid-template-columns: 1fr;
  }
}

body.theme-handei .site-footer {
  margin-top: 64px;
  padding: 24px 0 28px;
}

body.theme-handei .site-footer__shell {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid #263038;
  border-radius: 36px;
  background: #11181d;
  box-shadow: none;
}

body.theme-handei .site-footer__masthead {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-handei .site-footer__brand {
  display: grid;
  gap: 18px;
}

body.theme-handei .site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

body.theme-handei .site-footer .brand__mark {
  width: 64px;
  height: 64px;
}

body.theme-handei .site-footer__brand-name {
  color: #ffffff;
  font-family: var(--handei-font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

body.theme-handei .site-footer__brand p {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

body.theme-handei .site-footer__actions {
  display: grid;
  gap: 18px;
  align-content: start;
}

body.theme-handei .site-footer__downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.theme-handei .site-footer__download-link {
  display: grid;
  gap: 6px;
  min-height: 102px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.theme-handei .site-footer__download-link:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

body.theme-handei .site-footer__download-meta {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.theme-handei .site-footer__download-link strong {
  color: #ffffff;
  font-family: var(--handei-font-heading);
  font-size: 22px;
  line-height: 1.12;
}

body.theme-handei .site-footer__utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.theme-handei .site-footer__locale {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

body.theme-handei .site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.theme-handei .site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.theme-handei .site-footer__social-link:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #11181d;
  transform: translateY(-2px);
}

body.theme-handei .site-footer__social-link svg {
  width: 18px;
  height: 18px;
}

body.theme-handei .site-footer__social-link svg rect,
body.theme-handei .site-footer__social-link svg circle,
body.theme-handei .site-footer__social-link svg path {
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

body.theme-handei .site-footer__social-link[data-icon="facebook"] svg path {
  fill: currentColor;
  stroke: none;
}

body.theme-handei .site-footer__links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding: 32px 0;
}

body.theme-handei .site-footer__group {
  display: grid;
  align-content: start;
  gap: 12px;
}

body.theme-handei .site-footer__group h3 {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

body.theme-handei .site-footer__group ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.theme-handei .site-footer__group a,
body.theme-handei .site-footer__legal a,
body.theme-handei .site-footer__bottom span {
  color: rgba(255, 255, 255, 0.72);
}

body.theme-handei .site-footer__group a,
body.theme-handei .site-footer__legal a {
  font-size: 15px;
  line-height: 1.5;
}

body.theme-handei .site-footer__group a:hover,
body.theme-handei .site-footer__legal a:hover {
  color: #ffffff;
}

body.theme-handei .site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

body.theme-handei .site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

@media (max-width: 1100px) {
  body.theme-handei .site-footer__masthead {
    grid-template-columns: 1fr;
  }

  body.theme-handei .site-footer__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body.theme-handei .site-footer__shell {
    padding: 24px;
    border-radius: 28px;
  }

  body.theme-handei .site-footer__downloads,
  body.theme-handei .site-footer__links {
    grid-template-columns: 1fr 1fr;
  }

  body.theme-handei .site-footer__utility,
  body.theme-handei .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  body.theme-handei .site-footer__downloads,
  body.theme-handei .site-footer__links {
    grid-template-columns: 1fr;
  }
}

/* 2026 shared content page system */
.clean-page-hero {
  padding: clamp(44px, 7vw, 88px) 0 34px;
}

.clean-page-hero__layout,
.clean-page-overview__layout,
.clean-page-form-shell__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.clean-page-hero__copy,
.clean-page-overview__copy,
.clean-page-overview__side,
.clean-page-form-shell__copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.clean-page-hero__copy h1,
.clean-page-section-head h2,
.clean-page-overview__copy h2,
.clean-page-form-shell__copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.clean-page-hero__copy h1 {
  max-width: 12ch;
}

.clean-page-hero__copy p,
.clean-page-section-head p,
.clean-page-overview__copy p,
.clean-page-form-shell__copy p {
  margin: 0;
  max-width: 58ch;
}

.clean-page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.clean-page-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3f7ef;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.clean-page-hero__media,
.clean-page-overview,
.clean-page-form-shell,
.clean-page-article,
.clean-page-support-card,
.clean-page-city-card,
.clean-page-side-card,
.clean-page-topic,
.clean-page-role-card,
.clean-page-faq-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: none;
}

.clean-page-hero__media,
.clean-page-card__media {
  overflow: hidden;
  background: #eef5f7;
}

.clean-page-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.clean-page-hero__media--contain {
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 40px);
}

.clean-page-hero__media--contain img {
  width: min(100%, 420px);
  aspect-ratio: auto;
  object-fit: contain;
}

.clean-page-section-head {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 28px;
}

.clean-page-article-grid,
.clean-page-support-grid,
.clean-page-city-grid,
.clean-page-topic-grid,
.clean-page-role-grid,
.clean-page-faq-grid {
  display: grid;
  gap: 20px;
}

.clean-page-article-grid,
.clean-page-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clean-page-city-grid,
.clean-page-role-grid,
.clean-page-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.clean-page-article,
.clean-page-city-card {
  overflow: hidden;
}

.clean-page-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.clean-page-card__body,
.clean-page-support-card,
.clean-page-side-card,
.clean-page-topic,
.clean-page-role-card,
.clean-page-faq-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 24px;
}

.clean-page-card__body h3,
.clean-page-support-card h3,
.clean-page-city-card h3,
.clean-page-side-card h3,
.clean-page-role-card h3,
.clean-page-faq-card h3,
.clean-page-topic h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

.clean-page-card__body p,
.clean-page-support-card p,
.clean-page-city-card p,
.clean-page-side-card p,
.clean-page-role-card p,
.clean-page-faq-card p,
.clean-page-topic p {
  margin: 0;
}

.clean-page-card__eyebrow,
.clean-page-side-card span,
.clean-page-topic span,
.clean-page-role-card span {
  color: #4d5c51;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.clean-page-card__body .text-link {
  display: inline-flex;
  margin-top: auto;
}

.clean-page-overview,
.clean-page-form-shell {
  padding: clamp(28px, 4vw, 44px);
  background: #f6fbfc;
}

.clean-page-overview__copy .list,
.clean-page-form-shell__copy .list {
  margin: 0;
}

.clean-page-form-shell .contact-card {
  display: grid;
  gap: 16px;
  min-height: 0;
  padding: clamp(26px, 3vw, 34px);
}

.clean-page-form-shell .contact-card h3,
.clean-page-form-shell .contact-card p,
.clean-page-form-shell .contact-note {
  margin: 0;
}

.clean-page-form-shell .contact-form {
  display: grid;
  gap: 14px;
}

.clean-page-form-shell .field-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.clean-page-form-shell .contact-form input,
.clean-page-form-shell .contact-form select,
.clean-page-form-shell .contact-form textarea {
  background: #ffffff;
}

.clean-page-cta .cta-panel {
  border-radius: 42px;
}

@media (max-width: 1100px) {
  .clean-page-hero__layout,
  .clean-page-overview__layout,
  .clean-page-form-shell__layout,
  .clean-page-article-grid,
  .clean-page-support-grid,
  .clean-page-city-grid,
  .clean-page-topic-grid,
  .clean-page-role-grid,
  .clean-page-faq-grid {
    grid-template-columns: 1fr;
  }

  .clean-page-hero__copy h1 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .clean-page-hero__media,
  .clean-page-overview,
  .clean-page-form-shell,
  .clean-page-article,
  .clean-page-support-card,
  .clean-page-city-card,
  .clean-page-side-card,
  .clean-page-topic,
  .clean-page-role-card,
  .clean-page-faq-card,
  .clean-page-cta .cta-panel {
    border-radius: 22px;
  }

  .clean-page-overview,
  .clean-page-form-shell {
    padding: 24px;
  }

  .clean-page-form-shell .field-grid {
    grid-template-columns: 1fr;
  }

  .clean-page-card__body,
  .clean-page-support-card,
  .clean-page-side-card,
  .clean-page-topic,
  .clean-page-role-card,
  .clean-page-faq-card {
    padding: 22px;
  }
}

/* 2026 article detail pages */
.article-page {
  padding: clamp(44px, 7vw, 88px) 0 34px;
}

.article-page__hero {
  display: grid;
  gap: 22px;
}

.article-page__hero-copy {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.article-page__hero-copy h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.article-page__hero-copy p {
  margin: 0;
  max-width: 60ch;
}

.article-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-page__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3f7ef;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.article-page__cover {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  background: #eef5f7;
}

.article-page__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.article-page__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.article-page__prose,
.article-page__sidecard {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: none;
}

.article-page__prose {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 4vw, 40px);
}

.article-page__prose section {
  display: grid;
  gap: 12px;
}

.article-page__prose section + section {
  padding-top: 24px;
  border-top: 1px solid #edf1f3;
}

.article-page__prose h2,
.article-page__prose h3,
.article-page__sidecard h3 {
  margin: 0;
}

.article-page__prose p,
.article-page__prose ul,
.article-page__sidecard p,
.article-page__sidecard ul {
  margin: 0;
}

.article-page__prose ul,
.article-page__sidecard ul {
  padding-left: 18px;
}

.article-page__aside {
  display: grid;
  gap: 16px;
}

.article-page__sidecard {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.article-page__sidecard span {
  color: #4d5c51;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-page__related {
  display: grid;
  gap: 20px;
}

@media (max-width: 1100px) {
  .article-page__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .article-page__cover,
  .article-page__prose,
  .article-page__sidecard {
    border-radius: 22px;
  }

  .article-page__prose,
  .article-page__sidecard {
    padding: 24px;
  }

  .article-page__cover img {
    aspect-ratio: 16 / 10;
  }
}

/* 2026 global motion and visual polish */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body.motion-enabled [data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  backface-visibility: hidden;
}

body.motion-enabled [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  will-change: opacity, transform;
}

body.motion-enabled [data-reveal="soft"]:not(.is-visible) {
  transform: translate3d(0, 18px, 0);
}

body.motion-enabled [data-reveal="media"]:not(.is-visible) {
  transform: translate3d(0, 22px, 0) scale(0.985);
}

body.motion-enabled [data-reveal="rise"]:not(.is-visible) {
  transform: translate3d(0, 20px, 0);
}

body.motion-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

body.theme-handei .site-header {
  backdrop-filter: none;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

body.theme-handei .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(16, 24, 29, 0.06);
  backdrop-filter: none;
}

body.theme-handei .page-hero,
.clean-page-hero,
.article-page,
body.page-about .about-page-hero,
body.page-drive .page-drive-hero {
  position: relative;
  overflow: clip;
}

body.theme-handei .page-hero::after,
.clean-page-hero::after,
.article-page::after,
body.page-about .about-page-hero::after,
body.page-drive .page-drive-hero::after {
  content: "";
  position: absolute;
  top: 4%;
  right: -8%;
  width: min(38vw, 420px);
  height: min(38vw, 420px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(6, 180, 197, 0.14) 0%, rgba(6, 180, 197, 0) 72%);
  pointer-events: none;
  opacity: 0.7;
}

body.theme-handei .page-hero > *,
.clean-page-hero > *,
.article-page > *,
body.page-about .about-page-hero > *,
body.page-drive .page-drive-hero > * {
  position: relative;
  z-index: 1;
}

body.theme-handei .service-pillar,
body.theme-handei .service-card,
body.theme-handei .feature-card,
body.theme-handei .faq-card,
body.theme-handei .city-showcase__card,
body.theme-handei .mini-stat,
body.theme-handei .card,
body.theme-handei .story-panel,
body.theme-handei .option-banner__card,
body.theme-handei .contact-card,
body.theme-handei .booking-card,
.clean-page-article,
.clean-page-support-card,
.clean-page-city-card,
.clean-page-side-card,
.clean-page-topic,
.clean-page-role-card,
.clean-page-faq-card,
.clean-page-overview,
.clean-page-form-shell,
.article-page__prose,
.article-page__sidecard,
body.page-drive .page-drive-step-card,
body.page-drive .page-drive-benefit-card,
body.page-drive .page-drive-signup,
body.page-drive .page-drive-app__visual,
body.page-about .about-focus-card,
body.page-about .about-copy-block,
body.page-about .about-journey-card,
body.page-about .about-direction,
body.page-about .about-principle {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background-color 0.32s ease;
}

body.theme-handei .service-pillar:hover,
body.theme-handei .service-card:hover,
body.theme-handei .feature-card:hover,
body.theme-handei .faq-card:hover,
body.theme-handei .city-showcase__card:hover,
body.theme-handei .mini-stat:hover,
body.theme-handei .card:hover,
body.theme-handei .story-panel:hover,
body.theme-handei .option-banner__card:hover,
body.theme-handei .contact-card:hover,
body.theme-handei .booking-card:hover,
.clean-page-article:hover,
.clean-page-support-card:hover,
.clean-page-city-card:hover,
.clean-page-side-card:hover,
.clean-page-topic:hover,
.clean-page-role-card:hover,
.clean-page-faq-card:hover,
.article-page__sidecard:hover,
body.page-drive .page-drive-step-card:hover,
body.page-drive .page-drive-benefit-card:hover,
body.page-drive .page-drive-app__visual:hover,
body.page-about .about-focus-card:hover,
body.page-about .about-journey-card:hover,
body.page-about .about-principle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(16, 24, 29, 0.07);
  border-color: #d4e7eb;
}

body.theme-handei .service-pillar__media img,
body.theme-handei .city-showcase__media img,
body.theme-handei .city-grid__card img,
body.theme-handei .feature-card img,
body.theme-handei .option-banner__media img,
body.page-home .service-pillar__media img,
body.theme-handei .page-visual__frame img,
.clean-page-card__media img,
.clean-page-hero__media img,
.article-page__cover img,
body.page-drive .page-drive-benefit-card__media img,
body.page-drive .page-drive-app__visual img,
body.page-about .about-page-hero__full-visual img,
body.page-about .about-focus-card__media img {
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

body.theme-handei .service-pillar:hover .service-pillar__media img,
body.theme-handei .city-showcase__card:hover .city-showcase__media img,
body.theme-handei .city-grid__card:hover img,
body.theme-handei .feature-card:hover img,
body.theme-handei .option-banner__card:hover .option-banner__media img,
body.page-home .service-pillar:hover .service-pillar__media img,
body.theme-handei .page-visual__frame:hover img,
.clean-page-article:hover .clean-page-card__media img,
.clean-page-city-card:hover .clean-page-card__media img,
.clean-page-hero__media:hover img,
.article-page__cover:hover img,
body.page-drive .page-drive-benefit-card:hover .page-drive-benefit-card__media img,
body.page-drive .page-drive-app__visual:hover img,
body.page-about .about-page-hero__full-visual:hover img,
body.page-about .about-focus-card:hover .about-focus-card__media img {
  transform: scale(1.018);
}

body.theme-handei .btn,
body.theme-handei .text-link,
body.theme-handei .nav-menu__link,
body.theme-handei .nav-menu__dropdown-link,
body.theme-handei .site-footer__social-link,
body.theme-handei .site-footer__download-link {
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

body.theme-handei .btn:hover,
body.theme-handei .site-footer__download-link:hover {
  transform: translateY(-1px);
}

body.theme-handei .site-footer__masthead,
body.theme-handei .site-footer__bottom,
body.theme-handei .site-footer__group,
body.theme-handei .site-footer__group a,
body.theme-handei .site-footer__legal a,
body.theme-handei .site-footer__social-link,
body.theme-handei .site-footer__download-link {
  animation: none;
  transition: none;
}

body.theme-handei .site-footer__download-link:hover,
body.theme-handei .site-footer__social-link:hover {
  transform: none;
}

body.theme-handei main > section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

body.theme-handei main > section:first-child {
  content-visibility: visible;
}

body.theme-handei .cta-panel,
body.page-drive .page-drive-signup,
body.page-about .about-direction,
.clean-page-cta .cta-panel {
  position: relative;
  isolation: isolate;
}

body.theme-handei .cta-panel::after,
body.page-drive .page-drive-signup::after,
body.page-about .about-direction::after,
.clean-page-cta .cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: min(34vw, 340px);
  height: min(34vw, 340px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 860px) {
  body.theme-handei .page-hero::after,
  .clean-page-hero::after,
  .article-page::after,
  body.page-about .about-page-hero::after,
  body.page-drive .page-drive-hero::after {
    width: 240px;
    height: 240px;
    right: -18%;
    top: 2%;
  }

  body.theme-handei .service-pillar:hover,
  body.theme-handei .service-card:hover,
  body.theme-handei .feature-card:hover,
  body.theme-handei .faq-card:hover,
  body.theme-handei .city-showcase__card:hover,
  body.theme-handei .mini-stat:hover,
  body.theme-handei .card:hover,
  body.theme-handei .story-panel:hover,
  body.theme-handei .option-banner__card:hover,
  body.theme-handei .contact-card:hover,
  body.theme-handei .booking-card:hover,
  .clean-page-article:hover,
  .clean-page-support-card:hover,
  .clean-page-city-card:hover,
  .clean-page-side-card:hover,
  .clean-page-topic:hover,
  .clean-page-role-card:hover,
  .clean-page-faq-card:hover,
  .article-page__sidecard:hover,
  body.page-drive .page-drive-step-card:hover,
  body.page-drive .page-drive-benefit-card:hover,
  body.page-drive .page-drive-app__visual:hover,
  body.page-about .about-focus-card:hover,
  body.page-about .about-journey-card:hover,
  body.page-about .about-principle:hover {
    transform: none;
    box-shadow: 0 12px 24px rgba(16, 24, 29, 0.06);
  }
}
