:root {
  --navy-900: #07233d;
  --navy-800: #0c2c4d;
  --navy-700: #16406a;
  --blue-500: #1f7fdc;
  --blue-300: #7cc5f5;
  --blue-100: #d8e9fb;
  --blue-050: #eef6ff;
  --teal-500: #1cc7b0;
  --teal-600: #15b19c;
  --gray-100: #f4f8fd;
  --gray-200: #e1e9f5;
  --gray-400: #6f7f93;
  --gray-500: #5a6a81;
  --white: #ffffff;
  --shadow: 0 28px 60px rgba(7, 34, 58, 0.2);
  --brand-gradient: linear-gradient(115deg, #1f7fdc 0%, #1bb7d8 46%, #19c2a8 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(31, 127, 220, 0.2), rgba(25, 194, 168, 0.25));
  --page-gutter: clamp(20px, 6vw, 72px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--navy-900);
  background: radial-gradient(circle at top, #eef7ff 0%, #f6fbff 30%, #f9fbff 100%);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

html {
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

h1,
h2,
h3,
.logo,
.btn {
  font-family: "Montserrat", sans-serif;
}

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

.hero {
  background: url("./assets/hero-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 0 var(--page-gutter) 28px;
  position: relative;
  overflow: visible;
  height: clamp(680px, 56vw, 900px);
  min-height: 680px;
  max-height: 100svh;
  display: flex;
  flex-direction: column;
  z-index: 5;
}

.hero::after {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 34, 84, 0.48) 0%, rgba(5, 34, 84, 0.2) 34%, rgba(5, 34, 84, 0.05) 58%, rgba(5, 34, 84, 0) 74%),
    linear-gradient(180deg, rgba(4, 29, 71, 0.1) 0%, rgba(4, 29, 71, 0.02) 28%, rgba(4, 29, 71, 0.22) 100%);
  pointer-events: none;
}

.benefits {
  background: #f8fbff;
  padding: 70px 6vw 90px;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 18px 40px rgba(7, 26, 47, 0.08);
  border: 1px solid #edf2f7;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  animation: benefitIn 0.7s ease forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.benefits-grid .benefit-card:nth-child(2) {
  animation-delay: 0.12s;
}

.benefits-grid .benefit-card:nth-child(3) {
  animation-delay: 0.24s;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--brand-gradient);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.6rem;
  font-weight: 700;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--navy-900);
}

.benefit-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--gray-400);
  font-weight: 600;
}

.benefit-card .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1fbf84;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-right: 10px;
}

.benefit-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(120deg, #1f7fdc, #19c2a8);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.benefit-card li {
  display: flex;
  align-items: center;
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.015) rotateZ(-0.15deg);
  box-shadow: 0 30px 70px rgba(7, 26, 47, 0.16);
  border-color: #d7e4f2;
}

.benefit-card::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -40%;
  width: 60%;
  height: 140%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-140%) rotate(12deg);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.4s ease;
  pointer-events: none;
}

.benefit-card:hover::after {
  transform: translateX(220%) rotate(12deg);
  opacity: 1;
}

@keyframes benefitIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

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

.pink-strip {
  background: linear-gradient(90deg, #ffe4ee 0%, #fff1f6 50%, #ffe4ee 100%);
  border-top: 1px solid #f8c9db;
  border-bottom: 1px solid #f8c9db;
}

.pink-strip-inner {
  width: 100%;
  margin: 0;
  padding: 12px 4vw;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: space-between;
  white-space: nowrap;
  overflow: hidden;
  color: #8c2b4d;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.pink-strip-inner::-webkit-scrollbar {
  height: 0;
}

.pink-strip-inner {
  scrollbar-width: none;
}

.pink-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 2px 4px;
  border-radius: 0;
  background: transparent;
  border: none;
  font-size: 0.8rem;
}

.pink-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff7ab7;
  display: grid;
  place-items: center;
  color: #ffffff;
  flex: 0 0 24px;
}

.pink-icon svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pink-item.highlight {
  background: #ffc7de;
  border: 1px solid #ff8fbe;
  font-weight: 700;
  padding: 8px 16px;
  font-size: 0.92rem;
  border-radius: 999px;
}

.pink-item.highlight .pink-icon {
  background: #ff5fa3;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.pink-mobile-label {
  display: none;
  text-align: center;
  color: #8c2b4d;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 4vw 10px;
  min-height: 1.4em;
}

.green-mobile-label {
  display: none;
  text-align: center;
  color: #0f6d53;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 4vw 10px;
  min-height: 1.4em;
}



.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 0;
  position: absolute;
  top: 12px;
  left: var(--page-gutter);
  right: var(--page-gutter);
  z-index: 2;
  padding-right: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-buttons .btn {
  padding: 10px 16px;
  font-size: 0.85rem;
}

.logo-block {
  display: grid;
  gap: 6px;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.logo-block .logo {
  font-size: 2.15rem;
  letter-spacing: 0.42em;
}

.logo-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.85);
  margin-left: -8px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-gradient);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(7, 26, 47, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(7, 26, 47, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.hero .btn-primary {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 16px 32px rgba(7, 26, 47, 0.22);
}

.hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
  align-items: center;
}

.hero-content.hero-simple {
  grid-template-columns: 1fr;
  min-height: auto;
  gap: 18px;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding-top: 0;
  padding-right: 0;
  position: relative;
  z-index: 2;
  flex: 1;
}

.hero-content.hero-simple .hero-copy {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  padding-bottom: 0;
  padding-left: 0;
  padding-top: clamp(132px, 14vw, 196px);
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
  min-height: 62vh;
}

.hero-video {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 22px 0 0 22px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(7, 26, 47, 0.28);
}




.hero-copy h1 {
  font-size: clamp(4.2rem, 6.5vw, 6rem);
  line-height: 1.03;
  margin: 18px 0 0;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero-title {
  display: inline-block;
  white-space: normal;
}

.hero-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  animation: letterIn 0.45s ease forwards;
}

.hero-letter.space {
  width: 0.25em;
}

.eyebrow {
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
  font-size: 0.7rem;
}

.subheadline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
  max-width: 520px;
}

.hero-trust {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-content.hero-simple .hero-cta {
  margin-top: 14px;
  margin-bottom: 0;
  margin-left: 0;
}

.hero-content.hero-simple .btn-primary {
  padding: 15px 34px;
  font-size: 1.02rem;
  border-radius: 999px;
}

.hero-booking-wrap {
  position: relative;
  z-index: 20;
  width: min(1240px, 100%);
  padding: 24px 0 0;
  margin: 0 auto;
  margin-top: auto;
}

.hero-booking-form {
  max-width: 1180px;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) auto minmax(0, 1.08fr) minmax(0, 1fr) auto;
  gap: 0;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 78px rgba(7, 26, 47, 0.24);
  padding: 12px 14px;
  position: relative;
  transition: box-shadow 200ms ease, transform 200ms ease;
  z-index: 21;
}

.hero-booking-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
}

.hero-booking-form:focus-within {
  box-shadow: 0 34px 86px rgba(7, 26, 47, 0.28);
}

.hero-booking-field {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 10px 20px;
  position: relative;
  align-self: center;
}

.hero-booking-field + .hero-booking-field::before,
.hero-swap-btn + .hero-booking-field::before {
  display: none;
}

.hero-booking-field label {
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(7, 35, 61, 0.56);
  font-weight: 800;
  padding-left: 4px;
}

.hero-booking-control {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 62px;
  border-radius: 20px;
  border: 1px solid rgba(214, 228, 241, 0.45);
  padding: 0 14px 0 12px;
  background: rgba(247, 250, 253, 0.92);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.hero-booking-field:hover .hero-booking-control {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(194, 213, 230, 0.62);
}

.hero-booking-field:focus-within .hero-booking-control {
  transform: scale(1.01);
  border-color: rgba(31, 127, 220, 0.4);
  box-shadow: 0 0 0 4px rgba(31, 127, 220, 0.12), 0 10px 24px rgba(31, 127, 220, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.hero-field-icon {
  width: 22px;
  height: 22px;
  color: #1f7fdc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-field-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.hero-booking-field select,
.hero-booking-field input {
  height: 62px;
  border-radius: 0;
  border: 0;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-900);
  background: transparent;
  box-shadow: none;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  min-width: 0;
}

.hero-booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.55;
  cursor: pointer;
}

.hero-nice-select {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.hero-nice-select .nice-trigger {
  min-width: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-900);
  transition: color 200ms ease;
}

.hero-nice-select .field-icon.chevron {
  color: rgba(7, 35, 61, 0.38);
  margin-left: 0;
  transition: transform 200ms ease, color 200ms ease;
}

.hero-nice-select.open .field-icon.chevron {
  transform: rotate(180deg);
  color: #1f7fdc;
}

.hero-nice-select .nice-panel {
  top: calc(100% + 12px);
  left: -14px;
  right: -14px;
  border-radius: 20px;
  border: 1px solid rgba(214, 228, 241, 0.8);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 48px rgba(10, 41, 77, 0.16);
  padding: 8px;
  overflow: hidden;
}

.hero-nice-select .nice-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.hero-nice-select .nice-option:hover {
  background: rgba(31, 127, 220, 0.08);
}

.hero-nice-select .nice-option.selected {
  background: rgba(31, 127, 220, 0.1);
}

.hero-nice-select .nice-option .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(31, 127, 220, 0.24);
  position: relative;
  flex: 0 0 auto;
}

.hero-nice-select .nice-option.selected .dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #1f7fdc;
}

.hero-nice-select .nice-option strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
}

.hero-search-btn {
  height: 66px;
  padding: 0 38px;
  font-size: 1.02rem;
  border-radius: 999px;
  align-self: center;
  margin: 12px 6px 6px 14px;
  background: linear-gradient(135deg, #1f7fdc 0%, #18b7d8 100%);
  color: #ffffff;
  box-shadow: 0 20px 38px rgba(16, 102, 190, 0.34);
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease, opacity 200ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.hero-search-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
}

.hero-search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 28px 52px rgba(16, 102, 190, 0.4);
  filter: saturate(1.12);
}

.hero-search-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.hero-swap-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31, 127, 220, 0.12);
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.98);
  color: #1f7fdc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  box-shadow: 0 12px 24px rgba(10, 41, 77, 0.12);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  margin: 0;
  position: relative;
  z-index: 2;
  transform: translateY(8px);
}

.hero-swap-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.hero-swap-btn:hover {
  transform: rotate(180deg);
  box-shadow: 0 18px 30px rgba(10, 41, 77, 0.18);
  background: #ffffff;
}

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-chips span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.14);
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(7, 26, 47, 0.24);
  backdrop-filter: blur(8px);
  max-width: 520px;
}

.hero-stats span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.hero-stats strong {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.12);
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(7, 26, 47, 0.3);
  backdrop-filter: blur(8px);
}

.meta-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.meta-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.hero-visual {
  display: grid;
  justify-content: center;
  position: relative;
}

.hero-copy {
  animation: riseIn 0.7s ease both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 70px rgba(7, 26, 47, 0.35);
  width: min(420px, 90vw);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: floatIn 0.8s ease both;
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.route-city strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.route-city small {
  color: rgba(255, 255, 255, 0.7);
}

.route-line {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

.route-dot::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 24px;
  background: rgba(255, 255, 255, 0.35);
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}

.route-dot:last-child::after {
  display: none;
}

.seat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.seat {
  height: 32px;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.seat.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: transparent;
  box-shadow: inset 0 0 0 2px rgba(15, 59, 96, 0.12);
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.hero-card-footer strong {
  display: block;
  font-size: 1.15rem;
  margin-top: 6px;
}

.availability {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.hero-float {
  position: absolute;
  bottom: -18px;
  right: 10%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-900);
  padding: 10px 16px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(7, 26, 47, 0.22);
  animation: bob 4.5s ease-in-out infinite;
}

@keyframes riseIn {
  0% {
    transform: translateY(18px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes floatIn {
  0% {
    transform: translateY(24px) scale(0.98);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes letterIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.strip-item.pill .strip-icon {
  background: #ffffff;
  border-color: #ffffff;
  color: #14b38a;
}

.section {
  padding: 120px 6vw;
}

.how {
  padding-top: 160px;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

.green-strip {
  background: linear-gradient(90deg, #c9f3e5 0%, #e7fbf4 50%, #c9f3e5 100%);
  border-top: 1px solid #bfead9;
  border-bottom: 1px solid #bfead9;
}

.green-strip-inner {
  width: 100%;
  margin: 0;
  padding: 14px 4vw;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: space-between;
  white-space: nowrap;
  overflow: hidden;
  color: #0f6d53;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.green-strip-inner::-webkit-scrollbar {
  height: 0;
}

.green-strip-inner {
  scrollbar-width: none;
}

.green-strip-inner .strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 4px;
  border-radius: 0;
  background: transparent;
  border: none;
  font-size: 0.82rem;
}

.strip-item {
  font-weight: 600;
}

.strip-item.highlight {
  font-weight: 700;
  background: #e7fbf4;
  border: 1px solid #c9f3e5;
  padding-left: 8px;
  padding-right: 14px;
  border-radius: 999px;
}

.strip-item strong {
  font-weight: 700;
}

.strip-item.highlight .strip-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background: #1fbf84;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.strip-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1fbf84;
  display: grid;
  place-items: center;
  color: #ffffff;
  flex: 0 0 22px;
  animation: stripPulse 3s ease-in-out infinite;
}

.strip-icon svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  fill: none;
}
.strip-icon svg {
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strip-icon svg path,
.strip-icon svg circle,
.strip-icon svg line {
  stroke: #ffffff;
  fill: none;
}

.strip-item:nth-child(2) .strip-icon {
  animation-delay: 0.2s;
}

.strip-item:nth-child(3) .strip-icon {
  animation-delay: 0.4s;
}

.strip-item:nth-child(4) .strip-icon {
  animation-delay: 0.6s;
}

.strip-item:nth-child(5) .strip-icon {
  animation-delay: 0.8s;
}

@keyframes stripPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.steps-carousel {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-viewport {
  position: relative;
  overflow: visible;
  touch-action: pan-y;
  overscroll-behavior-x: none;
  background: transparent;
}

.steps-stage {
  position: relative;
}

.steps-flow {
  display: none;
}

.steps-flow-dot,
.steps-waypoints {
  display: none;
}

.steps-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.92);
  color: #0f2a44;
  box-shadow: 0 16px 28px rgba(7, 26, 47, 0.16);
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.steps-nav:focus-visible {
  outline: 3px solid rgba(31, 127, 220, 0.25);
  outline-offset: 3px;
}

.steps-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.steps-nav.prev {
  left: 10px;
}

.steps-nav.next {
  right: 10px;
}

.steps-nav:active {
  transform: translateY(-50%) scale(0.96);
  box-shadow: 0 6px 16px rgba(7, 26, 47, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.steps-nav[hidden] {
  display: none !important;
}

.steps-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.steps-dots:empty {
  display: none !important;
  margin-top: 0;
}

.step-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: #dbe4f2;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.step-dot.active {
  width: 24px;
  background: var(--brand-gradient);
}

.step {
  background: var(--white);
  padding: 22px 20px;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(7, 26, 47, 0.12);
  text-align: center;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 210px;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: var(--brand-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.35;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(7, 26, 47, 0.16);
}

.icon-tile {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--brand-gradient);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.icon-tile svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.step h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--navy-900);
}

.step p {
  color: var(--gray-400);
  font-size: 0.98rem;
}

.how {
  background: #ffffff;
}

.how .section-header {
  margin-bottom: 24px;
}

.tiers .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.route-selector {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.route-btn {
  border: 1px solid var(--blue-100);
  background: #f7fbff;
  color: var(--navy-900);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.route-btn.active {
  background: var(--brand-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(7, 26, 47, 0.18);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.tier-card {
  background: var(--white);
  border-radius: 24px;
  padding: 22px 20px 20px;
  padding-top: 52px;
  box-shadow: 0 18px 36px rgba(7, 26, 47, 0.12);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 280px;
}

.tier-price {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 12px 0 16px;
  text-align: center;
  transition: color 0.2s ease, -webkit-text-fill-color 0.2s ease, background 0.2s ease;
}

.tier-price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}

.tier-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--brand-gradient);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tier-pill.primary {
  background: var(--brand-gradient);
}

.tier-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.tier-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--brand-gradient);
  display: grid;
  place-items: center;
}

.tier-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tier-head h3 {
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.tier-features {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.5;
}

.tier-features li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
}

.feat-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.feat-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--navy-900);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tier-features li:last-child {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}

.tier-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 36px 75px rgba(7, 26, 47, 0.3);
  background: var(--brand-gradient);
  border-color: transparent;
  color: var(--white);
}

.tier-card:hover .tier-head h3,
.tier-card:hover .tier-features {
  color: var(--white);
}

.tier-card:hover .tier-price {
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}

.tier-card:hover .tier-price span {
  color: rgba(255, 255, 255, 0.9);
}

.faq {
  background:
    radial-gradient(circle at top center, rgba(31, 127, 220, 0.08), transparent 44%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.faq .section-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  text-align: center;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 224, 240, 0.92);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(7, 26, 47, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(7, 26, 47, 0.12);
  border-color: rgba(31, 127, 220, 0.2);
}

.faq-item.is-open {
  border-color: rgba(31, 127, 220, 0.22);
  box-shadow: 0 22px 46px rgba(7, 26, 47, 0.12);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 22px 24px;
  font: inherit;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
  background: rgba(248, 251, 255, 0.92);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(31, 127, 220, 0.2);
  outline-offset: -3px;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  background: rgba(31, 127, 220, 0.08);
  color: #1f7fdc;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item.is-open .faq-icon {
  background: rgba(31, 127, 220, 0.14);
  color: #0f5fad;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, opacity 0.25s ease, padding 0.25s ease;
  opacity: 0;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--gray-400);
  font-size: 0.98rem;
  line-height: 1.75;
}

.faq-answer-inner p + p {
  margin-top: 8px;
}

.tier-card:hover .tier-features li:last-child {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.tier-card:hover .tier-icon,
.tier-card:hover .tier-pill {
  background: var(--white);
  color: var(--navy-900);
}

.tier-card:hover .tier-icon svg,
.tier-card:hover .feat-icon svg {
  stroke: var(--navy-900);
}

.tier-card:hover .feat-icon svg {
  stroke: var(--white);
}

.better-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.better-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--blue-100);
  box-shadow: var(--shadow);
}

.better-card.highlight {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--gray-200);
  position: relative;
}

.better-card.highlight::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--brand-gradient);
  border-radius: 20px 20px 0 0;
}

.comparison {
  display: grid;
  grid-template-columns: minmax(320px, 2fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: start;
}

.comparison-table {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
  font-weight: 600;
  color: var(--navy-900);
}

.comparison-row.head {
  background: #f7f9fc;
  font-weight: 700;
  color: var(--navy-900);
}

.comparison-row .brand {
  color: var(--navy-900);
  font-weight: 800;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-highlight {
  position: sticky;
  top: 28px;
}

.highlight-card {
  background: var(--brand-gradient);
  color: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 70px rgba(7, 26, 47, 0.28);
}

.highlight-card .chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  margin-bottom: 14px;
}

.highlight-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.highlight-metrics {
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 16px;
  font-weight: 600;
}

.highlight-metrics span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.highlight-metrics strong {
  font-size: 1.1rem;
}

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

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 760px;
  }

  .comparison-highlight {
    position: static;
  }
}

.booking {
  background: var(--blue-050);
}

.booking-hidden {
  display: none;
}

.booking .section-header h2 {
  color: var(--navy-900);
}

.booking .section-header p {
  color: var(--navy-700);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.booking-ticker {
  max-width: 900px;
  margin: 0 auto 18px;
  background: var(--brand-gradient);
  border-radius: 999px;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 12px 26px rgba(7, 26, 47, 0.16);
}

.ticker-track {
  display: inline-flex;
  gap: 28px;
  padding: 10px 18px;
  white-space: nowrap;
  animation: tickerMove 18s linear infinite;
}

.ticker-track span {
  font-weight: 600;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.booking-cta {
  width: fit-content;
  display: block;
  border-radius: 16px;
  padding: 16px 40px;
  margin: 6px auto 22px;
  font-size: 1.05rem;
}

.booking-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker-track {
    animation: none;
  }
  .hero-copy,
  .hero-card,
  .hero-float {
    animation: none;
  }
  .hero-letter {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.booking-form {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--brand-gradient) border-box;
  padding: 36px 40px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(7, 26, 47, 0.12);
  border: 1px solid transparent;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}


.booking-form::before {
  content: none;
}

.booking-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  margin-bottom: 26px;
  align-items: start;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.booking-bar .booking-cell {
  min-width: 0;
}

.booking-datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0;
  margin-bottom: 24px;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.calendar {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(7, 26, 47, 0.08);
}

.calendar-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 20;
}

.date-trigger {
  width: 100%;
  height: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  cursor: pointer;
  min-height: 36px;
}

.booking-cell {
  position: relative;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy-900);
}

.cal-btn {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-day {
  text-align: center;
  font-size: 0.7rem;
  color: var(--gray-400);
}

.cal-date {
  border-radius: 10px;
  padding: 8px 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-900);
  cursor: pointer;
  border: 1px solid transparent;
}

.cal-date.disabled {
  color: var(--gray-400);
  cursor: not-allowed;
  opacity: 0.5;
}

.cal-date.available {
  border-color: rgba(31, 123, 220, 0.25);
}

.cal-date.selected {
  background: var(--brand-gradient);
  color: var(--white);
  border-color: transparent;
}

.booking-field {
  display: grid;
  gap: 6px;
}

.booking-field label {
  font-size: 0.75rem;
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.booking-cell {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 24px rgba(7, 26, 47, 0.06);
  min-height: 60px;
  gap: 10px;
  cursor: pointer;
}

.booking-cell select,
.booking-cell input {
  border: none;
  background: transparent;
  padding: 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  width: 100%;
  height: 100%;
}

.native-select {
  display: none;
}

.nice-select {
  position: relative;
  width: 100%;
  height: 100%;
}

.nice-select.has-chevron {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nice-select.has-chevron .nice-trigger {
  flex: 1;
}

.field-icon {
  color: #8c9bb0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.field-icon.chevron {
  margin-left: auto;
}

.nice-trigger {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-900);
  cursor: pointer;
  padding: 0;
}

.booking-bar .swap-btn {
  display: none;
}

.nice-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 24px 60px rgba(7, 26, 47, 0.2);
  z-index: 30;
  overflow: hidden;
}

.nice-panel .panel-head {
  padding: 12px 16px;
  background: #f3f5f9;
  font-weight: 700;
  color: var(--navy-900);
}

.nice-option {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nice-option:hover {
  background: #f7f9fc;
}

.nice-option .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--blue-500);
  display: grid;
  place-items: center;
}

.nice-option .dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  opacity: 0;
}

.nice-option.selected .dot::after {
  opacity: 1;
}

.nice-option strong {
  font-size: 1rem;
  color: var(--navy-900);
  display: block;
}

.nice-option small {
  color: var(--gray-400);
}

.swap-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--brand-gradient);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(7, 26, 47, 0.18);
  transition: transform 0.2s ease;
}

.swap-btn:hover {
  transform: scale(1.05);
}

.form-step {
  border: 1px solid var(--gray-200);
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: var(--white);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: var(--brand-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.35;
}

.form-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7, 26, 47, 0.18);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.step-head span {
  background: var(--brand-gradient);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 999px;
}

.step-head h3 {
  font-size: 1.1rem;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

label {
  font-weight: 600;
  color: var(--navy-800);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--blue-100);
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--white);
}

.next-ride-inline.subtle {
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: var(--gray-400);
  display: none;
}

.price-preview {
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #f7f9fc;
  border: 1px solid var(--gray-200);
}

.tier-select {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}

#openFlow {
  display: none;
}

.tier-option {
  border: 1px solid #d7dde7;
  border-radius: 18px;
  padding: 26px 22px;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  font-family: "Inter", sans-serif;
}

.tier-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(7, 26, 47, 0.16);
}

.tier-option.selected {
  background: var(--brand-gradient);
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(31, 111, 215, 0.12), 0 18px 38px rgba(7, 26, 47, 0.18);
  color: var(--white);
  transform: translateY(-4px);
}

.tier-option.selected .tier-option-price,
.tier-option.selected ul {
  color: var(--white);
}

.tier-option.selected .tier-option-price span {
  color: rgba(255, 255, 255, 0.85);
}

.tier-option-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.tier-option-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1f6fd7;
  margin-bottom: 10px;
}

.tier-option-price span {
  font-size: 1.05rem;
  font-weight: 600;
}

.tier-option ul {
  list-style: none;
  display: grid;
  gap: 6px;
  color: #6b7280;
  font-weight: 600;
}

.summary-card {
  background: #f8fbff;
  border: 1px solid #d7dde7;
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.summary-card div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding: 6px 0;
}

.summary-card div:not(:last-child) {
  border-bottom: 1px solid #e6edf6;
}

.summary-card span {
  color: #7b8ca3;
  font-weight: 600;
}

.summary-card strong {
  color: var(--navy-900);
}

.summary-list.compact {
  background: #f2f6fb;
}

.flow-section-title {
  margin: 6px 0 12px;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 6px auto 14px;
  box-shadow: 0 12px 28px rgba(7, 26, 47, 0.2);
  animation: popIn 0.4s ease;
}

.success-check {
  font-size: 2rem;
  font-weight: 800;
  animation: drawCheck 0.5s ease 0.1s both;
}

@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drawCheck {
  0% {
    transform: scale(0.6) rotate(-10deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.guidelines-card {
  background: #fff6ea;
  border: 1px solid #f7d7b5;
  border-radius: 16px;
  padding: 16px;
  margin: 12px 0 18px;
}

.guidelines-title {
  font-weight: 700;
  color: #b45309;
  margin-bottom: 10px;
}

.guidelines-card ul {
  margin-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 500;
}

.hidden-submit {
  display: none;
}

.note-pill {
  background: #eef5ff;
  border: 1px solid #cfe0fb;
  color: var(--navy-900);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 18px;
  text-align: center;
}

.flow-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.flow-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 32, 0.6);
  backdrop-filter: blur(2px);
}

.flow-modal {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(7, 26, 47, 0.24);
  width: min(560px, 95vw);
  max-height: 90vh;
  overflow: auto;
  padding: 26px 24px 22px;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
}

.flow-modal::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--brand-gradient);
  border-radius: 20px 20px 0 0;
}

.flow-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: #f1f5f9;
  color: var(--navy-900);
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.flow-modal input,
.flow-modal select,
.flow-modal textarea,
.flow-modal button {
  font-family: inherit;
}

.flow-step h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--navy-900);
}

.flow-sub {
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 14px;
}

.flow-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.flow-actions .btn-ghost {
  color: var(--navy-900);
  border-color: #cfd8e5;
  background: #f8fafc;
}

.flow-modal .btn-ghost {
  color: var(--navy-900);
  border-color: #cfd8e5;
  background: #f8fafc;
  backdrop-filter: none;
}

.flow-actions .btn-primary {
  flex: 1;
}

.flow-modal .error {
  color: #b42318;
  margin-top: 12px;
}

.otp-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.otp-status {
  font-size: 0.92rem;
  color: var(--gray-400);
  font-weight: 500;
}

.otp-status.error {
  color: #b42318;
}

.recaptcha-slot {
  min-height: 1px;
}

.pickup-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.tag {
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pickup-tag {
  background: #e8f5e9;
  color: #1b7a4a;
}

.drop-tag {
  background: #ffecec;
  color: #b42318;
}


.form-note {
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.pricing-panel {
  background: var(--white);
  color: var(--navy-900);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  align-content: start;
  border: 1px solid var(--gray-200);
  position: relative;
}

.pricing-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--brand-gradient);
  border-radius: 24px 24px 0 0;
}

.price-line {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
}

.price-line.total {
  font-size: 1.35rem;
  font-weight: 800;
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
}

.price-badge {
  background: #f7f9fc;
  padding: 14px;
  border-radius: 16px;
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.confirmation {
  background: rgba(25, 194, 168, 0.16);
  padding: 14px;
  border-radius: 14px;
}

.error {
  color: #b42318;
  font-weight: 600;
}

.trust {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.trust-card {
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(31, 123, 220, 0.16);
  color: var(--blue-500);
  font-weight: 800;
  margin-bottom: 12px;
}

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

.faq-list details {
  border: 1px solid var(--blue-100);
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.footer {
  padding: 32px 6vw 36px;
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr);
  column-gap: 36px;
  row-gap: 28px;
  background: var(--brand-gradient);
  color: var(--white);
  border-top: none;
  align-items: start;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
  display: inline-block;
}

.footer h4 {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.footer span,
.footer p {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-top: 6px;
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-top: 6px;
  margin-left: -8px;
  line-height: 1;
}

.footer-brand .logo {
  font-size: 2.15rem;
  letter-spacing: 0.42em;
  font-weight: 700;
  line-height: 1;
}

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

.footer-apps {
  display: grid;
  gap: 12px;
  justify-self: start;
  text-align: left;
}

.footer-apps h4 {
  margin-left: 16px;
}

.store-links {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 14px;
  border: none;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease;
  width: 170px;
  height: 56px;
  justify-content: center;
}

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

.store-badge-img {
  width: 170px;
  height: 56px;
  object-fit: contain;
  display: block;
  max-width: none;
}

.store-badge.appstore .store-badge-img {
  transform: scale(0.82);
  transform-origin: center;
}

.store-badge.playstore .store-badge-img {
  transform: scale(1.08);
  transform-origin: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 110px;
  transform: translateX(-50%) translateY(12px);
  background: #ffffff;
  color: var(--navy-900);
  padding: 12px 14px 12px 16px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(7, 26, 47, 0.2);
  border: 1px solid var(--gray-200);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--brand-gradient);
  border-radius: 14px 14px 0 0;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.toast-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 0 0 4px rgba(31, 127, 220, 0.14);
}

.toast-close {
  border: none;
  background: rgba(7, 34, 58, 0.08);
  color: var(--navy-900);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.mobile-book-cta {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 2000;
  width: min(92vw, 420px);
}

.mobile-book-cta.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-book-cta .btn {
  width: 100%;
  justify-content: center;
  border-radius: 16px;
  padding: 14px 20px;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(7, 26, 47, 0.2);
}

.footer-right {
  text-align: justify;
  text-justify: inter-word;
  justify-self: end;
  min-width: 200px;
  padding-right: 0;
}

@media (max-width: 1200px) {
  .footer {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .footer-center,
  .footer-apps,
  .footer-right {
    text-align: left;
    justify-self: start;
  }
}

.policy-link {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  padding: 10px 16px;
  margin-top: 6px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.policy-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.footer-divider {
  height: 1px;
  width: 88%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  color: rgba(255, 255, 255, 0.78);
  padding: 18px 6vw 22px;
  background: var(--brand-gradient);
}

.footer-bottom-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-policy-btn {
  margin-top: 0;
}

.footer-bottom-copy {
  text-align: right;
}

.policy-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.policy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 32, 0.6);
}

.policy-modal {
  position: relative;
  background: var(--white);
  border-radius: 26px;
  width: min(860px, 94vw);
  max-height: min(88vh, 920px);
  padding: 28px 28px 24px;
  box-shadow: 0 24px 60px rgba(7, 26, 47, 0.24);
  z-index: 1;
  text-align: left;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
}

.policy-modal h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  margin-bottom: 0;
  color: var(--navy-900);
}

.policy-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #9fb8ff;
  background: #eef3ff;
  color: var(--navy-900);
  font-size: 1.1rem;
  cursor: pointer;
}

.policy-modal-head {
  padding-right: 44px;
}

.policy-kicker {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3c91ee;
}

.policy-scroll {
  overflow-y: auto;
  min-height: 0;
  padding-right: 8px;
  padding-bottom: 6px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.policy-copy {
  color: #415068;
  font-size: 0.98rem;
  line-height: 1.7;
}

.policy-copy a {
  color: #1973d6;
  font-weight: 700;
}

.policy-copy p {
  margin: 0;
}

.policy-effective {
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(31, 127, 220, 0.08), rgba(54, 200, 217, 0.12));
  color: var(--navy-900);
}

.policy-section {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid #e3ebf5;
}

.policy-section h4 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 1.08rem;
}

.policy-subsection + .policy-subsection {
  margin-top: 14px;
}

.policy-subsection h5 {
  margin: 0 0 6px;
  color: var(--navy-900);
  font-size: 0.96rem;
}

.policy-copy ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.policy-copy li + li {
  margin-top: 4px;
}

@media (max-width: 720px) {
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom-legal {
    justify-content: center;
  }

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

  .policy-modal {
    width: min(94vw, 94vw);
    max-height: 90vh;
    padding: 22px 18px 18px;
    border-radius: 22px;
  }
}

@media (max-width: 1100px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .steps-carousel {
    padding: 0 4vw;
    display: grid;
    gap: 12px;
  }

  .steps-stage {
    padding-top: 0;
  }

  .steps-flow,
  .steps-flow-dot,
  .steps-waypoints {
    display: none;
  }

  .steps-viewport {
    overflow: hidden;
  }

  .steps {
    display: flex;
    gap: 0;
    max-width: none;
    margin: 0;
    transition: transform 0.35s ease;
    touch-action: pan-y;
  }

  .step {
    min-width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    box-shadow: 0 18px 40px rgba(7, 26, 47, 0.12);
    text-align: center;
    transition: none;
    transform: none;
    opacity: 1;
  }

  .step:hover {
    transform: none;
    box-shadow: 0 18px 40px rgba(7, 26, 47, 0.12);
  }

  .step:first-child {
    transform: none;
  }

  .steps-nav,
  .steps-dots {
    display: flex;
  }

  .steps-nav.prev {
    left: 10px;
  }

  .steps-nav.next {
    right: 10px;
  }

  .steps-dots {
    margin-top: 4px;
  }

  .step-dot {
    width: 8px;
    height: 8px;
  }

  .step-dot.active {
    width: 22px;
  }

  .tier-select {
    grid-template-columns: 1fr;
  }

  .tier-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-question {
    padding: 18px;
    font-size: 0.98rem;
    align-items: flex-start;
  }

  .faq-answer-inner {
    padding: 0 18px 18px;
    font-size: 0.94rem;
    line-height: 1.7;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    position: static;
    margin-bottom: 18px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .nav-right {
    width: 100%;
  }

  .nav-buttons {
    width: 100%;
  }

  .hero {
    padding: 24px 6vw 32px;
    min-height: auto;
    background-position: 64% center;
    background-size: cover;
  }

  .nav {
    padding-right: 0;
  }

  .hero-float {
    position: static;
    margin-top: 14px;
    animation: none;
  }

  .hero-content.hero-simple {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 0;
    padding-right: 0;
  }

  .hero-content.hero-simple .hero-copy {
    justify-content: flex-start;
    padding-bottom: 0;
    padding-left: 0;
    padding-top: 8px;
    align-items: flex-start;
    text-align: left;
  }

  .hero-content.hero-simple .hero-cta {
    margin-top: 18px;
    margin-left: 0;
  }

  .hero-booking-wrap {
    padding: 20px 0 8px;
  }

  .hero-booking-form {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    align-items: stretch;
  }

  .hero-booking-field {
    padding: 6px 0;
  }

  .hero-booking-field + .hero-booking-field::before,
  .hero-swap-btn + .hero-booking-field::before {
    display: none;
  }

  .hero-swap-btn {
    justify-self: center;
    grid-column: 1 / -1;
    transform: none;
  }

  .hero-search-btn {
    width: 100%;
    margin: 8px 0 0;
    grid-column: 1 / -1;
    align-self: stretch;
  }

  .hero-media {
    justify-content: center;
    min-height: 220px;
  }

  .hero-video {
    height: 100%;
    width: 100%;
    border-radius: 18px;
  }

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

  .compare-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .swap-btn {
    justify-self: center;
  }

  .booking-datetime {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 6vw;
  }

  .how {
    padding-top: 110px;
  }

  .section-header {
    text-align: left;
    margin: 0 0 24px;
  }

  .section-header p {
    margin: 0;
    font-size: 0.98rem;
  }

  .booking-form {
    padding: 26px 22px;
  }

  .booking-cta {
    width: 100%;
  }

  .pink-strip-inner,
  .green-strip-inner {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    font-size: 0.78rem;
  }
}

@media (max-width: 900px) {
  .mobile-book-cta {
    display: block;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding: 18px 0 0;
    background-position: 68% top;
    background-size: cover;
  }

  .nav {
    padding: 0 6vw;
  }

  .logo-block .logo {
    font-size: 1.45rem;
    letter-spacing: 0.26em;
  }

  .logo-tagline {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    margin-left: -4px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 8.5vw, 2.8rem);
    line-height: 1.08;
  }

  .hero-content.hero-simple {
    gap: 16px;
    padding: 0 6vw;
    padding-top: 0;
  }

  .hero-booking-wrap {
    padding: 14px 6vw 14px;
  }

  .hero-booking-form {
    grid-template-columns: 1fr;
    border-radius: 16px;
    padding: 12px;
  }

  .hero-swap-btn,
  .hero-search-btn {
    grid-column: auto;
    width: 100%;
  }

  .hero-swap-btn {
    height: 50px;
    border-radius: 16px;
  }

  .hero-booking-control {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
  }

  .hero-nice-select .nice-panel {
    left: 0;
    right: 0;
  }

  .hero-booking-field select,
  .hero-booking-field input,
  .hero-search-btn {
    height: 54px;
  }

  .hero-video {
    min-height: 220px;
    border-radius: 0;
  }

  .hero-media {
    min-height: 240px;
    width: 100vw;
    margin-left: calc(-1 * 6vw);
    margin-right: calc(-1 * 6vw);
  }

  .benefit-card {
    padding: 20px 16px;
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
  }

  .benefit-card h3 {
    font-size: 1.15rem;
  }

  .benefit-card li {
    font-size: 0.92rem;
  }

  .tier-card {
    min-height: auto;
  }

  .tier-head h3 {
    font-size: 1.25rem;
  }

  .tier-icon {
    width: 56px;
    height: 56px;
  }

  .tier-features {
    gap: 10px;
    font-size: 0.92rem;
  }

  .step h3 {
    font-size: 1.05rem;
  }

  .step p {
    font-size: 0.9rem;
  }

  .booking-form {
    padding: 20px 16px;
  }

  .booking-field label {
    font-size: 0.75rem;
  }

  .pink-strip-inner,
  .green-strip-inner {
    padding: 8px 4vw;
    font-size: 0.76rem;
  }

  .pink-strip-inner {
    justify-content: flex-start;
    gap: 6px;
    overflow: hidden;
    padding-bottom: 0;
  }

  .pink-item {
    font-size: 0;
    padding: 0;
  }

  .pink-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background: #f5b2d1;
  }

  .pink-icon svg {
    stroke: #8c2b4d;
  }

  .pink-item.active .pink-icon {
    background: #ff5fa3;
    box-shadow: 0 0 0 2px rgba(255, 95, 163, 0.18);
    transform: scale(1.08);
  }

  .pink-item.active .pink-icon svg {
    stroke: #ffffff;
  }

  .pink-item.highlight {
    margin-left: auto;
    font-size: 0.68rem;
    padding: 4px 8px;
    gap: 6px;
  }

  .pink-item.highlight .pink-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .pink-mobile-label {
    display: block;
    font-size: 0.85rem;
    padding: 4px 4vw 8px;
  }

  .green-strip-inner {
    justify-content: flex-start;
    gap: 6px;
    overflow: hidden;
    padding-bottom: 0;
  }

  .green-strip-inner .strip-item {
    font-size: 0;
    padding: 0;
    order: 1;
  }

  .green-strip-inner .strip-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    background: #9fe8cf;
    color: #0f6d53;
    animation: none;
  }

  .green-strip-inner .strip-item.active .strip-icon {
    background: #1fbf84;
    color: #ffffff;
    box-shadow: 0 0 0 2px rgba(31, 191, 132, 0.18);
    transform: scale(1.04);
  }

  .green-strip-inner .strip-item.highlight {
    order: 2;
    margin-left: auto;
    margin-right: 0;
    font-size: 0.78rem;
    padding: 0;
    gap: 8px;
    background: transparent;
    align-items: center;
    white-space: normal;
    line-height: 1.1;
  }

  .green-strip-inner .strip-item.highlight .strip-icon {
    width: 52px;
    height: 26px;
    flex: 0 0 52px;
    border-radius: 999px;
    background: #1fbf84;
    color: #ffffff;
  }

  .green-strip-inner .strip-item .strip-icon svg {
    width: 12px;
    height: 12px;
    stroke: #0f6d53;
  }

  .green-strip-inner .strip-item.active .strip-icon svg,
  .green-strip-inner .strip-item.highlight .strip-icon svg {
    stroke: #ffffff;
  }

  .green-strip-inner .strip-item.highlight .strip-icon svg {
    width: 14px;
    height: 14px;
  }

  .green-mobile-label {
    display: block;
    font-size: 0.85rem;
    padding: 4px 4vw 8px;
  }
}

@media (max-width: 1100px) {
  .hero {
    height: clamp(640px, 64vw, 820px);
    min-height: 640px;
    background-position: 60% center;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: 520px;
    padding-top: clamp(124px, 13vw, 170px);
  }

  .hero-copy h1 {
    font-size: clamp(3.7rem, 6vw, 5rem);
  }

  .hero-booking-form {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) minmax(0, 0.95fr) auto;
  }
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 18px var(--page-gutter) 26px;
    background-position: 62% 14%;
    background-size: cover;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 34, 84, 0.24) 0%, rgba(5, 34, 84, 0.12) 28%, rgba(5, 34, 84, 0.18) 100%),
      linear-gradient(90deg, rgba(5, 34, 84, 0.42) 0%, rgba(5, 34, 84, 0.16) 46%, rgba(5, 34, 84, 0) 86%);
  }

  .nav {
    padding: 0;
    margin-bottom: 12px;
  }

  .hero-content.hero-simple,
  .hero-booking-wrap {
    width: 100%;
  }

  .hero-content.hero-simple {
    gap: 14px;
    padding-top: 0;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: 100%;
    padding-top: 20px;
    align-items: flex-start;
    text-align: left;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 9vw, 4.2rem);
    line-height: 1.04;
  }

  .hero-booking-wrap {
    padding: 18px 0 0;
  }

  .hero-booking-form {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
    box-shadow: 0 22px 48px rgba(7, 26, 47, 0.18);
  }

  .hero-booking-field {
    padding: 0;
  }

  .hero-booking-control {
    min-height: 58px;
    border-radius: 18px;
    padding: 0 14px 0 12px;
  }

  .hero-booking-field select,
  .hero-booking-field input,
  .hero-nice-select,
  .hero-search-btn {
    height: 58px;
  }

  .hero-swap-btn {
    width: 50px;
    height: 50px;
    justify-self: center;
    transform: none;
  }

  .hero-search-btn {
    width: 100%;
    margin: 2px 0 0;
    align-self: stretch;
  }

  .benefits {
    padding: 44px var(--page-gutter) 60px;
  }

  .benefits-grid {
    gap: 16px;
  }

  .benefit-card {
    border-radius: 20px;
    padding: 22px 18px;
  }

  .section {
    padding: 68px var(--page-gutter);
  }

  .how {
    padding-top: 86px;
  }

  .section-header {
    margin: 0 0 22px;
  }

  .section-header h2 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    margin-bottom: 10px;
  }

  .section-header p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .route-selector {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    margin-top: 16px;
  }

  .route-selector::-webkit-scrollbar {
    display: none;
  }

  .route-btn {
    flex: 0 0 auto;
    padding: 9px 14px;
    font-size: 0.92rem;
  }

  .tier-grid {
    max-width: none;
    gap: 16px;
  }

  .tier-card {
    min-height: auto;
    border-radius: 20px;
    padding: 48px 16px 16px;
  }

  .tier-head {
    gap: 14px;
    margin-bottom: 14px;
  }

  .tier-head h3 {
    font-size: 1.3rem;
  }

  .tier-price {
    margin: 8px 0 14px;
  }

  .faq-list {
    gap: 12px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 28px var(--page-gutter) 30px;
    row-gap: 22px;
  }

  .footer-brand,
  .footer-center,
  .footer-apps,
  .footer-right {
    justify-self: stretch;
    text-align: left;
  }

  .footer-bottom {
    padding: 16px var(--page-gutter) 22px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 14px var(--page-gutter) 22px;
    background-position: 61% 12%;
  }

  .nav {
    gap: 10px;
  }

  .logo-block {
    gap: 4px;
  }

  .logo-block .logo {
    font-size: 1.34rem;
    letter-spacing: 0.22em;
  }

  .logo-tagline {
    font-size: 0.54rem;
    letter-spacing: 0.14em;
    margin-left: -10px;
  }

  .hero-content.hero-simple {
    gap: 12px;
  }

  .hero-content.hero-simple .hero-copy {
    padding-top: 12px;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.5rem, 10.8vw, 3.2rem);
    line-height: 1.06;
  }

  .hero-booking-wrap {
    padding-top: 14px;
  }

  .hero-booking-form {
    padding: 12px;
    border-radius: 18px;
  }

  .hero-booking-field label {
    font-size: 0.74rem;
  }

  .hero-booking-control {
    min-height: 54px;
    border-radius: 16px;
  }

  .hero-booking-field select,
  .hero-booking-field input,
  .hero-nice-select,
  .hero-search-btn {
    height: 54px;
    font-size: 1rem;
  }

  .hero-nice-select .nice-trigger {
    font-size: 1rem;
  }

  .hero-search-btn {
    font-size: 0.98rem;
  }

  .benefits {
    padding: 36px var(--page-gutter) 48px;
  }

  .benefit-card {
    padding: 18px 16px;
  }

  .section {
    padding: 56px var(--page-gutter);
  }

  .steps-carousel {
    padding: 0;
  }

  .step {
    border-radius: 20px;
    min-height: 0;
  }

  .steps-nav {
    width: 38px;
    height: 38px;
  }

  .route-selector {
    margin-left: calc(-1 * var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
    padding: 0 var(--page-gutter) 2px;
  }

  .tier-card {
    padding: 44px 15px 15px;
  }

  .tier-features {
    gap: 10px;
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 16px;
    font-size: 0.94rem;
  }

  .faq-answer-inner {
    padding: 0 16px 16px;
    font-size: 0.92rem;
  }

  .footer {
    padding: 24px var(--page-gutter) 28px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 700px;
    padding-top: 16px;
    padding-bottom: 0;
    background-size: contain;
    background-position: center 150px;
    background-repeat: no-repeat;
    background-color: #2f7ed5;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(6, 34, 79, 0.08) 0%, rgba(6, 34, 79, 0.18) 100%);
  }

  .hero-content.hero-simple {
    width: 100%;
    flex: 0 0 auto;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(290px, 82vw);
    padding-top: 26px;
  }

  .hero-copy h1 {
    max-width: 7.4ch;
    font-size: clamp(2.45rem, 10vw, 3.1rem);
    line-height: 1.05;
  }

  .hero-booking-wrap {
    width: calc(100% + (2 * var(--page-gutter)));
    margin-left: calc(-1 * var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
    margin-top: auto;
    padding: 30px var(--page-gutter) 22px;
    background: radial-gradient(circle at top, #eef7ff 0%, #f6fbff 36%, #f9fbff 100%);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -12px 30px rgba(7, 26, 47, 0.08);
  }

  .hero-booking-form {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(7, 26, 47, 0.12);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 680px;
    background-position: center 148px;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(270px, 80vw);
    padding-top: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 10.2vw, 2.95rem);
  }

  .hero-booking-wrap {
    padding-top: 26px;
  }
}

@media (max-width: 700px) {
  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 16px var(--page-gutter) 22px;
    background: radial-gradient(circle at top, #eef7ff 0%, #f6fbff 40%, #f9fbff 100%);
    overflow: visible;
  }

  .hero::before {
    inset: 0 0 auto;
    height: 390px;
    background:
      linear-gradient(90deg, rgba(5, 34, 84, 0.42) 0%, rgba(5, 34, 84, 0.16) 38%, rgba(5, 34, 84, 0) 74%),
      linear-gradient(180deg, rgba(6, 34, 79, 0.08) 0%, rgba(6, 34, 79, 0.16) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 0 0;
    z-index: 0;
  }

  .hero::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0 0 auto;
    height: 390px;
    background: url("./assets/hero-bg.png") no-repeat 74% 44px / 152% auto;
    pointer-events: none;
    z-index: 0;
  }

  .nav,
  .hero-content.hero-simple,
  .hero-booking-wrap {
    position: relative;
    z-index: 2;
  }

  .hero-content.hero-simple {
    min-height: 360px;
    width: 100%;
    flex: 0 0 auto;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(300px, 84vw);
    padding-top: 44px;
  }

  .hero-copy h1 {
    max-width: 7.8ch;
    font-size: clamp(2.5rem, 10vw, 3.2rem);
    line-height: 1.05;
  }

  .hero-booking-wrap {
    width: 100%;
    margin: 0;
    padding: 6px 0 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-booking-form {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(7, 26, 47, 0.12);
  }
}

@media (max-width: 480px) {
  .hero::before {
    height: 372px;
  }

  .hero::after {
    height: 372px;
    background-position: 76% 52px;
    background-size: 170% auto;
  }

  .hero-content.hero-simple {
    min-height: 342px;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(274px, 82vw);
    padding-top: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(2.34rem, 10.1vw, 3rem);
  }
}

@media (max-width: 700px) {
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 16px var(--page-gutter) 0;
    background: radial-gradient(circle at top, #eef7ff 0%, #f6fbff 40%, #f9fbff 100%);
    overflow: visible;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 520px;
    background: url("./assets/hero-mobile.png") no-repeat center top / 100% auto;
    pointer-events: none;
    z-index: 0;
  }

  .hero::after {
    display: none;
  }

  .nav,
  .hero-content.hero-simple,
  .hero-booking-wrap {
    position: relative;
    z-index: 2;
  }

  .nav {
    margin-bottom: 0;
  }

  .hero-content.hero-simple {
    min-height: 500px;
    width: 100%;
    flex: 0 0 auto;
    gap: 0;
    align-items: flex-start;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(292px, 82vw);
    padding-top: 0;
    transform: translateY(-68px);
  }

  .hero-copy h1 {
    max-width: 7.5ch;
    font-size: clamp(2.5rem, 10vw, 3.2rem);
    line-height: 1.04;
    text-shadow: 0 10px 24px rgba(5, 34, 84, 0.12);
  }

  .hero-booking-wrap {
    width: calc(100% + (2 * var(--page-gutter)));
    margin-left: calc(-1 * var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
    margin-top: 0;
    padding: 10px var(--page-gutter) 24px;
    background: radial-gradient(circle at top, #eef7ff 0%, #f6fbff 40%, #f9fbff 100%);
    border-radius: 26px 26px 0 0;
    box-shadow: 0 -10px 24px rgba(7, 26, 47, 0.06);
  }

  .hero-booking-form {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(7, 26, 47, 0.12);
    border: 1px solid rgba(226, 236, 247, 0.95);
  }

  .hero-booking-form::before {
    border-radius: 24px;
  }

  .hero-swap-btn {
    display: none;
  }

  .hero-booking-field {
    gap: 8px;
    padding: 0;
  }

  .hero-booking-field label {
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(7, 35, 61, 0.56);
    padding-left: 2px;
  }

  .hero-booking-control {
    min-height: 56px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #e4edf8;
    padding: 0 14px 0 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .hero-booking-field:hover .hero-booking-control,
  .hero-booking-field:focus-within .hero-booking-control {
    background: #ffffff;
    border-color: #c7dcf4;
    box-shadow: 0 0 0 4px rgba(31, 127, 220, 0.08);
    transform: none;
  }

  .hero-field-icon {
    width: 20px;
    height: 20px;
  }

  .hero-field-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-booking-field select,
  .hero-booking-field input,
  .hero-nice-select {
    height: 56px;
    font-size: 1rem;
  }

  .hero-nice-select .nice-trigger {
    font-size: 1rem;
    font-weight: 700;
  }

  .hero-nice-select .nice-panel {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    border-radius: 18px;
    padding: 8px;
  }

  .hero-search-btn {
    width: 100%;
    height: 56px;
    margin: 2px 0 0;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 16px 28px rgba(16, 102, 190, 0.22);
  }
}

@media (max-width: 480px) {
  .hero::before {
    height: 488px;
    background-size: 100% auto;
    background-position: center top;
  }

  .hero-content.hero-simple {
    min-height: 470px;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(274px, 80vw);
    padding-top: 0;
    transform: translateY(-96px);
  }

  .hero-copy h1 {
    font-size: clamp(2.34rem, 10.1vw, 2.95rem);
  }

  .hero-booking-wrap {
    padding: 8px var(--page-gutter) 22px;
  }

  .hero-booking-form {
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
  }

  .hero-booking-form::before {
    border-radius: 22px;
  }

  .hero-booking-control {
    min-height: 54px;
    border-radius: 16px;
  }

  .hero-booking-field select,
  .hero-booking-field input,
  .hero-nice-select,
  .hero-search-btn {
    height: 54px;
  }

  .hero-search-btn {
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: clamp(720px, 154vw, 860px);
    background-size: auto 100%;
    background-position: 78% 42%;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 34, 84, 0.2) 0%, rgba(5, 34, 84, 0.08) 30%, rgba(5, 34, 84, 0.26) 100%),
      linear-gradient(90deg, rgba(5, 34, 84, 0.48) 0%, rgba(5, 34, 84, 0.22) 44%, rgba(5, 34, 84, 0) 88%);
  }

  .hero-content.hero-simple {
    flex: 0 0 auto;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(360px, 88vw);
    padding-top: clamp(44px, 8vw, 70px);
  }

  .hero-copy h1 {
    max-width: 8.2ch;
    text-shadow: 0 10px 26px rgba(5, 34, 84, 0.18);
  }

  .hero-booking-wrap {
    padding-top: 26px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 760px;
    padding-top: 16px;
    padding-bottom: 20px;
    background-size: auto 100%;
    background-position: 76% 46%;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(300px, 86vw);
    padding-top: 52px;
  }

  .hero-copy h1 {
    max-width: 7.8ch;
    font-size: clamp(2.55rem, 10.6vw, 3.3rem);
  }

  .hero-booking-wrap {
    padding-top: 28px;
  }

  .hero-booking-form {
    box-shadow: 0 18px 36px rgba(7, 26, 47, 0.18);
  }
}

@media (max-width: 700px) {
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 16px var(--page-gutter) 0;
    background: radial-gradient(circle at top, #eef7ff 0%, #f6fbff 40%, #f9fbff 100%);
    overflow: visible;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 520px;
    background: url("./assets/hero-mobile.png") no-repeat center top / 100% auto;
    pointer-events: none;
    z-index: 0;
  }

  .hero::after {
    display: none;
  }

  .nav,
  .hero-content.hero-simple,
  .hero-booking-wrap {
    position: relative;
    z-index: 2;
  }

  .hero-content.hero-simple {
    min-height: 500px;
    width: 100%;
    flex: 0 0 auto;
    gap: 0;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(292px, 82vw);
    padding-top: 36px;
  }

  .hero-copy h1 {
    max-width: 7.5ch;
    font-size: clamp(2.5rem, 10vw, 3.2rem);
    line-height: 1.04;
    text-shadow: 0 10px 24px rgba(5, 34, 84, 0.12);
  }

  .hero-booking-wrap {
    width: calc(100% + (2 * var(--page-gutter)));
    margin-left: calc(-1 * var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
    margin-top: 0;
    padding: 16px var(--page-gutter) 22px;
    background: radial-gradient(circle at top, #eef7ff 0%, #f6fbff 40%, #f9fbff 100%);
    border-radius: 26px 26px 0 0;
    box-shadow: 0 -10px 24px rgba(7, 26, 47, 0.06);
  }

  .hero-booking-form {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(7, 26, 47, 0.12);
  }
}

@media (max-width: 480px) {
  .hero::before {
    height: 488px;
    background-size: 100% auto;
    background-position: center top;
  }

  .hero-content.hero-simple {
    min-height: 470px;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(274px, 80vw);
    padding-top: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(2.34rem, 10.1vw, 2.95rem);
  }

  .hero-booking-wrap {
    padding-top: 14px;
  }
}

/* Final mobile hero/search refinement */
@media (max-width: 700px) {
  .hero {
    padding: 16px 0 0;
    background: #f6fbff;
  }

  .nav,
  .hero-content.hero-simple {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .hero::before {
    height: 510px;
    background: url("./assets/hero-mobile.png") no-repeat center top / cover;
  }

  .hero-content.hero-simple {
    min-height: 500px;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(288px, 80vw);
    padding-top: 12px;
    transform: translateY(-118px);
  }

  .hero-copy h1 {
    max-width: 7ch;
    letter-spacing: -0.05em;
  }

  .hero-booking-wrap {
    width: 100%;
    margin: 0;
    padding: 18px var(--page-gutter) 26px;
    background: linear-gradient(180deg, #f3f9ff 0%, #fbfdff 100%);
    border-radius: 0;
    box-shadow: none;
  }

  .hero-booking-form {
    gap: 14px;
    padding: 18px 16px 16px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(220, 232, 246, 0.95);
    box-shadow: 0 18px 42px rgba(11, 35, 72, 0.14);
  }

  .hero-booking-form::before {
    border-radius: 26px;
  }

  .hero-swap-btn {
    display: none !important;
  }

  .hero-booking-field {
    gap: 9px;
  }

  .hero-booking-field label {
    padding-left: 4px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: rgba(14, 37, 68, 0.5);
  }

  .hero-booking-control {
    min-height: 58px;
    padding: 0 14px;
    border-radius: 18px;
    border: 1px solid #e5edf7;
    background: linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .hero-field-icon {
    width: 18px;
    height: 18px;
    color: #2a7ddd;
  }

  .hero-booking-field:hover .hero-booking-control,
  .hero-booking-field:focus-within .hero-booking-control {
    background: #ffffff;
    border-color: rgba(54, 138, 224, 0.4);
    box-shadow: 0 0 0 4px rgba(54, 138, 224, 0.08);
  }

  .hero-booking-field select,
  .hero-booking-field input,
  .hero-nice-select,
  .hero-search-btn {
    height: 58px;
  }

  .hero-nice-select .nice-trigger,
  .hero-booking-field input {
    font-size: 1.02rem;
    font-weight: 700;
    color: #123257;
  }

  .hero-nice-select .nice-panel {
    top: calc(100% + 10px);
    padding: 8px;
    border-radius: 18px;
    max-height: 240px;
    border: 1px solid rgba(214, 226, 241, 0.95);
    box-shadow: 0 20px 40px rgba(7, 26, 47, 0.18);
    overflow-y: auto;
  }

  .hero-nice-select .nice-option {
    border-radius: 14px;
    padding: 12px 14px;
  }

  .hero-search-btn {
    width: 100%;
    margin-top: 4px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 16px 28px rgba(16, 102, 190, 0.26);
  }
}

@media (max-width: 480px) {
  .hero::before {
    height: 500px;
    background-position: center top;
    background-size: cover;
  }

  .hero-content.hero-simple {
    min-height: 490px;
  }

  .hero-content.hero-simple .hero-copy {
    max-width: min(270px, 79vw);
    transform: translateY(-132px);
  }

  .hero-copy h1 {
    font-size: clamp(2.26rem, 10vw, 2.85rem);
  }

  .hero-booking-wrap {
    padding: 16px var(--page-gutter) 24px;
  }

  .hero-booking-form {
    padding: 16px 14px 14px;
    border-radius: 24px;
  }

  .hero-booking-form::before {
    border-radius: 24px;
  }

  .hero-booking-control {
    min-height: 56px;
    border-radius: 17px;
  }

  .hero-booking-field select,
  .hero-booking-field input,
  .hero-nice-select,
  .hero-search-btn {
    height: 56px;
  }
}

/* Mobile polish: tighter typography, hero logo position, richer search card */
@media (max-width: 700px) {
  .nav {
    padding-top: 6px;
    justify-content: flex-start;
  }

  .logo-block {
    align-items: flex-start;
    transform: translate(-4px, -6px);
  }

  .logo-block .logo {
    font-size: 1.55rem;
    line-height: 0.86;
    letter-spacing: 0.42rem;
  }

  .logo-tagline {
    margin-top: 10px;
    margin-left: -8px;
    font-size: 0.43rem;
    letter-spacing: 0.27rem;
  }

  .hero-booking-form {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)) padding-box,
      linear-gradient(135deg, rgba(23, 106, 208, 0.78), rgba(46, 200, 190, 0.58)) border-box;
    border: 1.5px solid transparent;
    box-shadow: 0 18px 42px rgba(11, 35, 72, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  }

  .hero-search-btn {
    background: linear-gradient(135deg, #1f7fdc 0%, #16c2bc 100%);
    color: #fff;
    box-shadow: 0 18px 30px rgba(22, 122, 209, 0.3);
  }

  .hero-search-btn:hover,
  .hero-search-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 34px rgba(22, 122, 209, 0.34);
  }

  .section {
    padding: 56px var(--page-gutter);
  }

  .section-header {
    gap: 8px;
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 1.95rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .section-header p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .benefits {
    padding-top: 42px;
    padding-bottom: 26px;
  }

  .benefits-grid {
    gap: 16px;
  }

  .benefit-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .benefit-card h3 {
    font-size: 1.55rem;
    line-height: 1.14;
  }

  .benefit-card li,
  .tier-features li,
  .strip-item,
  .pink-item,
  .faq-answer-inner,
  .footer,
  .footer-bottom,
  .footer-tagline,
  .process-card p,
  .step p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .route-selector {
    gap: 8px;
    padding-bottom: 2px;
  }

  .route-btn {
    font-size: 0.92rem;
    padding: 11px 16px;
  }

  .tier-grid {
    gap: 16px;
  }

  .tier-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .tier-card h3 {
    font-size: 1.45rem;
  }

  .tier-price {
    font-size: 2rem;
  }

  .faq {
    padding-top: 46px;
  }

  .faq-question {
    font-size: 1rem;
    line-height: 1.45;
    padding: 18px 18px;
  }

  .faq-answer-inner {
    padding: 0 18px 18px;
  }

  .footer {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .logo-block {
    transform: translate(-7px, -8px);
  }

  .logo-block .logo {
    font-size: 1.4rem;
    letter-spacing: 0.36rem;
  }

  .logo-tagline {
    margin-left: -10px;
    font-size: 0.4rem;
    letter-spacing: 0.23rem;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p,
  .benefit-card li,
  .tier-features li,
  .strip-item,
  .pink-item,
  .faq-answer-inner,
  .step p {
    font-size: 0.9rem;
  }

  .benefit-card h3,
  .tier-card h3,
  .step h3 {
    font-size: 1.34rem;
  }

  .tier-price {
    font-size: 1.86rem;
  }
}

/* Mobile corrections: restore strips, tidy footer, nudge hero title down */
@media (max-width: 700px) {
  .hero-content.hero-simple .hero-copy {
    transform: translateY(-84px);
  }

  .pink-strip {
    padding-top: 0;
  }

  .pink-strip-inner {
    justify-content: flex-start;
    gap: 6px;
    padding: 8px 4vw 0;
    overflow: hidden;
  }

  .pink-item {
    font-size: 0 !important;
    line-height: 1;
    padding: 0 !important;
    min-height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .pink-item .pink-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background: #f5b2d1;
    box-shadow: none;
  }

  .pink-item .pink-icon svg {
    width: 12px;
    height: 12px;
    stroke: #8c2b4d;
  }

  .pink-item.active .pink-icon {
    background: #ff5fa3;
    box-shadow: 0 0 0 2px rgba(255, 95, 163, 0.18);
    transform: scale(1.08);
  }

  .pink-item.active .pink-icon svg {
    stroke: #fff;
  }

  .pink-item.highlight {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem !important;
    font-weight: 700;
    line-height: 1.2;
    padding: 4px 8px !important;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 147, 198, 0.95), rgba(255, 113, 171, 0.9));
    box-shadow: 0 10px 20px rgba(235, 92, 154, 0.18);
  }

  .pink-item.highlight .pink-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: rgba(255, 255, 255, 0.28);
  }

  .pink-mobile-label {
    display: block;
    padding: 4px 4vw 8px;
    font-size: 0.85rem !important;
    line-height: 1.35;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px var(--page-gutter) 22px;
  }

  .footer-brand,
  .footer-center,
  .footer-apps,
  .footer-right {
    background: #fff;
    border: 1px solid rgba(224, 233, 244, 0.95);
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 10px 22px rgba(12, 35, 68, 0.06);
  }

  .footer-brand .logo {
    font-size: 1.3rem;
    letter-spacing: 0.32rem;
    line-height: 0.92;
  }

  .footer-tagline {
    font-size: 0.58rem !important;
    letter-spacing: 0.22rem;
    margin-top: 8px;
  }

  .footer h4 {
    font-size: 0.84rem;
    margin-bottom: 10px;
    color: rgba(12, 38, 70, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .footer a,
  .footer span,
  .footer p {
    font-size: 0.9rem !important;
    line-height: 1.5;
  }

  .store-links {
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px var(--page-gutter) 24px;
  }

  .footer-bottom-legal {
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-policy-btn {
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(220, 229, 240, 0.95);
  }

  .footer-bottom-copy {
    font-size: 0.82rem !important;
    text-align: left;
    color: rgba(12, 38, 70, 0.56);
  }
}

@media (max-width: 480px) {
  .hero-content.hero-simple .hero-copy {
    transform: translateY(-106px);
  }

  .footer {
    gap: 14px;
  }

  .footer-brand,
  .footer-center,
  .footer-apps,
  .footer-right {
    padding: 14px 14px 12px;
    border-radius: 16px;
  }

  .pink-item.highlight {
    font-size: 0.64rem !important;
    padding: 4px 7px !important;
  }
}

/* Mobile footer fix */
@media (max-width: 700px) {
  .footer {
    background: linear-gradient(180deg, #f5f9ff 0%, #eef5ff 100%);
    color: var(--navy-900);
    padding: 24px var(--page-gutter) 18px;
    gap: 14px;
  }

  .footer-brand,
  .footer-center,
  .footer-apps,
  .footer-right {
    display: block;
    background: #ffffff;
    color: var(--navy-900);
    text-align: left;
    justify-self: stretch;
  }

  .footer h4,
  .footer a,
  .footer span,
  .footer p,
  .footer-tagline,
  .footer-bottom,
  .footer-bottom-copy,
  .footer-policy-btn {
    color: var(--navy-900);
  }

  .footer a {
    color: #245d9f;
  }

  .footer span,
  .footer p,
  .footer-tagline,
  .footer-bottom-copy {
    color: rgba(10, 31, 58, 0.72);
  }

  .footer h4 {
    color: rgba(10, 31, 58, 0.58);
  }

  .footer-divider {
    width: calc(100% - (2 * var(--page-gutter)));
    background: rgba(148, 175, 209, 0.32);
  }

  .footer-bottom {
    background: linear-gradient(180deg, #eef5ff 0%, #f7fbff 100%);
  }

  .footer-policy-btn {
    background: #ffffff;
    border-color: rgba(220, 229, 240, 0.95);
  }
}

/* Mobile footer final correction: keep brand gradient and readable content */
@media (max-width: 700px) {
  .footer {
    background: var(--brand-gradient);
    color: var(--white);
    padding: 24px var(--page-gutter) 20px;
    gap: 14px;
  }

  .footer-brand,
  .footer-center,
  .footer-apps,
  .footer-right {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 22px rgba(7, 26, 47, 0.12);
    color: var(--white);
  }

  .footer h4 {
    color: rgba(255, 255, 255, 0.76);
  }

  .footer a {
    color: rgba(255, 255, 255, 0.94);
  }

  .footer span,
  .footer p,
  .footer-tagline,
  .footer-bottom-copy {
    color: rgba(255, 255, 255, 0.82);
  }

  .footer-brand .logo {
    color: var(--white);
  }

  .footer-divider {
    width: calc(100% - (2 * var(--page-gutter)));
    background: rgba(255, 255, 255, 0.2);
  }

  .footer-bottom {
    background: var(--brand-gradient);
    color: rgba(255, 255, 255, 0.84);
  }

  .footer-bottom-legal {
    justify-content: flex-start;
  }

  .footer-policy-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
  }
}

/* Final mobile sizing + footer cleanup */
@media (max-width: 700px) {
  .section {
    padding: 44px var(--page-gutter);
  }

  .section-header {
    gap: 6px;
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: 1.7rem;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .section-header p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .benefits {
    padding-top: 34px;
    padding-bottom: 20px;
  }

  .benefits-grid,
  .tier-grid,
  .faq-list {
    gap: 14px;
  }

  .benefit-card,
  .tier-card,
  .step,
  .faq-item {
    border-radius: 20px;
  }

  .benefit-card,
  .tier-card {
    padding: 18px 16px;
  }

  .benefit-icon,
  .tier-icon,
  .icon-tile {
    width: 50px;
    height: 50px;
  }

  .benefit-card h3,
  .tier-card h3,
  .step h3 {
    font-size: 1.22rem;
    line-height: 1.18;
  }

  .benefit-card li,
  .tier-features li,
  .step p,
  .faq-answer-inner,
  .strip-item,
  .pink-mobile-label,
  .footer a,
  .footer span,
  .footer p,
  .footer-bottom-copy {
    font-size: 0.86rem !important;
    line-height: 1.5;
  }

  .tier-price {
    font-size: 1.72rem;
    margin: 6px 0 10px;
  }

  .tier-price span {
    font-size: 0.8rem;
  }

  .route-selector {
    gap: 8px;
    margin-top: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .route-btn {
    font-size: 0.86rem;
    padding: 10px 14px;
    white-space: nowrap;
  }

  .steps {
    gap: 14px;
  }

  .step {
    padding: 18px 16px 20px;
  }

  .faq-question {
    padding: 16px 16px;
    font-size: 0.94rem;
    line-height: 1.4;
  }

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

  .footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px var(--page-gutter) 12px;
    background: var(--brand-gradient);
    color: var(--white);
  }

  .footer-brand,
  .footer-center,
  .footer-apps,
  .footer-right {
    display: block;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: left;
    justify-self: stretch;
  }

  .footer-brand {
    padding-bottom: 6px;
  }

  .footer-brand .logo {
    font-size: 1.34rem;
    line-height: 0.92;
    letter-spacing: 0.3rem;
    color: var(--white);
  }

  .footer-tagline {
    margin-top: 8px;
    margin-left: -4px;
    font-size: 0.56rem !important;
    letter-spacing: 0.18rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer h4 {
    margin-bottom: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.64);
  }

  .footer a,
  .footer span,
  .footer p {
    color: rgba(255, 255, 255, 0.88);
    margin-top: 4px;
  }

  .store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .store-badge {
    width: 148px;
    height: 48px;
  }

  .store-badge-img {
    width: 148px;
    height: 48px;
  }

  .footer-divider {
    width: calc(100% - (2 * var(--page-gutter)));
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.18);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px var(--page-gutter) 22px;
    background: var(--brand-gradient);
    color: rgba(255, 255, 255, 0.82);
  }

  .footer-bottom-legal {
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-policy-btn {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 0.8rem;
  }

  .footer-bottom-copy {
    text-align: left;
    color: rgba(255, 255, 255, 0.76);
  }
}

@media (max-width: 480px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.56rem;
  }

  .section-header p,
  .benefit-card li,
  .tier-features li,
  .step p,
  .faq-answer-inner,
  .strip-item,
  .pink-mobile-label,
  .footer a,
  .footer span,
  .footer p,
  .footer-bottom-copy {
    font-size: 0.82rem !important;
  }

  .benefit-card h3,
  .tier-card h3,
  .step h3 {
    font-size: 1.14rem;
  }

  .benefit-card,
  .tier-card,
  .step {
    padding: 16px 14px;
  }

  .benefit-icon,
  .tier-icon,
  .icon-tile {
    width: 46px;
    height: 46px;
  }

  .tier-price {
    font-size: 1.58rem;
  }

  .footer-brand .logo {
    font-size: 1.24rem;
    letter-spacing: 0.26rem;
  }

  .footer-tagline {
    font-size: 0.52rem !important;
    letter-spacing: 0.15rem;
  }
}

/* Mobile breathing room */
@media (max-width: 700px) {
  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .benefits {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .pink-strip,
  .green-strip {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .section + .section {
    margin-top: 6px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .benefits-grid,
  .tier-grid,
  .faq-list,
  .steps {
    gap: 18px;
  }

  .route-selector {
    margin-top: 10px;
    padding-bottom: 6px;
  }

  .footer {
    margin-top: 12px;
    padding-top: 28px;
  }

  .footer-bottom {
    padding-top: 16px;
    padding-bottom: 26px;
  }
}

@media (max-width: 480px) {
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-header {
    margin-bottom: 26px;
  }

  .benefits-grid,
  .tier-grid,
  .faq-list,
  .steps {
    gap: 16px;
  }
}

/* Restore mobile green strip spacing */
@media (max-width: 700px) {
  .green-strip {
    margin-top: 0;
    margin-bottom: 0;
  }

  .green-strip-inner {
    padding: 8px 4vw 0;
    gap: 6px;
  }

  .green-mobile-label {
    padding: 4px 4vw 8px;
  }
}

/* Force restore mobile green strip layout */
@media (max-width: 700px) {
  .green-strip {
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
  }

  .green-strip-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    padding: 8px 4vw 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    font-size: 0.76rem !important;
  }

  .green-strip-inner .strip-item {
    order: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    font-size: 0 !important;
    line-height: 1 !important;
    padding: 0 !important;
    min-height: auto !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    white-space: nowrap !important;
  }

  .green-strip-inner .strip-icon {
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    background: #9fe8cf !important;
    color: #0f6d53 !important;
    animation: none !important;
  }

  .green-strip-inner .strip-item .strip-icon svg {
    width: 12px !important;
    height: 12px !important;
    stroke: #0f6d53 !important;
  }

  .green-strip-inner .strip-item.active .strip-icon {
    background: #1fbf84 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 2px rgba(31, 191, 132, 0.18) !important;
    transform: scale(1.04) !important;
  }

  .green-strip-inner .strip-item.active .strip-icon svg,
  .green-strip-inner .strip-item.highlight .strip-icon svg {
    stroke: #ffffff !important;
  }

  .green-strip-inner .strip-item.highlight {
    order: 2 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    white-space: normal !important;
  }

  .green-strip-inner .strip-item.highlight .strip-icon {
    width: 52px !important;
    height: 26px !important;
    flex: 0 0 52px !important;
    border-radius: 999px !important;
    background: #1fbf84 !important;
    color: #ffffff !important;
  }

  .green-strip-inner .strip-item.highlight .strip-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .green-mobile-label {
    display: block !important;
    padding: 4px 4vw 8px !important;
    font-size: 0.85rem !important;
    line-height: 1.35 !important;
  }
}

/* Compact mobile footer layout */
@media (max-width: 700px) {
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand brand"
      "contact apps"
      "routes routes";
    column-gap: 16px;
    row-gap: 24px;
    padding: 24px 16px 12px;
    align-items: start;
  }

  .footer-brand,
  .footer-center,
  .footer-apps,
  .footer-right {
    min-width: 0;
    justify-self: stretch;
  }

  .footer-brand {
    grid-area: brand;
    padding-bottom: 0;
  }

  .footer-center {
    grid-area: contact;
    text-align: left;
  }

  .footer-apps {
    grid-area: apps;
    gap: 8px;
  }

  .footer-right {
    grid-area: routes;
    text-align: left;
  }

  .footer h4 {
    margin-bottom: 8px;
  }

  .footer a,
  .footer span,
  .footer p {
    margin-top: 4px;
  }

  .store-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .store-badge {
    width: 100%;
    max-width: none;
    height: 42px;
  }

  .store-badge-img {
    width: 100%;
    height: 42px;
  }

  .footer-right span {
    margin-top: 2px;
    line-height: 1.35;
  }

  .footer-bottom {
    gap: 8px;
    padding: 12px 16px 20px;
  }

  .footer-bottom-legal {
    gap: 8px;
  }

  .footer-policy-btn {
    padding: 7px 10px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contact"
      "apps"
      "routes";
    row-gap: 20px;
    padding: 22px 16px 10px;
  }

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

  .store-badge,
  .store-badge-img {
    height: 40px;
  }

  .footer-right span {
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding: 12px 16px 18px;
  }
}

/* Mobile footer inspired by compact single-column reference */
@media (max-width: 700px) {
  .footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contact"
      "routes"
      "apps";
    row-gap: 28px;
    padding: 28px 20px 18px;
    background: var(--brand-gradient);
    color: #ffffff;
  }

  .footer-brand,
  .footer-center,
  .footer-right,
  .footer-apps {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: left;
  }

  .footer-brand {
    grid-area: brand;
    padding-left: 8px;
  }

  .footer-center {
    grid-area: contact;
  }

  .footer-right {
    grid-area: routes;
  }

  .footer-apps {
    grid-area: apps;
    gap: 10px;
  }

  .logo-tagline {
    margin-top: 10px;
    margin-left: -6px;
    font-size: 0.48rem;
    letter-spacing: 0.3rem;
  }

  .footer-brand .logo {
    font-size: 1.78rem;
    line-height: 0.86;
    letter-spacing: 0.46rem;
    font-weight: 700;
    color: #ffffff;
  }

  .footer-tagline {
    margin-top: 10px;
    margin-left: -20px;
    font-size: 0.17rem !important;
    letter-spacing: 0.05rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer h4 {
    margin-bottom: 12px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #ffffff;
  }

  .footer a,
  .footer span,
  .footer p {
    margin-top: 8px;
    font-size: 0.98rem !important;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.86);
  }

  .footer a {
    color: rgba(255, 255, 255, 0.92);
  }

  .footer-right span {
    margin-top: 6px;
  }

  .store-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .store-badge,
  .store-badge-img {
    width: 100%;
    height: 42px;
  }

  .footer-divider {
    width: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.16);
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px 24px;
    background: var(--brand-gradient);
  }

  .footer-bottom-legal {
    gap: 10px;
  }

  .footer-policy-btn {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    font-weight: 500;
  }

  .footer-bottom-copy {
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.92rem !important;
    text-align: left;
    color: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 480px) {
  .footer {
    row-gap: 24px;
    padding: 24px 16px 16px;
  }

  .footer-brand {
    padding-left: 10px;
  }

  .logo-tagline {
    margin-left: -8px;
    font-size: 0.46rem;
    letter-spacing: 0.26rem;
  }

  .footer-brand .logo {
    font-size: 1.62rem;
    letter-spacing: 0.4rem;
  }

  .footer-tagline {
    margin-left: -22px;
    font-size: 0.15rem !important;
    letter-spacing: 0.04rem;
  }

  .footer a,
  .footer span,
  .footer p,
  .footer-policy-btn {
    font-size: 0.92rem !important;
  }

  .footer-bottom {
    padding: 14px 16px 22px;
  }

  .footer-divider {
    width: calc(100% - 32px);
  }
}

/* Final mobile refinements */
@media (max-width: 700px) {
  .how .section-header {
    text-align: center;
    align-items: center;
  }
}

/* Mobile hero final adjustment */
@media (max-width: 700px) {
  .hero-content.hero-simple .hero-copy {
    transform: translateY(-68px) !important;
  }

  .logo-block .logo {
    letter-spacing: 0.5rem !important;
  }

  .logo-tagline {
    margin-left: -14px !important;
    font-size: 0.5rem !important;
    letter-spacing: 0.2rem !important;
  }
}

@media (max-width: 480px) {
  .hero-content.hero-simple .hero-copy {
    transform: translateY(-90px) !important;
  }

  .logo-block .logo {
    letter-spacing: 0.44rem !important;
  }

  .logo-tagline {
    margin-left: -16px !important;
    font-size: 0.46rem !important;
    letter-spacing: 0.16rem !important;
  }
}

/* Final mobile polish overrides */
@media (max-width: 700px) {
  .hero-content.hero-simple .hero-copy {
    transform: translateY(-36px) !important;
  }

  .logo-block .logo {
    letter-spacing: 0.56rem !important;
  }

  .logo-tagline {
    margin-left: -26px !important;
    font-size: 0.58rem !important;
    letter-spacing: 0.13rem !important;
  }

  .how .section-header {
    text-align: center;
    align-items: center;
  }

  .steps-carousel {
    padding: 0 8px;
  }

  .steps-viewport {
    overflow: hidden;
    width: 100%;
  }

  .steps {
    width: 100%;
    align-items: stretch;
  }

  .step {
    width: 100%;
    min-width: 100%;
    margin: 0 auto;
  }

  .step-content,
  .step p,
  .step h3 {
    text-align: center;
  }

  .route-selector {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow: visible;
  }

  .route-btn {
    min-width: 0;
    width: 100%;
    white-space: normal;
    text-align: center;
    padding: 9px 8px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .tier-card.highlight {
    padding-top: 54px;
  }

  .tier-pill.top-right.primary {
    top: 12px;
    right: 12px;
    font-size: 0.67rem;
    padding: 5px 9px;
    border-radius: 999px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-question {
    padding: 13px 14px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .faq-answer-inner {
    padding: 0 14px 14px;
    font-size: 0.88rem;
  }

  .footer-brand .logo {
    letter-spacing: 0.4rem !important;
  }

  .footer-tagline {
    margin-top: 12px !important;
    margin-left: -10px !important;
    font-size: 0.13rem !important;
    letter-spacing: 0.03rem !important;
  }
}

@media (max-width: 480px) {
  .hero-content.hero-simple .hero-copy {
    transform: translateY(-22px) !important;
  }

  .logo-block {
    margin-left: -4px;
  }

  .logo-block .logo {
    letter-spacing: 0.6rem !important;
  }

  .logo-tagline {
    margin-left: -30px !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.11rem !important;
  }

  .hero-copy h1 {
    transform: translateY(16px);
  }

  .steps-carousel {
    padding: 0 4px;
  }

  .steps-nav.prev {
    left: 6px;
  }

  .steps-nav.next {
    right: 6px;
  }

  .step {
    border-radius: 18px;
  }

  .tier-card.highlight {
    padding-top: 58px;
  }

  .tier-pill.top-right.primary {
    font-size: 0.62rem;
    padding: 4px 8px;
  }

  .faq-question {
    padding: 12px 13px;
    font-size: 0.82rem;
  }

  .faq-answer-inner {
    padding: 0 13px 13px;
    font-size: 0.84rem;
  }

  .footer-brand .logo {
    letter-spacing: 0.46rem !important;
  }

  .footer-tagline {
    margin-top: 14px !important;
    margin-left: -8px !important;
    font-size: 0.12rem !important;
    letter-spacing: 0.025rem !important;
  }
}

/* Mobile cleanup tweaks */
@media (max-width: 700px) {
  .steps-viewport {
    padding: 0 40px;
    box-sizing: border-box;
  }

  .steps {
    justify-content: flex-start;
  }

  .step {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .tier-pill.top-right.primary {
    top: 10px;
    right: 10px;
    font-size: 0.48rem;
    line-height: 1;
    padding: 2px 4px;
  }

  .tier-card.highlight {
    padding-top: 60px;
  }

  .faq-question {
    padding: 11px 12px;
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .faq-answer-inner {
    padding: 0 12px 12px;
    font-size: 0.83rem;
  }
}

@media (max-width: 480px) {
  .steps-viewport {
    padding: 0 36px;
  }

  .steps-nav {
    width: 34px;
    height: 34px;
  }

  .steps-nav.prev {
    left: 2px;
  }

  .steps-nav.next {
    right: 2px;
  }

  .tier-pill.top-right.primary {
    top: 9px;
    right: 9px;
    font-size: 0.44rem;
    padding: 2px 4px;
  }

  .tier-card.highlight {
    padding-top: 62px;
  }

  .faq-question {
    padding: 10px 11px;
    font-size: 0.76rem;
  }

  .faq-answer-inner {
    padding: 0 11px 11px;
    font-size: 0.8rem;
  }
}

/* Mobile steps centering fix */
@media (max-width: 700px) {
  .steps-carousel {
    padding: 0;
  }

  .steps-viewport {
    width: calc(100% - 72px);
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
  }

  .steps {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: none;
  }

  .step {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .steps-nav.prev {
    left: 4px;
  }

  .steps-nav.next {
    right: 4px;
  }
}

@media (max-width: 480px) {
  .steps-viewport {
    width: calc(100% - 64px);
  }

  .steps-nav.prev {
    left: 0;
  }

  .steps-nav.next {
    right: 0;
  }
}

/* Mobile steps final centering tweak */
@media (max-width: 700px) {
  .steps-viewport {
    width: calc(100% - 56px) !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }

  .steps {
    align-items: stretch;
  }

  .step {
    flex: 0 0 calc(100% - 6px) !important;
    min-width: calc(100% - 6px) !important;
    max-width: calc(100% - 6px) !important;
    margin: 0 3px !important;
  }
}

@media (max-width: 480px) {
  .steps-viewport {
    width: calc(100% - 52px) !important;
  }

  .step {
    flex: 0 0 calc(100% - 4px) !important;
    min-width: calc(100% - 4px) !important;
    max-width: calc(100% - 4px) !important;
    margin: 0 2px !important;
  }
}

/* Mobile most-popular pill size fix */
@media (max-width: 700px) {
  .tier-pill.top-right.primary {
    top: 8px !important;
    right: 8px !important;
    font-size: 0.4rem !important;
    padding: 2px 3px !important;
    letter-spacing: 0.01em !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .tier-pill.top-right.primary {
    top: 7px !important;
    right: 7px !important;
    font-size: 0.36rem !important;
    padding: 1px 3px !important;
    letter-spacing: 0 !important;
  }
}

/* Force smaller comfort pill on mobile */
@media (max-width: 700px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    top: 6px !important;
    right: 6px !important;
    font-size: 0.34rem !important;
    line-height: 1 !important;
    padding: 1px 4px !important;
    min-height: 0 !important;
    min-width: 0 !important;
    max-width: fit-content !important;
    border-radius: 999px !important;
    letter-spacing: 0 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 480px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    top: 6px !important;
    right: 6px !important;
    font-size: 0.3rem !important;
    padding: 1px 3px !important;
  }
}

/* Force visual shrink of Most Popular pill on mobile */
@media (max-width: 700px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: scale(0.72) !important;
    transform-origin: top right !important;
  }
}

@media (max-width: 480px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    transform: scale(0.64) !important;
    transform-origin: top right !important;
  }
}

/* Extra-strong mobile shrink for Most Popular pill */
@media (max-width: 700px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    font-size: 0.44rem !important;
    padding: 2px 5px !important;
    line-height: 1 !important;
    transform: scale(0.82) !important;
    transform-origin: top right !important;
  }
}

@media (max-width: 480px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    font-size: 0.4rem !important;
    padding: 2px 4px !important;
    transform: scale(0.74) !important;
    transform-origin: top right !important;
  }
}

/* Mobile comfort pill final alignment */
@media (max-width: 700px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    top: 16px !important;
    right: 10px !important;
    font-size: 0.5rem !important;
    padding: 3px 7px !important;
    transform: none !important;
    transform-origin: top right !important;
  }
}

@media (max-width: 480px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    top: 15px !important;
    right: 9px !important;
    font-size: 0.46rem !important;
    padding: 3px 6px !important;
    transform: none !important;
  }
}

/* Restore larger mobile comfort pill */
@media (max-width: 700px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    top: 12px !important;
    right: 12px !important;
    font-size: 0.67rem !important;
    padding: 5px 9px !important;
    line-height: 1 !important;
    transform: none !important;
    letter-spacing: 0.01em !important;
  }
}

@media (max-width: 480px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    top: 9px !important;
    right: 9px !important;
    font-size: 0.62rem !important;
    padding: 4px 8px !important;
    transform: none !important;
    letter-spacing: 0.01em !important;
  }
}

/* Mobile comfort pill align like best value */
@media (max-width: 700px) {
  .tier-card.highlight {
    padding-top: 44px !important;
  }

  .tier-card.highlight .tier-head {
    padding-right: 118px;
  }

  .tier-card.highlight .tier-pill.top-right.primary {
    top: 12px !important;
    right: 12px !important;
    font-size: 0.65rem !important;
    padding: 4px 10px !important;
    letter-spacing: 0.04em !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .tier-card.highlight {
    padding-top: 44px !important;
  }

  .tier-card.highlight .tier-head {
    padding-right: 110px;
  }

  .tier-card.highlight .tier-pill.top-right.primary {
    top: 10px !important;
    right: 10px !important;
    font-size: 0.6rem !important;
    padding: 4px 9px !important;
    letter-spacing: 0.04em !important;
    transform: none !important;
  }
}

/* Mobile hero tagline alignment tweak */
@media (max-width: 700px) {
  .hero .logo-tagline {
    margin-left: -18px !important;
  }
}

@media (max-width: 480px) {
  .hero .logo-tagline {
    margin-left: -20px !important;
  }
}

/* Mobile hero tagline alignment tweak 2 */
@media (max-width: 700px) {
  .hero .logo-tagline {
    margin-left: -12px !important;
  }
}

@media (max-width: 480px) {
  .hero .logo-tagline {
    margin-left: -14px !important;
  }
}

/* Mobile hero title position tweak */
@media (max-width: 700px) {
  .hero .hero-copy h1 {
    transform: translateY(40px) !important;
  }
}

@media (max-width: 480px) {
  .hero .hero-copy h1 {
    transform: translateY(34px) !important;
  }
}

/* Mobile route pill sizing tweak */
@media (max-width: 700px) {
  .route-selector {
    gap: 6px;
  }

  .route-btn {
    padding: 8px 8px !important;
    font-size: 0.76rem !important;
    line-height: 1.16 !important;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 480px) {
  .route-btn {
    padding: 7px 7px !important;
    font-size: 0.72rem !important;
  }
}

/* Mobile comfort pill slightly bigger and level with title */
@media (max-width: 700px) {
  .tier-card.highlight {
    padding-top: 42px !important;
  }

  .tier-card.highlight .tier-head {
    padding-right: 112px !important;
    align-items: center;
  }

  .tier-card.highlight .tier-pill.top-right.primary {
    top: 11px !important;
    right: 10px !important;
    font-size: 0.64rem !important;
    padding: 4px 8px !important;
    line-height: 1 !important;
    letter-spacing: 0.03em !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .tier-card.highlight {
    padding-top: 40px !important;
  }

  .tier-card.highlight .tier-head {
    padding-right: 104px !important;
  }

  .tier-card.highlight .tier-pill.top-right.primary {
    top: 10px !important;
    right: 9px !important;
    font-size: 0.6rem !important;
    padding: 4px 7px !important;
    letter-spacing: 0.025em !important;
  }
}

/* Mobile comfort pill aligned same as other ride tags */
@media (max-width: 700px) {
  .tier-card.highlight {
    padding-top: 44px !important;
  }

  .tier-card.highlight .tier-head {
    padding-right: 0 !important;
  }

  .tier-card.highlight .tier-pill.top-right.primary {
    top: 12px !important;
    right: 12px !important;
    font-size: 0.65rem !important;
    padding: 4px 10px !important;
    line-height: 1 !important;
    letter-spacing: 0.04em !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .tier-card.highlight {
    padding-top: 44px !important;
  }

  .tier-card.highlight .tier-head {
    padding-right: 0 !important;
  }

  .tier-card.highlight .tier-pill.top-right.primary {
    top: 10px !important;
    right: 10px !important;
    font-size: 0.6rem !important;
    padding: 4px 9px !important;
    line-height: 1 !important;
    letter-spacing: 0.04em !important;
    transform: none !important;
  }
}

/* Mobile comfort pill vertical alignment fix */
@media (max-width: 700px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    top: 24px !important;
    right: 12px !important;
    font-size: 0.64rem !important;
    padding: 4px 10px !important;
    line-height: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .tier-card.highlight .tier-pill.top-right.primary {
    top: 22px !important;
    right: 10px !important;
    font-size: 0.6rem !important;
    padding: 4px 9px !important;
  }
}

/* Mobile footer tagline tiny size */
@media (max-width: 700px) {
  .footer .footer-tagline {
    font-size: 0.14rem !important;
    letter-spacing: 0.02rem !important;
  }
}

@media (max-width: 480px) {
  .footer .footer-tagline {
    font-size: 0.12rem !important;
    letter-spacing: 0.015rem !important;
  }
}

/* Mobile footer logo/tagline width alignment */
@media (max-width: 700px) {
  .footer .footer-brand {
    width: fit-content;
  }

  .footer .footer-brand .logo {
    letter-spacing: 0.46rem !important;
  }

  .footer .footer-tagline {
    display: block !important;
    width: 100% !important;
    margin-left: -18px !important;
    font-size: 0.92rem !important;
    letter-spacing: 0.034rem !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 480px) {
  .footer .footer-brand .logo {
    letter-spacing: 0.44rem !important;
  }

  .footer .footer-tagline {
    margin-left: -16px !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.03rem !important;
    white-space: nowrap !important;
  }
}

/* Mobile search bar responsiveness polish */
@media (max-width: 700px) {
  .hero-booking-wrap {
    padding-top: 8px !important;
  }

  .hero-booking-form {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .hero-nice-select .nice-trigger {
    width: 100%;
    text-align: left;
    transition: color 180ms ease;
  }

  .hero-nice-select .nice-panel {
    transition: opacity 160ms ease, transform 160ms ease;
    will-change: transform, opacity;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .hero-nice-select.open .nice-panel {
    transform: translateY(0);
    opacity: 1;
  }

  .hero-nice-select .nice-option {
    transition: background 160ms ease, transform 160ms ease;
  }

  .hero-nice-select .nice-option:active {
    transform: scale(0.99);
  }
}

/* Mobile search dropdown visual polish */
@media (max-width: 700px) {
  .hero-nice-select .nice-panel {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(213, 226, 241, 0.95) !important;
    box-shadow: 0 22px 44px rgba(8, 32, 66, 0.16) !important;
    border-radius: 18px !important;
    padding: 8px !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .hero-nice-select .nice-option {
    display: grid !important;
    grid-template-columns: 10px 1fr !important;
    gap: 12px !important;
    align-items: center !important;
    width: 100% !important;
    padding: 12px 13px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: transparent !important;
    text-align: left !important;
  }

  .hero-nice-select .nice-option:hover,
  .hero-nice-select .nice-option:focus-visible {
    background: linear-gradient(180deg, rgba(31, 127, 220, 0.08) 0%, rgba(29, 201, 183, 0.08) 100%) !important;
    outline: none !important;
  }

  .hero-nice-select .nice-option.selected {
    background: linear-gradient(180deg, rgba(31, 127, 220, 0.12) 0%, rgba(29, 201, 183, 0.12) 100%) !important;
  }

  .hero-nice-select .nice-option .dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 999px !important;
    background: rgba(31, 127, 220, 0.18) !important;
    border: 1px solid rgba(31, 127, 220, 0.18) !important;
  }

  .hero-nice-select .nice-option.selected .dot {
    background: linear-gradient(135deg, #1f7fdc 0%, #1dc9b7 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 0 0 4px rgba(31, 127, 220, 0.1) !important;
  }

  .hero-nice-select .nice-option strong {
    display: block !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    color: #143257 !important;
    line-height: 1.25 !important;
  }

  .hero-nice-select .nice-option small {
    display: block !important;
    margin-top: 2px !important;
    font-size: 0.74rem !important;
    color: rgba(20, 50, 87, 0.56) !important;
    line-height: 1.3 !important;
  }
}

/* Mobile search bar redesign */
.hero-mobile-search-intro,
.hero-mobile-search-trust {
  display: none;
}

@media (max-width: 700px) {
  .hero-booking-wrap {
    padding: 8px var(--page-gutter) 24px !important;
    background: linear-gradient(180deg, #edf6ff 0%, #f8fbff 100%) !important;
  }

  .hero-mobile-search-intro {
    display: block;
    text-align: center;
    margin: 0 auto 14px;
    max-width: 320px;
  }

  .hero-mobile-search-intro h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #132c54;
  }

  .hero-mobile-search-intro p {
    margin: 8px 0 0;
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(19, 44, 84, 0.68);
  }

  .hero-booking-form {
    padding: 16px 14px 14px !important;
    border-radius: 28px !important;
    border: 2px solid rgba(77, 172, 233, 0.45) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 24px 54px rgba(22, 67, 118, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  }

  .hero-booking-form::before {
    border-radius: 28px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 46%) !important;
  }

  .hero-booking-field {
    gap: 6px !important;
  }

  .hero-booking-field label {
    padding-left: 10px !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    color: rgba(20, 50, 87, 0.56) !important;
  }

  .hero-booking-control {
    min-height: 58px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(214, 228, 242, 0.95) !important;
    background: linear-gradient(180deg, #fdfefe 0%, #f3f7fd 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  }

  .hero-nice-select .nice-trigger,
  .hero-booking-field input {
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    color: #20406a !important;
  }

  .hero-field-icon {
    color: #3b88e8 !important;
  }

  .hero-search-btn {
    margin-top: 6px !important;
    height: 54px !important;
    border-radius: 999px !important;
    background: var(--brand-gradient) !important;
    color: #ffffff !important;
    box-shadow: 0 16px 28px rgba(27, 119, 216, 0.24) !important;
    font-size: 1rem !important;
    letter-spacing: -0.01em;
  }

  .hero-search-btn span,
  .hero-search-btn svg {
    color: #ffffff !important;
    stroke: currentColor !important;
  }

  .hero-mobile-search-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    margin-top: 12px;
    padding: 0 8px;
    color: rgba(19, 44, 84, 0.62);
    font-size: 0.8rem;
    line-height: 1.35;
    text-align: center;
  }

  .hero-mobile-search-trust strong {
    color: #24a97f;
    font-weight: 800;
  }
}

@media (max-width: 480px) {
  .hero-mobile-search-intro {
    margin-bottom: 12px;
  }

  .hero-mobile-search-intro h2 {
    font-size: 1.84rem;
  }

  .hero-mobile-search-intro p {
    font-size: 0.92rem;
  }

  .hero-booking-wrap {
    padding-top: 4px !important;
  }

  .hero-booking-form {
    padding: 14px 12px 12px !important;
    border-radius: 24px !important;
  }

  .hero-booking-form::before {
    border-radius: 24px !important;
  }

  .hero-booking-control {
    min-height: 54px !important;
    border-radius: 16px !important;
  }

  .hero-search-btn {
    height: 52px !important;
  }

  .hero-mobile-search-trust {
    font-size: 0.74rem;
    gap: 4px 8px;
  }
}


/* Mobile search bar position tweak */
@media (max-width: 700px) {
  .hero-booking-wrap {
    margin-top: -42px !important;
  }
}

@media (max-width: 480px) {
  .hero-booking-wrap {
    margin-top: -52px !important;
  }
}

/* Desktop hero search bar redesign */
@media (min-width: 701px) {
  .hero-booking-wrap {
    width: min(1720px, calc(100% - 72px));
    margin: 0 auto;
    padding-top: 18px;
  }

  .hero-mobile-search-intro {
    display: none !important;
  }

  .hero-booking-form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    padding: 18px 20px 16px;
    border-radius: 42px;
    border: 2px solid rgba(181, 233, 255, 0.72);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.28) 100%),
      rgba(218, 241, 255, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
      0 26px 58px rgba(12, 55, 105, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      inset 0 0 0 6px rgba(122, 213, 255, 0.18);
  }

  .hero-booking-form::before {
    border-radius: 42px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.06) 44%);
  }

  .hero-booking-field {
    gap: 10px;
    padding: 0;
  }

  .hero-booking-field label {
    padding-left: 18px;
    font-size: 0.96rem;
    font-weight: 800;
    color: rgba(23, 58, 103, 0.84);
  }

  .hero-booking-control {
    min-height: 82px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
    padding: 0 22px 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(181, 211, 241, 0.9);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 248, 255, 0.96) 100%);
    box-shadow:
      0 12px 26px rgba(16, 61, 118, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .hero-booking-field:hover .hero-booking-control,
  .hero-booking-field:focus-within .hero-booking-control {
    transform: translateY(-1px);
    box-shadow:
      0 16px 32px rgba(16, 61, 118, 0.16),
      0 0 0 4px rgba(74, 169, 236, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .hero-field-icon {
    width: 26px;
    height: 26px;
    color: #2989e6;
  }

  .hero-field-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-booking-field select,
  .hero-booking-field input,
  .hero-nice-select,
  .hero-search-btn {
    height: 82px;
  }

  .hero-nice-select .nice-trigger,
  .hero-booking-field input {
    font-size: 1.12rem;
    font-weight: 700;
    color: #173965;
  }

  .hero-nice-select .field-icon.chevron {
    color: rgba(39, 93, 163, 0.74);
  }

  .hero-nice-select .nice-panel {
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    border-radius: 24px;
    border: 1px solid rgba(205, 224, 241, 0.95);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 50px rgba(8, 32, 66, 0.18);
    padding: 10px;
  }

  .hero-nice-select .nice-option {
    border-radius: 18px;
    padding: 14px 16px;
  }

  .hero-search-btn {
    align-self: end;
    min-width: 320px;
    padding: 0 30px;
    border-radius: 999px;
    background: var(--brand-gradient) !important;
    color: #ffffff !important;
    box-shadow: 0 18px 32px rgba(13, 106, 191, 0.26);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
  }

  .hero-search-btn span,
  .hero-search-btn svg {
    color: #ffffff;
    stroke: currentColor;
  }

  .hero-mobile-search-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
    color: rgba(20, 56, 98, 0.88);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
  }

  .hero-mobile-search-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .hero-mobile-search-trust span + span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(75, 143, 225, 0.28);
    margin-right: 6px;
  }

  .hero-mobile-search-trust strong {
    color: #1f8fd2;
    font-weight: 900;
  }
}

/* Desktop hero search bar refinement */
@media (min-width: 701px) {
  .hero-booking-wrap {
    width: min(1680px, calc(100% - 88px));
    margin: 0 auto;
    padding: 18px 24px 16px;
    border-radius: 42px;
    border: 2px solid rgba(187, 231, 255, 0.82);
    background:
      linear-gradient(180deg, rgba(228, 246, 255, 0.48) 0%, rgba(209, 234, 249, 0.3) 100%),
      rgba(201, 232, 249, 0.26);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
      0 28px 58px rgba(11, 55, 104, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      inset 0 0 0 6px rgba(122, 213, 255, 0.15);
  }

  .hero-booking-form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) auto !important;
    gap: 20px !important;
    align-items: end !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .hero-booking-form::before {
    display: none !important;
  }

  .hero-swap-btn {
    display: none !important;
  }

  .hero-booking-field {
    gap: 8px !important;
  }

  .hero-booking-field label {
    padding-left: 16px !important;
    font-size: 0.9rem !important;
    color: rgba(25, 65, 110, 0.86) !important;
  }

  .hero-booking-control {
    min-height: 82px !important;
    padding: 0 22px 0 18px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(177, 206, 236, 0.92) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(242,248,255,0.98) 100%) !important;
    box-shadow: 0 14px 26px rgba(16, 62, 118, 0.12), inset 0 1px 0 rgba(255,255,255,0.95) !important;
  }

  .hero-field-icon {
    width: 24px !important;
    height: 24px !important;
  }

  .hero-field-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .hero-booking-field select,
  .hero-booking-field input,
  .hero-nice-select,
  .hero-search-btn {
    height: 82px !important;
  }

  .hero-nice-select .nice-trigger,
  .hero-booking-field input {
    font-size: 0.98rem !important;
    font-weight: 800 !important;
  }

  .hero-search-btn {
    min-width: 310px !important;
    padding: 0 30px !important;
    align-self: end !important;
    justify-self: stretch;
    border-radius: 999px !important;
    background: var(--brand-gradient) !important;
    color: #fff !important;
    box-shadow: 0 18px 34px rgba(17, 103, 192, 0.24) !important;
  }

  .hero-search-btn span,
  .hero-search-btn svg {
    color: #fff !important;
    stroke: currentColor !important;
  }

  .hero-mobile-search-trust {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
    font-size: 0.9rem;
    color: rgba(20, 56, 98, 0.88);
  }

  .hero-mobile-search-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .hero-mobile-search-trust span + span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(75, 143, 225, 0.28);
    margin-right: 4px;
  }
}

/* Final desktop hero search bar match */
@media (min-width: 701px) {
  .hero .hero-booking-wrap {
    width: min(1220px, calc(100% - 112px));
    margin: 0 auto;
    padding: 22px 24px 16px;
    border-radius: 38px;
    border: 2px solid rgba(210, 244, 255, 0.78);
    background:
      linear-gradient(180deg, rgba(232, 247, 255, 0.44) 0%, rgba(209, 233, 249, 0.2) 100%),
      rgba(209, 233, 249, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
      0 28px 64px rgba(10, 50, 102, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      inset 0 0 0 4px rgba(118, 223, 255, 0.12);
  }

  .hero .hero-mobile-search-intro {
    display: none !important;
  }

  .hero .hero-booking-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.96fr) minmax(260px, 0.92fr) !important;
    gap: 18px !important;
    align-items: end !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .hero .hero-booking-form::before {
    display: none !important;
  }

  .hero .hero-swap-btn {
    display: none !important;
  }

  .hero .hero-booking-field {
    gap: 10px !important;
    padding: 0 !important;
  }

  .hero .hero-booking-field label {
    padding-left: 16px !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: rgba(34, 74, 123, 0.84) !important;
  }

  .hero .hero-booking-control {
    min-height: 78px !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 0 20px 0 18px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(185, 212, 239, 0.88) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.97) 100%) !important;
    box-shadow:
      0 14px 28px rgba(16, 61, 118, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
  }

  .hero .hero-booking-field:hover .hero-booking-control,
  .hero .hero-booking-field:focus-within .hero-booking-control {
    transform: translateY(-1px) !important;
    box-shadow:
      0 18px 34px rgba(16, 61, 118, 0.16),
      0 0 0 4px rgba(74, 169, 236, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
  }

  .hero .hero-booking-field select,
  .hero .hero-booking-field input,
  .hero .hero-nice-select,
  .hero .hero-search-btn {
    height: 78px !important;
  }

  .hero .hero-field-icon {
    width: 24px !important;
    height: 24px !important;
    color: #2388e1 !important;
  }

  .hero .hero-field-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .hero .hero-nice-select .nice-trigger,
  .hero .hero-booking-field input {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #173965 !important;
  }

  .hero .hero-nice-select .field-icon.chevron {
    color: rgba(47, 95, 160, 0.72) !important;
  }

  .hero .hero-nice-select .nice-panel {
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 12px) !important;
    border-radius: 22px !important;
    border: 1px solid rgba(199, 223, 244, 0.92) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 22px 48px rgba(8, 32, 66, 0.18) !important;
    padding: 10px !important;
  }

  .hero .hero-nice-select .nice-option {
    border-radius: 16px !important;
    padding: 14px 16px !important;
  }

  .hero .hero-search-btn {
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 28px !important;
    align-self: end !important;
    justify-self: stretch !important;
    border-radius: 999px !important;
    background: var(--brand-gradient) !important;
    color: #ffffff !important;
    box-shadow: 0 18px 34px rgba(16, 102, 190, 0.28) !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
  }

  .hero .hero-search-btn span,
  .hero .hero-search-btn svg {
    color: #ffffff !important;
    stroke: currentColor !important;
  }

  .hero .hero-mobile-search-trust {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 14px !important;
    color: rgba(24, 64, 108, 0.86) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-align: center !important;
  }

  .hero .hero-mobile-search-trust span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .hero .hero-mobile-search-trust span + span::before {
    content: "" !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 999px !important;
    background: rgba(75, 143, 225, 0.24) !important;
    margin-right: 4px !important;
  }
}

/* Revert desktop hero search bar to earlier layout */
@media (min-width: 701px) {
  .hero .hero-mobile-search-intro,
  .hero .hero-mobile-search-trust {
    display: none !important;
  }

  .hero .hero-booking-wrap {
    position: relative;
    z-index: 20;
    width: min(1240px, 100%);
    padding: 24px 0 0;
    margin: 0 auto;
    margin-top: auto;
    border: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .hero .hero-booking-form {
    max-width: 1180px;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) auto minmax(0, 1.08fr) minmax(0, 1fr) auto;
    gap: 0;
    align-items: center;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.78) !important;
    box-shadow: 0 30px 78px rgba(7, 26, 47, 0.24) !important;
    padding: 12px 14px !important;
    position: relative;
  }

  .hero .hero-booking-form::before {
    display: block !important;
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 34%);
    pointer-events: none;
  }

  .hero .hero-booking-field {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 10px 20px;
    position: relative;
    align-self: center;
  }

  .hero .hero-booking-field label {
    font-size: 0.76rem;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(7, 35, 61, 0.56) !important;
    font-weight: 800;
    padding-left: 4px;
  }

  .hero .hero-booking-control {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 62px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(214, 228, 241, 0.45) !important;
    padding: 0 14px 0 12px !important;
    background: rgba(247, 250, 253, 0.92) !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .hero .hero-booking-field:hover .hero-booking-control {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(194, 213, 230, 0.62) !important;
  }

  .hero .hero-booking-field:focus-within .hero-booking-control {
    transform: scale(1.01) !important;
    border-color: rgba(31, 127, 220, 0.4) !important;
    box-shadow: 0 0 0 4px rgba(31, 127, 220, 0.12), 0 10px 24px rgba(31, 127, 220, 0.08) !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .hero .hero-field-icon {
    width: 22px !important;
    height: 22px !important;
    color: #1f7fdc !important;
  }

  .hero .hero-field-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .hero .hero-booking-field select,
  .hero .hero-booking-field input,
  .hero .hero-nice-select {
    height: 62px !important;
  }

  .hero .hero-nice-select .nice-trigger,
  .hero .hero-booking-field input {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: var(--navy-900) !important;
  }

  .hero .hero-nice-select .field-icon.chevron {
    color: rgba(7, 35, 61, 0.38) !important;
  }

  .hero .hero-nice-select .nice-panel {
    top: calc(100% + 12px) !important;
    left: -14px !important;
    right: -14px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(214, 228, 241, 0.8) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 22px 48px rgba(10, 41, 77, 0.16) !important;
    padding: 8px !important;
  }

  .hero .hero-nice-select .nice-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 14px;
  }

  .hero .hero-swap-btn {
    display: inline-flex !important;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(31, 127, 220, 0.12);
    border-radius: 999px;
    background: rgba(248, 251, 255, 0.98);
    color: #1f7fdc;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    box-shadow: 0 12px 24px rgba(10, 41, 77, 0.12);
    transform: translateY(8px);
    margin: 0;
  }

  .hero .hero-search-btn {
    height: 66px !important;
    padding: 0 38px !important;
    font-size: 1.02rem !important;
    border-radius: 999px !important;
    align-self: center;
    margin: 12px 6px 6px 14px !important;
    background: linear-gradient(135deg, #1f7fdc 0%, #18b7d8 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 20px 38px rgba(16, 102, 190, 0.34) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    min-width: auto !important;
    width: auto !important;
  }

  .hero .hero-search-btn span,
  .hero .hero-search-btn svg {
    color: #ffffff !important;
    stroke: currentColor !important;
  }
}

/* Keep desktop hero CTA in the same row */
@media (min-width: 701px) {
  .hero .hero-booking-form {
    grid-template-columns: minmax(0, 1.08fr) auto minmax(0, 1.08fr) minmax(0, 1fr) auto !important;
    align-items: center !important;
  }

  .hero .hero-search-btn {
    align-self: center !important;
    justify-self: start !important;
    margin: 0 0 0 14px !important;
    height: 62px !important;
    min-width: 240px !important;
    width: auto !important;
    white-space: nowrap !important;
  }
}

/* Force desktop Search Rides button to brand gradient */
@media (min-width: 701px) {
  .hero .hero-search-btn,
  .hero .hero-search-btn.btn,
  .hero .hero-booking-form .hero-search-btn {
    background: var(--brand-gradient) !important;
    background-image: var(--brand-gradient) !important;
    color: #ffffff !important;
  }

  .hero .hero-search-btn span,
  .hero .hero-search-btn svg,
  .hero .hero-search-btn.btn span,
  .hero .hero-search-btn.btn svg {
    color: #ffffff !important;
    stroke: currentColor !important;
  }
}

/* Mobile search highlight row */
@media (max-width: 700px) {
  .hero-mobile-search-trust {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-top: 14px !important;
    padding: 12px 16px !important;
    border-radius: 22px !important;
    background: linear-gradient(180deg, rgba(244, 249, 255, 0.98) 0%, rgba(235, 244, 255, 0.92) 100%) !important;
    box-shadow: 0 12px 26px rgba(31, 91, 158, 0.10) !important;
    color: #18345d !important;
    text-align: left !important;
  }

  .hero-mobile-search-trust::before,
  .hero-mobile-search-trust span + span::before {
    display: none !important;
    content: none !important;
  }

  .hero-search-highlight-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2a7fdf;
    background: rgba(42, 127, 223, 0.10);
    flex: 0 0 auto;
  }

  .hero-search-highlight-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.1;
  }

  .hero-search-highlight-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }

  .hero-search-highlight-copy strong {
    color: #15345f !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
  }

  .hero-search-highlight-copy small {
    color: rgba(21, 52, 95, 0.76);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .hero-mobile-search-trust {
    gap: 10px !important;
    padding: 11px 14px !important;
    border-radius: 20px !important;
  }

  .hero-search-highlight-icon {
    width: 32px;
    height: 32px;
  }

  .hero-search-highlight-copy strong {
    font-size: 1rem !important;
  }

  .hero-search-highlight-copy small {
    font-size: 0.84rem;
  }
}

/* Add spacing between mobile search title and card */
@media (max-width: 700px) {
  .hero-mobile-search-intro {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  .hero-mobile-search-intro {
    margin-bottom: 18px !important;
  }
}

/* Nudge mobile search title lower with more breathing room */
@media (max-width: 700px) {
  .hero-mobile-search-intro {
    margin-top: 12px !important;
    margin-bottom: 28px !important;
  }
}

@media (max-width: 480px) {
  .hero-mobile-search-intro {
    margin-top: 14px !important;
    margin-bottom: 24px !important;
  }
}

/* Mobile custom date placeholder */
.hero-date-placeholder {
  display: none;
}

@media (max-width: 700px) {
  .hero-booking-control {
    position: relative;
  }

  .hero-booking-field input[type="date"] {
    position: relative;
    z-index: 2;
    color: transparent !important;
    caret-color: transparent;
  }

  .hero-booking-field input[type="date"].has-date-value {
    color: #20406a !important;
  }

  .hero-date-placeholder {
    display: block;
    position: absolute;
    left: 52px;
    right: 42px;
    top: 50%;
    transform: translateY(-50%);
    color: #7d95bb;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
  }
}

@media (min-width: 721px) {
  .hero-content.hero-simple .hero-copy {
    padding-top: clamp(34px, 6vw, 88px);
  }

  .hero-copy h1 {
    margin-top: 0;
  }
}

@media (min-width: 721px) {
  .hero-nice-select .nice-panel {
    top: calc(100% + 14px);
    left: -10px;
    right: -10px;
    border-radius: 22px;
    border: 1px solid rgba(210, 225, 240, 0.92);
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 24px 54px rgba(8, 35, 67, 0.18);
    padding: 10px;
    max-height: 320px;
    overflow-y: auto;
  }

  .hero-nice-select .nice-panel::-webkit-scrollbar {
    width: 8px;
  }

  .hero-nice-select .nice-panel::-webkit-scrollbar-thumb {
    background: rgba(31, 127, 220, 0.18);
    border-radius: 999px;
  }

  .hero-nice-select .nice-option {
    position: relative;
    gap: 14px;
    padding: 15px 16px;
    border-radius: 16px;
  }

  .hero-nice-select .nice-option + .nice-option::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50px;
    right: 14px;
    height: 1px;
    background: rgba(225, 233, 245, 0.9);
  }

  .hero-nice-select .nice-option:hover {
    background: linear-gradient(135deg, rgba(31, 127, 220, 0.08), rgba(25, 194, 168, 0.07));
    transform: translateX(2px);
  }

  .hero-nice-select .nice-option.selected {
    background: linear-gradient(135deg, rgba(31, 127, 220, 0.12), rgba(25, 194, 168, 0.1));
  }

  .hero-nice-select .nice-option .dot {
    width: 20px;
    height: 20px;
    border-width: 2px;
    border-color: rgba(31, 127, 220, 0.32);
  }

  .hero-nice-select .nice-option strong {
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
}

@media (min-width: 721px) {
  .hero-nice-select .nice-option {
    width: 100% !important;
    border: 0 !important;
    outline: none !important;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none !important;
    text-align: left;
    grid-template-columns: 20px minmax(0, 1fr) !important;
  }

  .hero-nice-select .nice-option .dot {
    justify-self: center;
  }

  .hero-nice-select .nice-option::before {
    display: none !important;
  }

  .hero-nice-select .nice-option + .nice-option::before {
    display: block !important;
  }
}

@media (min-width: 701px) {
  .hero-booking-field:has(#heroDate) .hero-booking-control {
    position: relative;
    cursor: pointer;
  }

  .hero-booking-field #heroDate {
    position: relative;
    z-index: 2;
    cursor: pointer;
  }

  .hero-booking-field #heroDate:not(.has-date-value) {
    color: transparent !important;
    caret-color: transparent;
  }

  .hero-booking-field:has(#heroDate) .hero-date-placeholder {
    display: block;
    position: absolute;
    left: 48px;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #20406a;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
  }
}

@media (min-width: 701px) {
  .hero-booking-field #heroDate {
    width: 100%;
  }

  .hero-booking-field #heroDate:not(.has-date-value)::-webkit-datetime-edit,
  .hero-booking-field #heroDate:not(.has-date-value)::-webkit-datetime-edit-fields-wrapper,
  .hero-booking-field #heroDate:not(.has-date-value)::-webkit-datetime-edit-text,
  .hero-booking-field #heroDate:not(.has-date-value)::-webkit-datetime-edit-month-field,
  .hero-booking-field #heroDate:not(.has-date-value)::-webkit-datetime-edit-day-field,
  .hero-booking-field #heroDate:not(.has-date-value)::-webkit-datetime-edit-year-field {
    color: transparent !important;
  }

  .hero-booking-field #heroDate.has-date-value::-webkit-datetime-edit,
  .hero-booking-field #heroDate.has-date-value::-webkit-datetime-edit-fields-wrapper,
  .hero-booking-field #heroDate.has-date-value::-webkit-datetime-edit-text,
  .hero-booking-field #heroDate.has-date-value::-webkit-datetime-edit-month-field,
  .hero-booking-field #heroDate.has-date-value::-webkit-datetime-edit-day-field,
  .hero-booking-field #heroDate.has-date-value::-webkit-datetime-edit-year-field {
    color: #20406a !important;
  }
}

@media (min-width: 721px) {
  .hero .hero-nice-select .nice-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero .hero-nice-select .nice-option {
    all: unset;
    box-sizing: border-box;
    display: grid !important;
    grid-template-columns: 20px minmax(0, 1fr) !important;
    align-items: center;
    gap: 14px;
    width: 100% !important;
    padding: 15px 16px !important;
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    position: relative;
    background: transparent;
    color: var(--navy-900);
  }

  .hero .hero-nice-select .nice-option:hover,
  .hero .hero-nice-select .nice-option:focus-visible {
    background: linear-gradient(135deg, rgba(31, 127, 220, 0.08), rgba(25, 194, 168, 0.07));
    transform: translateX(2px);
    outline: none;
  }

  .hero .hero-nice-select .nice-option.selected {
    background: linear-gradient(135deg, rgba(31, 127, 220, 0.12), rgba(25, 194, 168, 0.10));
  }
}
