:root {
  --color-ink: #101827;
  --color-muted: #657084;
  --color-soft: #f7f8fa;
  --color-surface: #ffffff;
  --color-subtle: #f0f2f5;
  --color-line: #e5e8ee;
  --color-primary: #111827;
  --color-book: #d94735;
  --color-success: #19a853;
  --color-success-soft: #eaf9ef;
  --color-blue: #2f68e8;
  --color-warning: #d1422f;
  --shadow-panel: 0 22px 64px rgb(15 23 42 / 14%);
  --shadow-card: 0 12px 34px rgb(15 23 42 / 8%);
  --radius-card: 8px;
  --radius-control: 8px;
  --max-content-width: 1240px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-soft);
  color: var(--color-ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(16px, 3vw, 34px);
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  font-size: 1.18rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand > span:last-child span {
  color: var(--color-book);
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-surface);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.header-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.header-nav {
  justify-content: flex-end;
}

.header-nav a:hover,
.text-action:hover {
  color: var(--color-ink);
}

.book-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-control);
  background: var(--color-book);
  color: var(--color-surface);
  padding: 0 18px;
  font-weight: 900;
}

.hero-section {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(92px, 14vh, 210px) clamp(16px, 4vw, 48px) clamp(70px, 10vh, 120px);
  background: linear-gradient(180deg, #fbfbfc 0%, #f7f8fa 100%);
}

.live-pill {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  color: var(--color-muted);
  padding: 0 18px;
  font-size: 0.92rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgb(34 197 94 / 12%);
}

.hero-layout {
  width: min(var(--max-content-width), 100%);
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-card {
  min-height: 520px;
  display: grid;
  align-content: end;
  gap: 18px;
  border-radius: var(--radius-card);
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 28%) 0%, rgb(0 0 0 / 72%) 100%),
    url("/assets/antalya-transfer-hero.png") center / cover no-repeat;
  color: var(--color-surface);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

.hero-kicker {
  width: fit-content;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  background: rgb(17 24 39 / 62%);
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h1 {
  max-width: 620px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.hero-card p:not(.hero-kicker) {
  max-width: 620px;
  color: rgb(255 255 255 / 84%);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: var(--radius-control);
  background: rgb(255 255 255 / 8%);
  padding: 0 12px;
  font-size: 0.88rem;
  font-weight: 900;
}

.hero-badges li:nth-child(n + 2) {
  border-color: rgb(25 168 83 / 48%);
  background: rgb(25 168 83 / 36%);
}

.quote-panel,
.flow-panel,
.summary-panel,
.profile-panel,
.account-dashboard article,
.route-card,
.need-help,
.policy-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-surface);
}

.quote-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-panel);
}

.panel-title-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.panel-title-row h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.panel-title-row p,
.quote-note,
.section-heading p,
.summary-panel span,
.summary-panel small,
.route-card small,
.route-card p,
.steps-grid p,
.text-content-section p,
.account-dashboard p,
.request-list span {
  color: var(--color-muted);
}

.instant-badge {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--color-success-soft);
  color: var(--color-success);
  padding: 0 12px;
  font-weight: 900;
}

.route-input-group {
  position: relative;
  display: grid;
  gap: 8px;
}

.route-input-group::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 18px;
  width: 2px;
  background: var(--color-primary);
  content: "";
}

label {
  display: grid;
  gap: 7px;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.location-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
  background: var(--color-subtle);
  color: var(--color-ink);
  padding: 11px 13px;
  outline: none;
}

.location-field input {
  min-height: 58px;
  padding-left: 46px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgb(17 24 39 / 10%);
}

textarea {
  resize: vertical;
}

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

.trip-type-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  border: 0;
  border-radius: var(--radius-control);
  background: var(--color-subtle);
  padding: 5px;
}

.trip-type-selector legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.trip-type-selector label {
  cursor: pointer;
}

.trip-type-selector input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trip-type-selector span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius-control) - 3px);
  color: var(--color-muted);
  font-weight: 900;
}

.trip-type-selector input:checked + span {
  background: var(--color-surface);
  color: var(--color-ink);
  box-shadow: 0 1px 4px rgb(15 23 42 / 12%);
}

.trip-type-selector input:focus-visible + span {
  outline: 3px solid rgb(17 24 39 / 18%);
}

.passenger-stepper {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  border-radius: var(--radius-control);
  background: var(--color-subtle);
  padding: 8px 12px;
  color: var(--color-ink);
  font-weight: 900;
}

.stepper-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: var(--radius-control);
  background: var(--color-primary);
  color: var(--color-surface);
  font-size: 1.1rem;
  font-weight: 900;
}

.primary-button,
.continue-button,
.center-button,
.secondary-button {
  min-height: 54px;
  border: 0;
  border-radius: var(--radius-control);
  font-weight: 900;
}

.primary-button,
.continue-button {
  background: #000000;
  color: var(--color-surface);
}

.secondary-action,
.whatsapp-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
  background: var(--color-surface);
  color: var(--color-muted);
  font-weight: 900;
}

.quote-note {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}

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

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

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

.trust-row {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  color: var(--color-muted);
  font-weight: 800;
}

.trust-row span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.booking-flow {
  border-top: 1px solid var(--color-line);
  padding: 0 clamp(16px, 4vw, 48px) 96px;
  background: var(--color-soft);
}

.flow-steps {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(980px, 100%);
  margin: 0 auto 28px;
  padding: 18px 0;
  background: rgb(247 248 250 / 92%);
  backdrop-filter: blur(12px);
}

.flow-step {
  min-height: 42px;
  border: 0;
  border-bottom: 3px solid var(--color-line);
  background: transparent;
  color: var(--color-muted);
  font-weight: 900;
}

.flow-step.is-active,
.flow-step.is-complete {
  border-color: #22c55e;
  color: var(--color-success);
}

.flow-shell {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
  margin: 0 auto;
}

.flow-main {
  display: grid;
  gap: 18px;
}

.flow-panel {
  padding: 22px;
}

.flow-panel[data-step-panel="details"] {
  display: grid;
  gap: 18px;
}

.flow-panel[data-step-panel="details"] .section-heading.compact,
.flow-panel[data-step-panel="details"] .special-request {
  margin: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.compact {
  margin: 20px 0 14px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading h3 {
  font-size: 1.25rem;
}

.vehicle-thumb {
  width: 78px;
  aspect-ratio: 1.55;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgb(17 24 39 / 42%), rgb(17 24 39 / 12%)),
    url("/assets/antalya-transfer-hero.png") center / cover no-repeat;
}

.need-help {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.need-help article {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  padding: 16px;
  text-align: center;
}

.need-help span {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.policy-panel,
.need-help {
  margin-top: 18px;
  padding: 18px;
}

.policy-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.policy-panel li,
.summary-checks li {
  color: var(--color-muted);
}

.policy-panel li::before,
.summary-checks li::before {
  color: var(--color-success);
  content: "✓ ";
  font-weight: 900;
}

.loyalty-note {
  display: grid;
  gap: 6px;
  border: 1px solid rgb(25 168 83 / 24%);
  border-radius: var(--radius-card);
  background: var(--color-success-soft);
  color: #14763d;
  padding: 16px;
  font-weight: 800;
}

.loyalty-note span {
  color: #318153;
  font-size: 0.9rem;
}

.loyalty-note a {
  width: fit-content;
  color: #14763d;
  text-decoration: underline;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-ink);
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--color-success);
}

.flight-toggle-row {
  min-height: 50px;
  border: 1px solid var(--color-line);
  align-items: center;
  background: var(--color-subtle);
  border-radius: var(--radius-control);
  padding: 12px;
}

.flight-toggle-row small {
  display: block;
  color: var(--color-muted);
  font-weight: 700;
}

.special-request {
  margin-top: 18px;
}

.payment-options {
  display: grid;
  gap: 12px;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  padding: 16px;
  color: var(--color-ink);
}

.payment-option input {
  width: 18px;
  min-height: 18px;
}

.payment-option small {
  display: block;
  color: var(--color-muted);
}

.payment-option.is-selected {
  border-color: #22c55e;
  background: var(--color-success-soft);
}

.payment-option.is-disabled {
  opacity: 0.48;
}

.terms-row {
  margin-top: 18px;
}

.summary-panel {
  position: sticky;
  top: calc(var(--header-height) + 90px);
  display: grid;
  gap: 14px;
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.summary-heading,
.summary-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.summary-heading span {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 900;
}

.link-button {
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-weight: 900;
}

.route-timeline {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 14px 0;
}

.route-timeline div {
  display: grid;
  gap: 3px;
}

.route-timeline span,
.summary-section span {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-vehicle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.summary-checks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--color-line);
  list-style: none;
}

.flow-sticky {
  position: sticky;
  bottom: 18px;
  z-index: 30;
  width: min(720px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 26px auto 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: rgb(255 255 255 / 94%);
  box-shadow: var(--shadow-panel);
  padding: 12px;
  backdrop-filter: blur(12px);
}

.back-button {
  min-height: 48px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
  background: var(--color-surface);
  color: var(--color-muted);
  font-weight: 900;
}

.back-button[hidden] + .continue-button {
  grid-column: 1 / -1;
}

.whatsapp-cta {
  min-width: 120px;
  border-color: rgb(25 168 83 / 35%);
  background: var(--color-success);
  color: var(--color-surface);
}

.content-section,
.comparison-section,
.text-content-section {
  width: min(var(--max-content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0 0;
}

.route-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-card {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 24px;
}

.route-card h3 {
  font-size: 1.25rem;
}

.route-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--color-line);
  padding-top: 16px;
}

.route-card button {
  border: 0;
  background: transparent;
  color: var(--color-blue);
  font-weight: 900;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  border-radius: 999px;
  background: #fbbf24;
  color: #7a4b00;
  padding: 5px 11px;
  font-size: 0.78rem;
  font-weight: 900;
}

.comparison-section {
  display: grid;
  justify-items: center;
}

.comparison-table {
  width: min(900px, 100%);
  display: grid;
  border-top: 1px solid var(--color-line);
}

.comparison-table div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--color-line);
  padding: 20px;
}

.comparison-table span:nth-child(2) {
  color: var(--color-muted);
}

.positive {
  color: var(--color-success);
  font-weight: 900;
}

.center-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  background: var(--color-success);
  color: var(--color-surface);
  padding: 0 34px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  text-align: center;
}

.steps-grid article {
  display: grid;
  gap: 14px;
}

.steps-grid span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: var(--radius-card);
  background: #e7f0ff;
  color: var(--color-blue);
  font-weight: 900;
}

.steps-grid article:nth-child(2) span {
  background: var(--color-success-soft);
  color: var(--color-success);
}

.steps-grid article:nth-child(3) span {
  background: #fff3c9;
  color: #c66c00;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-surface);
  padding: 44px clamp(16px, 4vw, 48px);
  text-align: center;
}

.stats-strip div {
  display: grid;
  gap: 4px;
}

.stats-strip strong {
  color: var(--color-blue);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stats-strip div:nth-child(2) strong {
  color: var(--color-success);
}

.stats-strip div:nth-child(3) strong {
  color: #d97706;
}

.stats-strip div:nth-child(4) strong {
  color: #8b5cf6;
}

.stats-strip span {
  color: var(--color-muted);
  font-weight: 900;
  text-transform: uppercase;
}

.text-content-section {
  max-width: 1180px;
  display: grid;
  gap: 22px;
  padding-bottom: clamp(70px, 9vw, 120px);
}

.text-content-section h2 {
  margin-top: 22px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.text-content-section p {
  max-width: 1120px;
  font-size: 1.05rem;
}

.account-section {
  position: relative;
  display: grid;
  gap: 24px;
  padding-bottom: clamp(70px, 9vw, 120px);
}

.section-kicker {
  color: var(--color-book) !important;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loyalty-promise {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-line);
}

.loyalty-promise article {
  display: grid;
  gap: 4px;
  min-height: 110px;
  align-content: center;
  background: var(--color-surface);
  padding: 20px;
}

.loyalty-promise strong {
  color: var(--color-book);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.loyalty-promise span {
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.account-guest {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: start;
}

.auth-story {
  min-height: 100%;
  display: grid;
  gap: 20px;
  align-content: center;
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 92% 8%, rgb(217 71 53 / 38%), transparent 32%),
    var(--color-primary);
  color: var(--color-surface);
  padding: clamp(26px, 4vw, 48px);
}

.auth-story h3 {
  max-width: 520px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.auth-story p,
.auth-story ol {
  color: rgb(255 255 255 / 72%);
}

.auth-story ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  font-weight: 800;
}

.auth-badge {
  width: fit-content;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  background: rgb(255 255 255 / 9%);
  padding: 6px 10px;
  color: #ffd1ca;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.registration-fields {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--color-line);
  padding-top: 14px;
}

.registration-fields > p,
.privacy-note {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.registration-fields small {
  color: var(--color-muted);
  font-weight: 600;
}

.magic-preview-link {
  color: var(--color-blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.secondary-button {
  min-height: 46px;
  border: 0;
  border-radius: var(--radius-control);
  background: var(--color-book);
  color: var(--color-surface);
  padding: 0 16px;
  font-weight: 900;
}

.ghost-button {
  min-height: 38px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
  background: var(--color-surface);
  color: var(--color-primary);
  padding: 0 12px;
  font-weight: 900;
}

.account-dashboard {
  display: grid;
  gap: 18px;
}

.dashboard-toolbar,
.history-heading,
.referral-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.dashboard-toolbar {
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 18px;
}

.dashboard-toolbar > div {
  display: grid;
  gap: 5px;
}

.dashboard-toolbar > div > span,
.history-heading span {
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.account-dashboard article,
.referral-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.account-dashboard article > span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-dashboard strong {
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.tier-card {
  border-color: var(--color-primary) !important;
  background: var(--color-primary) !important;
  color: var(--color-surface);
}

.tier-card > span,
.tier-card p {
  color: rgb(255 255 255 / 66%) !important;
}

.tier-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 14%);
}

.tier-progress progress {
  appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--color-book);
}

.tier-progress progress::-webkit-progress-bar {
  border-radius: inherit;
  background: transparent;
}

.tier-progress progress::-webkit-progress-value,
.tier-progress progress::-moz-progress-bar {
  border-radius: inherit;
  background: var(--color-book);
}

.benefit-card strong {
  color: var(--color-book);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.referral-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid #f2c4bd;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #fff8f6, #ffffff);
}

.referral-panel > div {
  display: grid;
  gap: 8px;
}

.referral-panel > div > span {
  color: var(--color-book);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.history-heading > div {
  display: grid;
  gap: 4px;
}

.history-heading a {
  color: var(--color-blue);
  font-weight: 900;
}

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

.request-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
  padding: 12px;
}

.request-list strong {
  display: block;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--color-line);
  background: var(--color-surface);
  padding: 28px clamp(16px, 4vw, 48px);
}

.site-footer p {
  color: var(--color-muted);
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--color-muted);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 45;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--color-success);
  color: var(--color-surface);
  box-shadow: var(--shadow-panel);
  padding: 0 18px;
  font-weight: 900;
}

.mobile-nav {
  display: none;
}

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

  .header-actions {
    display: none;
  }

  .hero-layout,
  .account-guest {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .flow-shell {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    min-height: 58px;
  }

  .header-nav {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-card {
    min-height: 430px;
  }

  .quote-grid,
  .details-grid,
    .need-help,
    .policy-panel ul,
    .route-card-grid,
    .steps-grid,
  .stats-strip,
  .loyalty-grid {
    grid-template-columns: 1fr;
  }

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

  .flow-steps {
    top: 58px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .summary-vehicle,
  .request-list li,
  .referral-panel {
    grid-template-columns: 1fr;
  }

  .referral-panel {
    align-items: stretch;
  }

  .vehicle-thumb {
    width: 100%;
    max-width: 170px;
  }

  .comparison-table div {
    grid-template-columns: 1fr;
  }

  .flow-sticky {
    bottom: 72px;
    grid-template-columns: 80px 1fr;
  }

  .flow-sticky .whatsapp-cta {
    grid-column: 1 / -1;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 144px;
  }

  .mobile-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--color-line);
    background: rgb(255 255 255 / 96%);
    backdrop-filter: blur(16px);
  }

  .mobile-nav a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 900;
  }
}

@media (max-width: 560px) {
  .hero-section,
  .booking-flow {
    padding-right: 12px;
    padding-left: 12px;
  }

  .live-pill,
  .trust-row {
    align-items: center;
    flex-direction: column;
    border-radius: var(--radius-card);
    text-align: center;
  }

  .hero-card,
  .quote-panel,
  .flow-panel,
  .summary-panel {
    padding: 18px;
  }

  .hero-card h1 {
    font-size: 2.4rem;
  }

  .loyalty-promise {
    grid-template-columns: 1fr;
  }

  .loyalty-promise article {
    min-height: 84px;
  }

  .dashboard-toolbar,
  .history-heading {
    align-items: flex-start;
    flex-direction: column;
  }

}
