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

html,
body {
  width: 100%;
  min-height: 100%;
}

html {
  scroll-padding-top: 24px;
}

#booking,
#routes,
#my-bookings {
  scroll-margin-top: 24px;
}

body {
  font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #080a19;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
  background: none;
  cursor: pointer;
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #080a19;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

.hero__video {
  z-index: 1;
  visibility: hidden;
}

.hero__video.is-loaded {
  visibility: visible;
}

.hero-transition-ready .hero__video,
.hero-transition-ready .hero__foreground,
.booking-section.hero-transition-target > .section-shell {
  will-change: transform, opacity;
}

.hero__foreground {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nav {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

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

.brand__mark {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.brand__wordmark {
  color: #fff;
  font-size: 22px;
  font-weight: 450;
  line-height: 1;
  letter-spacing: -0.02em;
}

.desktop-nav,
.auth {
  display: none;
}

.menu-trigger-wrap {
  display: block;
}

.menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(10, 7, 7, 0.35);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  transition: background-color 0.2s ease;
}

.menu-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-trigger__icons {
  position: relative;
  width: 20px;
  height: 20px;
}

.menu-trigger__icon {
  position: absolute;
  inset: 0;
  width: 20px;
  height: 20px;
  color: #fff;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.menu-trigger__icon--menu {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.menu-trigger__icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.75);
}

.menu-trigger[aria-expanded='true'] .menu-trigger__icon--menu {
  opacity: 0;
  transform: rotate(90deg) scale(0.75);
}

.menu-trigger[aria-expanded='true'] .menu-trigger__icon--close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  visibility: hidden;
  transition: visibility 0s linear 0.5s;
}

.mobile-menu.is-open {
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(8, 10, 25, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: opacity 0.5s ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 76px;
  right: 16px;
  left: 16px;
  padding: 24px;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(17, 16, 15, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transform: translateY(-16px) scale(0.97);
  transform-origin: top;
  transition: opacity 0.5s cubic-bezier(0.32, 0.72, 0, 1), transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  opacity: 0;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 450;
  transform: translateX(-12px);
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
  transition-delay: 0ms;
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: var(--item-delay);
}

.mobile-menu__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu__divider {
  height: 1px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  transition-delay: 0ms;
}

.mobile-menu.is-open .mobile-menu__actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 350ms;
}

.mobile-menu__demo,
.mobile-menu__login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 450;
  transition: background-color 0.2s ease;
}

.mobile-menu__demo {
  color: #0a0707;
  background: #e9e9e9;
}

.mobile-menu__demo:hover {
  background: #fff;
}

.mobile-menu__login {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu__login:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hero__center {
  display: flex;
  align-items: center;
  flex: 1;
  min-height: 0;
  padding: 32px 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__copy {
  max-width: 593px;
}

h1 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  line-height: 0.95;
}

.hero__subhead {
  max-width: 370px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.3;
}

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

.hero__demo,
.hero__talk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 450;
  line-height: 15.5px;
  transition: opacity 0.2s ease;
}

.hero__demo {
  color: #0a0707;
  background: #e9e9e9;
}

.hero__demo:hover {
  opacity: 0.9;
}

.hero__talk {
  color: #fff;
  border: 1px solid #fff;
}

.hero__talk:hover {
  opacity: 0.8;
}

.revenue-wrap {
  width: 100%;
  max-width: 405px;
  margin: 0 auto;
}

.revenue-card {
  width: 100%;
  padding: 20px 20px 20px;
  border-radius: 24px;
  background: rgba(17, 16, 15, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.revenue-card__label {
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 450;
  line-height: 20px;
}

.revenue-card__amount {
  margin-bottom: 8px;
  color: #fff;
  font-size: 28px;
  font-weight: 450;
  line-height: 1;
  white-space: nowrap;
}

.revenue-card__cents {
  color: rgba(255, 255, 255, 0.2);
}

.revenue-card__delta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.revenue-card__badge {
  padding: 7px 6px;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 450;
  line-height: 14px;
  white-space: nowrap;
}

.revenue-card__caption {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  font-size: 12px;
  font-weight: 450;
  line-height: 14px;
  white-space: nowrap;
}

.chart {
  position: relative;
}

.chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 80px;
}

.chart__bar {
  flex: 1;
  opacity: 0;
  border-radius: 0.5px;
  background: #fff;
  transform-origin: bottom;
  animation: bar-grow 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chart__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.chart__grid span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.chart__axis {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  font-weight: 450;
  line-height: 10px;
}

.chart__axis-dim {
  opacity: 0.4;
}

.animate {
  opacity: 0;
  animation-delay: var(--delay);
}

.animate--up {
  animation-name: fade-up;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

.animate--down {
  animation-name: fade-down;
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

.animate--scale {
  animation-name: fade-scale;
  animation-duration: 0.9s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-left {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-right {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-scale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bar-grow {
  from { opacity: 0; transform: scaleY(0); }
  to { opacity: 1; transform: scaleY(1); }
}

@media (min-width: 640px) {
  .nav {
    padding: 30px 32px 0;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand__wordmark {
    font-size: 26px;
  }

  .mobile-menu__panel {
    top: 86px;
    right: 24px;
    left: 24px;
    padding: 32px;
  }

  .hero__content {
    padding: 0 32px;
  }

  h1 {
    margin-bottom: 32px;
    font-size: 52px;
  }

  .hero__subhead {
    margin-bottom: 40px;
    font-size: 18px;
  }

  .hero__actions {
    gap: 16px;
  }

  .hero__demo,
  .hero__talk {
    height: 51px;
    padding: 0 27px;
    font-size: 15.5px;
  }

  .revenue-card {
    padding: 32px 32px 24px;
    border-radius: 33px;
  }

  .revenue-card__label {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .revenue-card__amount {
    margin-bottom: 12px;
    font-size: 46px;
  }

  .revenue-card__delta {
    margin-bottom: 32px;
  }

  .revenue-card__badge,
  .revenue-card__caption {
    font-size: 14px;
  }

  .chart__bars {
    height: 100px;
  }

  .chart__axis {
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  .nav,
  .hero__content {
    padding-right: 82px;
    padding-left: 82px;
  }

  h1 {
    font-size: 64px;
  }

  .hero__subhead {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 52px;
    padding: 0 24px;
    border-radius: 11px;
    background: rgba(10, 7, 7, 0.35);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
  }

  .desktop-nav__item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 450;
    line-height: 14px;
    white-space: nowrap;
    transition: color 0.2s ease;
  }

  .desktop-nav__item:hover {
    color: #fff;
  }

  .desktop-nav__platform {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .auth {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 52px;
    padding: 3px;
    border-radius: 13px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
  }

  .auth__login,
  .auth__demo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 24px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 450;
    line-height: 14px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
  }

  .auth__login {
    color: #fff;
  }

  .auth__login:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .auth__demo {
    color: #0a0707;
    background: #e9e9e9;
  }

  .auth__demo:hover {
    background: #fff;
  }

  .menu-trigger-wrap,
  .mobile-menu {
    display: none;
  }

  .hero__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }

  h1 {
    font-size: 72px;
  }

  .revenue-wrap {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate,
  .chart__bar {
    opacity: 1;
    animation: none;
  }

  .mobile-menu,
  .mobile-menu *,
  .menu-trigger__icon {
    transition-duration: 0.01ms !important;
  }
}

/* Site footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 88px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #07101c;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 2%, rgba(66, 139, 164, 0.09), transparent 27%),
    radial-gradient(circle at 8% 100%, rgba(24, 84, 128, 0.08), transparent 30%);
  content: "";
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(60px, 8vw, 140px);
  align-items: start;
}

.footer-brand {
  max-width: 480px;
}

.footer-brand__logo {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.footer-brand__mark {
  width: 32px;
  height: 32px;
}

.footer-brand__wordmark {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.footer-brand > p {
  max-width: 440px;
  margin: 24px 0 0;
  color: rgba(224, 235, 240, 0.7);
  font-size: 15px;
  line-height: 1.9;
}

.footer-brand__tagline {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.footer-newsletter h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.1vw, 31px);
  font-weight: 500;
  line-height: 1.35;
}

.footer-newsletter > p {
  margin: 11px 0 22px;
  color: rgba(224, 235, 240, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.footer-newsletter__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.footer-newsletter__controls {
  display: flex;
  gap: 9px;
  direction: rtl;
}

.footer-newsletter__controls input {
  min-width: 0;
  min-height: 50px;
  flex: 1;
  padding: 0 17px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.footer-newsletter__controls input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.footer-newsletter__controls input:focus {
  border-color: rgba(136, 198, 218, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(79, 130, 152, 0.18);
}

.footer-newsletter__controls button {
  min-width: 108px;
  min-height: 50px;
  padding: 0 22px;
  color: #07101c;
  border: 0;
  border-radius: 8px;
  background: #f3f8fa;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.footer-newsletter__controls button:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.24);
}

.footer-newsletter__controls button:active {
  transform: translateY(0) scale(0.98);
}

.footer-newsletter__controls button:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid #8cc9dc;
  outline-offset: 4px;
}

.footer-newsletter__status {
  min-height: 21px;
  margin: 9px 0 0;
  color: #9bc8d7;
  font-size: 12px;
  line-height: 1.7;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 90px);
  margin-top: 58px;
  padding: 50px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.085);
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

.footer-nav h3 {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.footer-nav a {
  display: inline-block;
  color: rgba(217, 229, 235, 0.57);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:not([aria-disabled="true"]):hover {
  color: #fff;
  transform: translateX(-3px);
}

.footer-nav a[aria-disabled="true"] {
  cursor: default;
}

.footer-bottom {
  display: flex;
  gap: 24px 40px;
  align-items: center;
  justify-content: space-between;
  padding-top: 27px;
}

.footer-copyright {
  margin: 0;
  color: rgba(217, 229, 235, 0.45);
  font-size: 13px;
}

.footer-bottom__links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-bottom__links a {
  color: rgba(217, 229, 235, 0.48);
  font-size: 13px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-bottom__links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-assurances {
  display: flex;
  gap: 22px;
  align-items: center;
}

.footer-language,
.footer-trust {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(225, 235, 240, 0.58);
  font-size: 12px;
  white-space: nowrap;
}

.footer-language svg,
.footer-trust svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
  direction: ltr;
}

.footer-social a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  cursor: default;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-social a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social .footer-social__fill,
.footer-social .footer-social__dot {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1023px) {
  .site-footer {
    padding-top: 72px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-newsletter {
    max-width: 620px;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 60px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 639px) {
  .site-footer {
    padding: 56px 0 24px;
  }

  .footer-brand > p {
    margin-top: 19px;
    font-size: 14px;
  }

  .footer-newsletter__controls {
    flex-direction: column;
  }

  .footer-newsletter__controls button {
    width: 100%;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 39px;
    padding: 41px 0 43px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 24px;
  }

  .footer-social {
    order: 1;
  }

  .footer-assurances {
    order: 2;
  }

  .footer-bottom__links {
    order: 3;
  }

  .footer-copyright {
    order: 4;
  }

  .footer-assurances {
    flex-wrap: wrap;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-newsletter__controls button,
  .footer-nav a,
  .footer-social a {
    transition: none;
  }
}

/* Local bookings */
.bookings-section {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 96px 0 110px;
  color: #10141c;
  background:
    radial-gradient(circle at 14% 10%, rgba(32, 101, 134, 0.12), transparent 34%),
    radial-gradient(circle at 90% 75%, rgba(148, 82, 52, 0.1), transparent 30%),
    #f1f0ec;
}

.bookings-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: '';
  opacity: 0.45;
  background-image: linear-gradient(rgba(14, 26, 37, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 26, 37, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.bookings-section .section-shell {
  position: relative;
  z-index: 1;
}

.bookings-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.bookings-section__header > div:first-child {
  max-width: 690px;
}

.bookings-section__eyebrow {
  margin-bottom: 12px;
  color: #547080;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.bookings-section__header h2 {
  margin-bottom: 14px;
  color: #10141c;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.bookings-section__header > div > p:last-child {
  max-width: 620px;
  color: #647079;
  font-size: 16px;
  line-height: 1.8;
}

.local-storage-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 11px 15px;
  border: 1px solid rgba(17, 40, 53, 0.1);
  border-radius: 999px;
  color: #395461;
  background: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.local-storage-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4c9877;
  box-shadow: 0 0 0 4px rgba(76, 152, 119, 0.12);
}

.bookings-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: 0 4px;
}

.bookings-toolbar > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.bookings-toolbar strong {
  color: #17242c;
  font-size: 17px;
  font-weight: 520;
}

.bookings-toolbar span {
  color: #7a858b;
  font-size: 12px;
}

.clear-bookings {
  padding: 9px 13px;
  border: 1px solid rgba(122, 49, 40, 0.15);
  border-radius: 10px;
  color: #914a40;
  background: rgba(255, 255, 255, 0.45);
  font-family: inherit;
  font-size: 12px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.clear-bookings:hover {
  border-color: rgba(122, 49, 40, 0.28);
  background: rgba(255, 255, 255, 0.8);
}

.clear-bookings:disabled {
  display: none;
}

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

.saved-booking {
  padding: 24px;
  border: 1px solid rgba(24, 48, 61, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 20px 55px rgba(24, 37, 44, 0.07);
  backdrop-filter: blur(16px);
  animation: booking-card-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes booking-card-in {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.saved-booking__top,
.saved-booking__top > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.saved-booking__reference {
  color: #63727a;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.saved-booking__status {
  padding: 5px 9px;
  border-radius: 999px;
  color: #376b58;
  background: rgba(74, 148, 117, 0.1);
  font-size: 11px;
}

.delete-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: #8f625c;
  background: transparent;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.delete-booking:hover {
  color: #873e35;
  background: rgba(135, 62, 53, 0.08);
}

.delete-booking svg {
  width: 17px;
  height: 17px;
}

.saved-booking__route {
  display: grid;
  grid-template-columns: 1fr 62px 1fr;
  align-items: center;
  gap: 12px;
  margin: 26px 0 22px;
}

.saved-booking__route > div:last-child {
  text-align: left;
}

.saved-booking__route span,
.saved-booking__details dt {
  display: block;
  margin-bottom: 5px;
  color: #879198;
  font-size: 11px;
}

.saved-booking__route strong {
  display: block;
  overflow: hidden;
  color: #17242c;
  font-size: 17px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-booking__route > svg {
  width: 100%;
  color: #8298a3;
  transform: scaleX(-1);
}

.saved-booking__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(21, 43, 55, 0.08);
  border-bottom: 1px solid rgba(21, 43, 55, 0.08);
}

.saved-booking__details dd {
  margin: 0;
  color: #3f4e56;
  font-size: 12px;
}

.saved-booking__created {
  margin-top: 13px;
  color: #8a9499;
  font-size: 11px;
}

.bookings-empty {
  padding: 58px 24px;
  border: 1px dashed rgba(29, 56, 70, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.34);
  text-align: center;
}

.bookings-empty[hidden] {
  display: none;
}

.bookings-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #607a87;
  background: rgba(59, 96, 114, 0.08);
}

.bookings-empty__icon svg {
  width: 25px;
  height: 25px;
}

.bookings-empty h3 {
  margin-bottom: 8px;
  color: #26363e;
  font-size: 20px;
  font-weight: 500;
}

.bookings-empty p {
  margin-bottom: 20px;
  color: #748087;
  font-size: 14px;
}

.bookings-empty a {
  display: inline-flex;
  padding: 11px 17px;
  border-radius: 11px;
  color: #fff;
  background: #1c3542;
  font-size: 13px;
}

.booking-popup {
  position: fixed;
  z-index: 100;
  right: 50%;
  bottom: 28px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 13px;
  width: min(440px, calc(100% - 32px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  color: #fff;
  background: rgba(16, 27, 34, 0.96);
  box-shadow: 0 24px 60px rgba(4, 12, 17, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 22px);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(18px);
}

.booking-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
}

.booking-popup__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #edc580;
  background: rgba(237, 197, 128, 0.1);
}

.booking-popup__icon svg {
  width: 22px;
  height: 22px;
}

.booking-popup strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 520;
}

.booking-popup p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.booking-popup__close {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.06);
  font-family: inherit;
  font-size: 20px;
  line-height: 1;
}

.booking-popup__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

@media (max-width: 900px) {
  .bookings-section__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .bookings-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .bookings-section {
    padding: 72px 0 82px;
  }

  .bookings-section__header {
    margin-bottom: 34px;
  }

  .bookings-toolbar,
  .bookings-toolbar > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .bookings-toolbar {
    margin-bottom: 18px;
  }

  .saved-booking {
    padding: 20px;
  }

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

  .saved-booking__route {
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .saved-booking {
    animation: none;
  }

  .booking-popup {
    transition: none;
  }
}

/* Premium hover and press interactions */
:is(.voyage-card, .booking-panel, .route-card, .saved-booking, .bookings-empty) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.42s ease,
    background-color 0.35s ease;
}

:is(.voyage-card, .booking-panel, .route-card, .saved-booking, .bookings-empty)::before {
  position: absolute;
  z-index: 5;
  top: -35%;
  left: -85%;
  width: 42%;
  height: 170%;
  pointer-events: none;
  content: '';
  opacity: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 25%,
    rgba(255, 255, 255, 0.46) 50%,
    rgba(255, 255, 255, 0.08) 72%,
    transparent 100%
  );
  filter: blur(1px);
  transform: skewX(-17deg);
  transition: left 0.82s cubic-bezier(0.2, 0.75, 0.2, 1), opacity 0.18s ease;
}

.saved-booking::before {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(42, 106, 132, 0.05) 22%,
    rgba(47, 119, 148, 0.42) 49%,
    rgba(109, 181, 207, 0.2) 68%,
    transparent 100%
  );
}

.bookings-empty::before {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 24%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.14) 74%,
    transparent 100%
  );
}

:is(
  .auth__demo,
  .auth__login,
  .hero__demo,
  .hero__talk,
  .mobile-menu__demo,
  .mobile-menu__login,
  .search-trips,
  .swap-route,
  .clear-bookings,
  .delete-booking,
  .bookings-empty a,
  .menu-trigger,
  .booking-popup__close
) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.3s ease;
}

:is(
  .auth__demo,
  .auth__login,
  .hero__demo,
  .hero__talk,
  .mobile-menu__demo,
  .mobile-menu__login,
  .search-trips,
  .swap-route,
  .clear-bookings,
  .delete-booking,
  .bookings-empty a,
  .menu-trigger,
  .booking-popup__close
)::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  pointer-events: none;
  content: '';
  border-radius: 50%;
  opacity: 0;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

:is(.desktop-nav__item, .mobile-menu__link) {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 1px;
  transition: color 0.25s ease, background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  :is(.voyage-card, .booking-panel, .route-card, .saved-booking, .bookings-empty):hover::before {
    left: 145%;
    opacity: 1;
  }

  .voyage-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 42px rgba(110, 178, 205, 0.09);
    transform: translateY(-7px) rotateX(1deg);
  }

  .booking-panel:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 26px 75px rgba(0, 0, 0, 0.26), 0 0 45px rgba(76, 135, 163, 0.08);
    transform: translateY(-4px);
  }

  .route-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24), 0 0 32px rgba(117, 173, 198, 0.08);
    transform: translateY(-8px) scale(1.012);
  }

  .saved-booking:hover {
    border-color: rgba(44, 85, 105, 0.22);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 28px 70px rgba(24, 37, 44, 0.13);
    transform: translateY(-7px) scale(1.008);
  }

  .bookings-empty:hover {
    border-color: rgba(29, 56, 70, 0.3);
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 24px 60px rgba(24, 37, 44, 0.08);
    transform: translateY(-4px);
  }

  :is(
    .auth__demo,
    .auth__login,
    .hero__demo,
    .hero__talk,
    .mobile-menu__demo,
    .mobile-menu__login,
    .search-trips,
    .clear-bookings,
    .bookings-empty a,
    .menu-trigger
  ):hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transform: translateY(-3px) scale(1.025);
  }

  :is(
    .auth__demo,
    .auth__login,
    .hero__demo,
    .hero__talk,
    .mobile-menu__demo,
    .mobile-menu__login,
    .search-trips,
    .swap-route,
    .clear-bookings,
    .delete-booking,
    .bookings-empty a,
    .menu-trigger,
    .booking-popup__close
  ):hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(18);
  }

  .swap-route:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2), 0 0 22px rgba(255, 255, 255, 0.1);
    transform: rotate(180deg) scale(1.1);
  }

  .delete-booking:hover,
  .booking-popup__close:hover {
    box-shadow: 0 8px 18px rgba(90, 43, 37, 0.12);
    transform: translateY(-2px) scale(1.08);
  }

  :is(.desktop-nav__item, .mobile-menu__link):hover {
    background-size: 100% 1px;
    transform: translateY(-2px);
  }
}

:is(
  .auth__demo,
  .auth__login,
  .hero__demo,
  .hero__talk,
  .mobile-menu__demo,
  .mobile-menu__login,
  .search-trips,
  .swap-route,
  .clear-bookings,
  .delete-booking,
  .bookings-empty a,
  .menu-trigger,
  .booking-popup__close
):active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  transform: translateY(1px) scale(0.955);
  transition-duration: 0.08s;
}

:is(
  .auth__demo,
  .auth__login,
  .hero__demo,
  .hero__talk,
  .mobile-menu__demo,
  .mobile-menu__login,
  .search-trips,
  .swap-route,
  .clear-bookings,
  .delete-booking,
  .bookings-empty a,
  .menu-trigger,
  .booking-popup__close,
  .route-card
):focus-visible {
  outline: 2px solid #8cc3dc;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  :is(.voyage-card, .booking-panel, .route-card, .saved-booking, .bookings-empty),
  :is(
    .auth__demo,
    .auth__login,
    .hero__demo,
    .hero__talk,
    .mobile-menu__demo,
    .mobile-menu__login,
    .search-trips,
    .swap-route,
    .clear-bookings,
    .delete-booking,
    .bookings-empty a,
    .menu-trigger,
    .booking-popup__close
  ) {
    transition-duration: 0.01ms;
  }

  :is(.voyage-card, .booking-panel, .route-card, .saved-booking, .bookings-empty)::before,
  :is(
    .auth__demo,
    .auth__login,
    .hero__demo,
    .hero__talk,
    .mobile-menu__demo,
    .mobile-menu__login,
    .search-trips,
    .swap-route,
    .clear-bookings,
    .delete-booking,
    .bookings-empty a,
    .menu-trigger,
    .booking-popup__close
  )::after {
    display: none;
  }
}

/* Maritime booking experience */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: #fff;
}

.voyage-wrap {
  width: 100%;
  max-width: 405px;
  margin: 0 auto;
}

.voyage-card {
  width: 100%;
  padding: 20px;
  border-radius: 24px;
  background: rgba(17, 16, 15, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.voyage-card__header,
.voyage-card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.voyage-card__header {
  margin-bottom: 24px;
}

.voyage-card__label {
  color: #fff;
  font-size: 16px;
  font-weight: 450;
  line-height: 20px;
}

.voyage-card__badge {
  padding: 7px 6px;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 450;
  line-height: 14px;
}

.voyage-card__route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.voyage-card__port {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.voyage-card__port span,
.voyage-card__details span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.voyage-card__port strong {
  color: #fff;
  font-size: 22px;
  font-weight: 450;
}

.voyage-card__port small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.voyage-card__line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voyage-card__line > span {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.voyage-card__line > div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(17, 16, 15, 0.62);
  white-space: nowrap;
}

.voyage-card__line svg {
  width: 16px;
  height: 16px;
}

.voyage-card__line b {
  font-size: 10px;
  font-weight: 450;
}

.voyage-card__details {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.voyage-card__details > div {
  display: flex;
  flex-direction: column;
}

.voyage-card__details > div:last-child {
  align-items: flex-end;
}

.voyage-card__details strong {
  color: #fff;
  font-size: 14px;
  font-weight: 450;
}

.voyage-card__details > div:last-child strong {
  font-size: 20px;
}

.booking-section {
  position: relative;
  z-index: 20;
  width: 100%;
  overflow: hidden;
  padding: 80px 0 100px;
  background: #080a19;
}

.booking-section::before,
.booking-section::after {
  position: absolute;
  content: '';
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
}

.booking-section::before {
  top: -220px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: rgba(126, 29, 27, 0.16);
}

.booking-section::after {
  bottom: -280px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: rgba(24, 84, 128, 0.12);
}

.section-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}

.booking-section__header {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.booking-section__eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 450;
  letter-spacing: 0.02em;
}

.booking-section__header h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 32px;
  font-weight: 450;
  line-height: 1.1;
}

.booking-section__header > p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

.booking-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: rgba(17, 16, 15, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.booking-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.booking-field label {
  padding-right: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 450;
}

.booking-control {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.booking-control:focus-within,
.booking-control:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.booking-control svg {
  width: 19px;
  height: 19px;
  margin-left: 10px;
  flex: 0 0 19px;
}

.booking-control select,
.booking-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 450;
}

.booking-control select {
  cursor: pointer;
}

.booking-control select option {
  color: #fff;
  background: #11101a;
}

.booking-control input[type='date'] {
  color-scheme: dark;
}

.swap-route {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  width: 40px;
  height: 40px;
  margin-top: 4px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
  transition: background-color 0.2s ease, transform 0.3s ease;
}

.swap-route:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(270deg);
}

.swap-route svg,
.search-trips svg {
  width: 18px;
  height: 18px;
}

.search-trips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 54px;
  align-self: end;
  border-radius: 12px;
  color: #0a0707;
  background: #e9e9e9;
  font-size: 15px;
  font-weight: 450;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.search-trips:hover {
  background: #fff;
  transform: translateY(-1px);
}

.booking-status {
  min-height: 24px;
  margin: 14px 8px 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-align: center;
}

.popular-routes {
  padding-top: 10px;
}

.popular-routes__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.popular-routes__heading p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.popular-routes__heading h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 450;
}

.popular-routes__heading > span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.route-card {
  display: block;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(17, 16, 15, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.route-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(17, 16, 15, 0.42);
  transform: translateY(-4px);
}

.route-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.route-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.route-card__icon svg {
  width: 20px;
  height: 20px;
}

.route-card h4 {
  margin-bottom: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 450;
}

.route-card__top p,
.route-card__meta,
.route-card__price span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.route-card__meta {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}

.route-card__meta span {
  position: relative;
  padding-right: 12px;
}

.route-card__meta span::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  content: '';
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  transform: translateY(-50%);
}

.route-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.route-card__price strong {
  color: #fff;
  font-size: 16px;
  font-weight: 450;
}

@media (min-width: 640px) {
  .voyage-card {
    padding: 32px 32px 24px;
    border-radius: 33px;
  }

  .voyage-card__label {
    font-size: 20px;
  }

  .section-shell {
    padding-right: 32px;
    padding-left: 32px;
  }

  .booking-section__header h2 {
    font-size: 40px;
  }

  .booking-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px;
  }

  .swap-route {
    display: none;
  }

  .search-trips {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .section-shell {
    padding-right: 82px;
    padding-left: 82px;
  }

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

@media (min-width: 1024px) {
  .voyage-wrap {
    margin: 0;
  }

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

  .search-trips {
    grid-column: auto;
  }
}

@media (min-width: 1280px) {
  .booking-panel {
    grid-template-columns: minmax(170px, 1.2fr) 40px minmax(170px, 1.2fr) minmax(150px, 0.9fr) minmax(140px, 0.8fr) minmax(150px, 0.9fr) 140px;
    align-items: end;
  }

  .swap-route {
    display: flex;
    margin-bottom: 7px;
    transform: none;
  }

  .swap-route:hover {
    transform: rotate(180deg);
  }
}

@media (max-width: 639px) {
  .popular-routes__heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .route-card,
  .search-trips,
  .swap-route {
    transition: none;
  }
}

/* Keep premium motion at the top of the final cascade. */
:is(.voyage-card, .booking-panel, .route-card) {
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.42s ease,
    background-color 0.35s ease;
}

:is(.search-trips, .swap-route) {
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .voyage-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 42px rgba(110, 178, 205, 0.09);
    transform: translateY(-7px) rotateX(1deg);
  }

  .booking-panel:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 26px 75px rgba(0, 0, 0, 0.26), 0 0 45px rgba(76, 135, 163, 0.08);
    transform: translateY(-4px);
  }

  .route-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24), 0 0 32px rgba(117, 173, 198, 0.08);
    transform: translateY(-8px) scale(1.012);
  }

  .search-trips:hover {
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transform: translateY(-3px) scale(1.025);
  }

  .swap-route:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2), 0 0 22px rgba(255, 255, 255, 0.1);
    transform: rotate(180deg) scale(1.1);
  }
}

:is(.search-trips, .swap-route):active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  transform: translateY(1px) scale(0.955);
  transition-duration: 0.08s;
}

@media (prefers-reduced-motion: reduce) {
  :is(.voyage-card, .booking-panel, .route-card, .search-trips, .swap-route) {
    transition-duration: 0.01ms;
  }
}

/* Why Traveliro */
.why-section {
  direction: rtl;
  padding: 120px 0;
  border-top: 1px solid rgba(24, 48, 61, 0.07);
  color: #17242c;
  background:
    radial-gradient(circle at 8% 18%, rgba(61, 105, 124, 0.055), transparent 28%),
    #f5f4f1;
}

.why-intro {
  max-width: 800px;
  margin: 0 auto 76px;
  text-align: center;
}

.why-intro__eyebrow {
  margin-bottom: 14px;
  color: #607986;
  font-size: 13px;
  font-weight: 470;
  letter-spacing: 0.015em;
}

.why-intro h2 {
  margin-bottom: 22px;
  color: #15252d;
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.why-intro__description {
  max-width: 680px;
  margin: 0 auto;
  color: #6f7b81;
  font-size: 16px;
  line-height: 1.9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  direction: rtl;
}

.why-feature {
  position: relative;
  min-height: 330px;
  padding: 12px 34px 16px;
  border-inline-start: 1px solid rgba(28, 57, 71, 0.11);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
}

.why-feature:first-child {
  border-inline-start-color: transparent;
}

.why-feature__number {
  display: block;
  margin-bottom: 58px;
  color: #183542;
  font-size: clamp(62px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.85;
  opacity: 0.1;
  transition: opacity 0.5s ease;
}

.why-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 25px;
  border: 1px solid rgba(32, 67, 83, 0.12);
  border-radius: 13px;
  color: #496c7c;
  background: rgba(255, 255, 255, 0.46);
  transition:
    color 0.4s ease,
    border-color 0.4s ease,
    background-color 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-feature__icon svg {
  width: 21px;
  height: 21px;
}

.why-feature h3 {
  margin-bottom: 13px;
  color: #1b2d36;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.why-feature p {
  max-width: 260px;
  color: #77838a;
  font-size: 14px;
  line-height: 1.85;
}

.why-section.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.75s ease var(--reveal-delay, 0ms),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.why-section.reveal-enabled .why-feature[data-reveal] {
  transform: translate(18px, 14px);
}

.why-section.reveal-enabled [data-reveal].is-revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@media (hover: hover) and (pointer: fine) {
  .why-feature:hover {
    border-inline-start-color: rgba(28, 57, 71, 0.22);
    transform: translateY(-4px);
  }

  .why-feature:hover .why-feature__number {
    opacity: 0.17;
  }

  .why-feature:hover .why-feature__icon {
    border-color: rgba(32, 67, 83, 0.22);
    color: #284f61;
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
  }
}

@media (max-width: 1023px) {
  .why-section {
    padding: 90px 0;
  }

  .why-intro {
    margin-bottom: 60px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 54px;
  }

  .why-feature {
    min-height: 300px;
    padding: 8px 32px 16px;
    border-inline-start: 0;
  }

  .why-feature:nth-child(even) {
    border-inline-start: 1px solid rgba(28, 57, 71, 0.11);
  }

  .why-feature__number {
    margin-bottom: 45px;
  }
}

@media (max-width: 639px) {
  .why-section {
    padding: 70px 0;
  }

  .why-intro {
    margin-bottom: 48px;
    text-align: right;
  }

  .why-intro h2 {
    margin-bottom: 17px;
    font-size: 36px;
    line-height: 1.2;
  }

  .why-intro__description {
    font-size: 15px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .why-feature,
  .why-feature:nth-child(even) {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 0;
    padding: 32px 0;
    border-inline-start: 0;
    border-top: 1px solid rgba(28, 57, 71, 0.1);
  }

  .why-feature:first-child {
    border-top: 0;
  }

  .why-feature__number {
    grid-row: 1 / 4;
    margin: 7px 0 0;
    font-size: 48px;
  }

  .why-feature__icon {
    margin-bottom: 20px;
  }

  .why-feature h3,
  .why-feature p {
    grid-column: 2;
  }

  .why-feature p {
    max-width: none;
  }

  .why-section.reveal-enabled .why-feature[data-reveal] {
    transform: translateY(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-section.reveal-enabled [data-reveal],
  .why-section.reveal-enabled .why-feature[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .why-feature,
  .why-feature__number,
  .why-feature__icon {
    transition: none;
  }
}

/* Featured destinations */
.destinations-section {
  direction: rtl;
  padding: 110px 0 120px;
  color: #fff;
  border-top: 1px solid rgba(18, 38, 48, 0.05);
  background: #fff;
}

.destinations-intro {
  max-width: 690px;
  margin-bottom: 52px;
  margin-right: 0;
  margin-left: auto;
  color: #17242c;
  text-align: right;
}

.destinations-intro__eyebrow {
  margin-bottom: 13px;
  color: #607986;
  font-size: 13px;
  font-weight: 470;
  letter-spacing: 0.015em;
}

.destinations-intro h2 {
  margin-bottom: 18px;
  color: #15252d;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.13;
}

.destinations-intro > p:last-child {
  max-width: 620px;
  color: #6f7b81;
  font-size: 16px;
  line-height: 1.85;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 252px 252px 272px;
  gap: 18px;
  direction: rtl;
}

.destination-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  border-radius: 22px;
  color: #fff;
  background: #29424d;
  box-shadow: 0 18px 45px rgba(23, 37, 44, 0.09);
  isolation: isolate;
}

.destination-card--dubai {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.destination-card--jeddah {
  grid-column: 8 / 13;
  grid-row: 1;
}

.destination-card--istanbul {
  grid-column: 8 / 13;
  grid-row: 2;
}

.destination-card--athens {
  grid-column: 1 / 5;
  grid-row: 3;
}

.destination-card--port-sudan {
  grid-column: 5 / 13;
  grid-row: 3;
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transform: scale(1.001);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.65s ease;
}

.destination-card__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 18, 23, 0.03) 22%, rgba(8, 18, 23, 0.16) 54%, rgba(7, 17, 22, 0.72) 100%);
  transition: background 0.6s ease;
}

.destination-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 27px 28px;
}

.destination-card__country {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.destination-card h3 {
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 450;
  letter-spacing: -0.025em;
  line-height: 1;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.destination-card:not(.destination-card--dubai) h3 {
  font-size: clamp(24px, 2.4vw, 33px);
}

.destination-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.destination-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.destinations-section.reveal-enabled [data-destination-reveal] {
  opacity: 0;
  transform: translate(18px, 16px);
  transition:
    opacity 0.7s ease var(--destination-delay, 0ms),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--destination-delay, 0ms);
}

.destinations-section.reveal-enabled .destinations-intro[data-destination-reveal] {
  transform: translateY(20px);
}

.destinations-section.reveal-enabled [data-destination-reveal].is-revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@media (hover: hover) and (pointer: fine) {
  .destination-card:hover img {
    filter: saturate(0.94) contrast(1.07);
    transform: scale(1.055);
  }

  .destination-card:hover .destination-card__overlay {
    background: linear-gradient(to bottom, rgba(8, 18, 23, 0.07) 20%, rgba(8, 18, 23, 0.23) 54%, rgba(7, 17, 22, 0.79) 100%);
  }

  .destination-card:hover h3 {
    transform: translateY(-3px);
  }

  .destination-card:hover .destination-card__cta svg {
    transform: translateX(-5px);
  }
}

.destination-card:focus-visible {
  outline: 2px solid #7bb4cd;
  outline-offset: 4px;
}

@media (max-width: 1023px) {
  .destinations-section {
    padding: 90px 0 100px;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 440px repeat(2, 270px);
  }

  .destination-card--dubai {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .destination-card--jeddah,
  .destination-card--istanbul,
  .destination-card--athens,
  .destination-card--port-sudan {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 639px) {
  .destinations-section {
    padding: 70px 0 80px;
  }

  .destinations-intro {
    margin-bottom: 38px;
  }

  .destinations-intro h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .destinations-intro > p:last-child {
    font-size: 15px;
  }

  .destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 360px repeat(4, 250px);
    gap: 14px;
  }

  .destination-card--dubai,
  .destination-card--jeddah,
  .destination-card--istanbul,
  .destination-card--athens,
  .destination-card--port-sudan {
    grid-column: 1;
    grid-row: auto;
  }

  .destination-card {
    border-radius: 18px;
  }

  .destination-card__content {
    padding: 23px 22px;
  }

  .destination-card h3,
  .destination-card:not(.destination-card--dubai) h3 {
    font-size: 29px;
  }

  .destinations-section.reveal-enabled [data-destination-reveal] {
    transform: translateY(14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .destinations-section.reveal-enabled [data-destination-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .destination-card img,
  .destination-card__overlay,
  .destination-card h3,
  .destination-card__cta svg {
    transition: none;
  }
}

/* Journey types */
.journeys-section {
  direction: rtl;
  overflow: hidden;
  padding: 112px 0 124px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 5%, rgba(75, 125, 149, 0.11), transparent 27%),
    radial-gradient(circle at 94% 82%, rgba(102, 74, 68, 0.09), transparent 31%),
    #070b18;
}

.journeys-intro {
  max-width: 750px;
  margin-bottom: 58px;
  text-align: right;
}

.journeys-intro__eyebrow {
  margin-bottom: 13px;
  color: rgba(178, 210, 223, 0.68);
  font-size: 13px;
  font-weight: 460;
}

.journeys-intro h2 {
  max-width: 720px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 410;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.journeys-intro > p:last-child {
  max-width: 650px;
  color: rgba(220, 231, 236, 0.58);
  font-size: 16px;
  line-height: 1.85;
}

.journeys-editorial {
  display: grid;
  gap: 24px;
}

.journeys-secondary {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
}

.journey-panel {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 23px;
  color: #fff;
  background: #101a27;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  isolation: isolate;
}

.journey-panel--primary {
  height: 620px;
}

.journey-panel--vehicle,
.journey-panel--cruise {
  height: 435px;
}

.journey-panel img {
  position: absolute;
  inset: -1.5% 0;
  width: 100%;
  height: 103%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.025);
  transform: scale(1.001);
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.journey-panel--primary img {
  object-position: 50% 52%;
}

.journey-panel--vehicle img {
  object-position: 50% 50%;
}

.journey-panel--cruise img {
  object-position: 50% 48%;
}

.journey-panel__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4, 10, 17, 0.01) 22%, rgba(4, 10, 17, 0.12) 48%, rgba(4, 9, 16, 0.76) 100%);
  transition: background 0.7s ease;
}

.journey-panel__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 660px;
  padding: 38px 40px;
}

.journey-panel--primary .journey-panel__content {
  padding: 48px 50px;
}

.journey-panel__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.journey-panel h3 {
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 430;
  letter-spacing: -0.03em;
  line-height: 1.08;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-panel--primary h3 {
  font-size: clamp(42px, 5vw, 66px);
}

.journey-panel__content p {
  max-width: 530px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 14px;
  line-height: 1.75;
}

.journey-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  transition: border-color 0.35s ease;
}

.journey-panel__cta svg {
  width: 17px;
  height: 17px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.journeys-section.reveal-enabled .journeys-intro[data-journey-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.journeys-section.reveal-enabled .journey-panel[data-journey-reveal] {
  opacity: 0;
  clip-path: inset(18% 0 0 0 round 23px);
  transform: translateY(24px);
  transition:
    opacity 0.9s ease var(--journey-delay, 0ms),
    clip-path 1.05s cubic-bezier(0.22, 1, 0.36, 1) var(--journey-delay, 0ms),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1) var(--journey-delay, 0ms);
}

.journeys-section.reveal-enabled [data-journey-reveal].is-revealed {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 23px);
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .journey-panel:hover img {
    filter: saturate(1) contrast(1.045);
    transform: scale(1.035);
  }

  .journey-panel:hover .journey-panel__overlay {
    background: linear-gradient(to bottom, rgba(4, 10, 17, 0.04) 20%, rgba(4, 10, 17, 0.17) 47%, rgba(4, 9, 16, 0.82) 100%);
  }

  .journey-panel:hover h3 {
    transform: translateY(-3px);
  }

  .journey-panel:hover .journey-panel__cta {
    border-color: rgba(255, 255, 255, 0.78);
  }

  .journey-panel:hover .journey-panel__cta svg {
    transform: translateX(-6px);
  }
}

.journey-panel:focus-visible {
  outline: 2px solid #83bed8;
  outline-offset: 5px;
}

@media (max-width: 1023px) {
  .journeys-section {
    padding: 92px 0 104px;
  }

  .journeys-intro {
    margin-bottom: 50px;
  }

  .journey-panel--primary {
    height: 480px;
  }

  .journey-panel--vehicle,
  .journey-panel--cruise {
    height: 370px;
  }

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

  .journey-panel__content,
  .journey-panel--primary .journey-panel__content {
    padding: 30px 31px;
  }
}

@media (max-width: 700px) {
  .journeys-section {
    padding: 72px 0 82px;
  }

  .journeys-intro {
    margin-bottom: 39px;
  }

  .journeys-intro h2 {
    font-size: 38px;
    line-height: 1.17;
  }

  .journeys-intro > p:last-child {
    font-size: 15px;
  }

  .journeys-secondary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .journeys-editorial {
    gap: 16px;
  }

  .journey-panel--primary {
    height: 420px;
  }

  .journey-panel--vehicle,
  .journey-panel--cruise {
    height: 345px;
  }

  .journey-panel,
  .journeys-section.reveal-enabled .journey-panel[data-journey-reveal],
  .journeys-section.reveal-enabled .journey-panel.is-revealed {
    border-radius: 19px;
  }

  .journey-panel__content,
  .journey-panel--primary .journey-panel__content {
    padding: 25px 23px;
  }

  .journey-panel h3,
  .journey-panel--primary h3 {
    font-size: 34px;
  }

  .journey-panel__content p {
    max-width: 310px;
    margin-bottom: 17px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journeys-section.reveal-enabled [data-journey-reveal] {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .journey-panel img,
  .journey-panel__overlay,
  .journey-panel h3,
  .journey-panel__cta,
  .journey-panel__cta svg {
    transition: none;
  }
}

/* How Traveliro works */
.works-section {
  direction: rtl;
  padding: 120px 0;
  color: #182931;
  background:
    radial-gradient(circle at 92% 12%, rgba(57, 102, 122, 0.045), transparent 27%),
    #f5f4f1;
}

.works-intro {
  max-width: 690px;
  margin-bottom: 76px;
  text-align: right;
}

.works-intro__eyebrow {
  margin-bottom: 13px;
  color: #607986;
  font-size: 13px;
  font-weight: 470;
}

.works-intro h2 {
  margin-bottom: 18px;
  color: #15252d;
  font-size: clamp(39px, 4.5vw, 59px);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.13;
}

.works-intro > p:last-child {
  max-width: 610px;
  color: #6f7b81;
  font-size: 16px;
  line-height: 1.85;
}

.works-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.works-timeline::before,
.works-timeline::after {
  position: absolute;
  z-index: 0;
  top: 112px;
  right: 16.666%;
  left: 16.666%;
  height: 1px;
  content: '';
}

.works-timeline::before {
  background: rgba(30, 61, 75, 0.13);
}

.works-timeline::after {
  background: rgba(42, 84, 103, 0.48);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.works-timeline.is-active::after {
  transform: scaleX(1);
}

.works-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 34px;
}

.works-step__number {
  display: block;
  margin-bottom: 74px;
  color: #244451;
  font-size: clamp(64px, 6.5vw, 90px);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.85;
  opacity: 0.11;
  transition: opacity 0.48s ease;
}

@media (min-width: 741px) {
  .works-step__number {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

.works-step__node {
  position: absolute;
  z-index: 2;
  top: 105px;
  right: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border: 1px solid rgba(42, 79, 95, 0.28);
  border-radius: 50%;
  background: #f5f4f1;
  box-shadow: 0 0 0 6px #f5f4f1;
  transition: border-color 0.45s ease, background-color 0.45s ease;
}

.works-step__node::after {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(79, 130, 152, 0.72);
  border-radius: inherit;
  opacity: 0;
  background: #dce9ed;
  content: '';
  pointer-events: none;
  transform: scale(0.72);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.works-step__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.works-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(31, 65, 80, 0.12);
  border-radius: 12px;
  color: #4c7181;
  background: rgba(255, 255, 255, 0.4);
  transition: color 0.45s ease, border-color 0.45s ease, transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.works-step__icon svg {
  width: 20px;
  height: 20px;
}

.works-step h3 {
  color: #1c3039;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.018em;
}

.works-step > p {
  max-width: 305px;
  color: #768289;
  font-size: 14px;
  line-height: 1.85;
}

.works-section.reveal-enabled .works-intro {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.72s ease, transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.works-section.reveal-enabled .works-intro.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.works-section.reveal-enabled .works-step {
  opacity: 0;
  transform: translateX(15px);
  transition:
    opacity 0.65s ease var(--step-delay),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1) var(--step-delay);
}

.works-section.reveal-enabled .works-step.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

@media (hover: hover) and (pointer: fine) {
  .works-step:hover .works-step__number {
    opacity: 0.19;
  }

  .works-step:hover .works-step__icon {
    border-color: rgba(31, 65, 80, 0.24);
    color: #2d596b;
    transform: translateY(-2px);
  }

  .works-step:hover .works-step__heading {
    transform: translateY(-2px);
  }

  .works-step:hover .works-step__node {
    border-color: rgba(42, 79, 95, 0.52);
    background: #dce7eb;
  }
}

@media (max-width: 900px) {
  .works-section {
    padding: 90px 0;
  }

  .works-intro {
    margin-bottom: 64px;
  }

  .works-step {
    padding: 0 22px;
  }

  .works-step h3 {
    font-size: 19px;
  }
}

@media (max-width: 740px) {
  .works-section {
    padding: 72px 0;
  }

  .works-intro {
    margin-bottom: 54px;
  }

  .works-intro h2 {
    font-size: 37px;
    line-height: 1.18;
  }

  .works-intro > p:last-child {
    font-size: 15px;
  }

  .works-timeline {
    display: block;
  }

  .works-timeline::before,
  .works-timeline::after {
    top: 15px;
    right: 24px;
    bottom: 15px;
    left: auto;
    width: 1px;
    height: auto;
  }

  .works-timeline::before {
    background: rgba(90, 120, 135, 0.28);
  }

  .works-timeline::after {
    background: #4f8298;
    transform: scaleY(var(--mobile-progress, 0));
    transform-origin: center top;
    transition: none;
    will-change: transform;
  }

  .works-timeline.is-active::after {
    transform: scaleY(var(--mobile-progress, 0));
  }

  .works-step {
    min-height: 180px;
    padding: 0 82px 0 0;
  }

  .works-step + .works-step {
    margin-top: 46px;
  }

  .works-step__number {
    margin-bottom: 24px;
    font-size: 54px;
  }

  .works-step__node {
    top: 7px;
    right: 17px;
  }

  .works-step__node.is-progress-active {
    z-index: 3;
  }

  .works-step__node.is-progress-active::after {
    opacity: 1;
    transform: scale(1);
  }

  .works-step > p {
    max-width: 360px;
  }

  .works-section.reveal-enabled .works-step {
    transform: translateY(12px);
  }

  .works-section.reveal-enabled .works-step.is-revealed {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .works-section.reveal-enabled .works-intro,
  .works-section.reveal-enabled .works-step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .works-timeline::after {
    transform: none;
    transition: none;
  }

  .works-step__number,
  .works-step__icon,
  .works-step__heading,
  .works-step__node,
  .works-step__node::after {
    transition: none;
  }
}

/* Sea operators */
.operators-section {
  direction: rtl;
  padding: 104px 0 108px;
  color: #1b2c34;
  background: #faf9f6;
}

.operators-intro {
  max-width: 650px;
  margin-bottom: 52px;
  text-align: right;
}

.operators-intro__eyebrow {
  margin-bottom: 12px;
  color: #647c87;
  font-size: 13px;
  font-weight: 470;
}

.operators-intro h2 {
  margin-bottom: 17px;
  color: #182a32;
  font-size: clamp(35px, 3.8vw, 50px);
  font-weight: 420;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.operators-intro > p:last-child {
  max-width: 590px;
  color: #727f85;
  font-size: 15px;
  line-height: 1.85;
}

.operators-wall {
  overflow: hidden;
  border-top: 1px solid rgba(31, 59, 71, 0.1);
  border-bottom: 1px solid rgba(31, 59, 71, 0.1);
}

.operators-scroll-control {
  display: none;
}

.operators-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  direction: ltr;
  list-style: none;
}

.operator-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 126px;
  padding: 24px 14px;
  border-left: 1px solid rgba(31, 59, 71, 0.08);
  color: #344a54;
  opacity: 0.62;
  transition: color 0.38s ease, opacity 0.38s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.operator-mark:first-child {
  border-left: 0;
}

.operator-mark span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-family: 'Suisse Intl', Arial, sans-serif;
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 560;
  letter-spacing: 0.055em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.operator-mark:nth-child(2) span,
.operator-mark:nth-child(7) span,
.operator-mark:nth-child(8) span {
  font-size: clamp(11px, 0.9vw, 14px);
  letter-spacing: 0.025em;
}

.operator-mark:nth-child(4) span {
  font-weight: 450;
  letter-spacing: -0.02em;
}

.operators-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 25px;
  color: #60727b;
}

.operators-trust p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}

.operators-trust svg {
  width: 19px;
  height: 19px;
  color: #557887;
}

.operators-trust small {
  color: #959da1;
  font-size: 10px;
}

.operators-section.reveal-enabled .operators-intro {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.62s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.operators-section.reveal-enabled .operators-intro.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.operators-section.reveal-enabled .operator-mark {
  opacity: 0;
  transform: translateY(8px);
  transition:
    color 0.38s ease,
    opacity 0.48s ease var(--operator-delay),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1) var(--operator-delay);
}

.operators-section.reveal-enabled .operators-list.is-revealed .operator-mark {
  opacity: 0.62;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .operator-mark:hover {
    color: #142f3b;
    opacity: 1;
    transform: translateY(-2px);
  }

  .operators-section.reveal-enabled .operators-list.is-revealed .operator-mark:hover {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media (max-width: 1023px) {
  .operators-section {
    padding: 90px 0 94px;
  }

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

  .operator-mark {
    min-height: 108px;
    border-bottom: 1px solid rgba(31, 59, 71, 0.08);
  }

  .operator-mark:nth-child(4n + 1) {
    border-left: 0;
  }

  .operator-mark:nth-child(n + 5) {
    border-bottom: 0;
  }

  .operator-mark span,
  .operator-mark:nth-child(2) span,
  .operator-mark:nth-child(7) span,
  .operator-mark:nth-child(8) span {
    font-size: 14px;
  }
}

@media (max-width: 639px) {
  .operators-section {
    padding: 72px 0 76px;
  }

  .operators-intro {
    margin-bottom: 39px;
  }

  .operators-intro h2 {
    font-size: 35px;
    line-height: 1.18;
  }

  .operators-wall {
    overflow-x: auto;
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    -webkit-overflow-scrolling: touch;
  }

  .operators-wall::-webkit-scrollbar {
    display: none;
  }

  .operators-list {
    display: flex;
    width: max-content;
  }

  .operator-mark,
  .operator-mark:nth-child(4n + 1),
  .operator-mark:nth-child(n + 5) {
    width: 168px;
    min-height: 104px;
    flex: 0 0 168px;
    border-bottom: 0;
    border-left: 1px solid rgba(31, 59, 71, 0.08);
    scroll-snap-align: start;
  }

  .operator-mark:first-child {
    border-left: 0;
  }

  .operators-scroll-control:not([hidden]) {
    display: block;
    width: 78%;
    max-width: 440px;
    margin: 24px auto 0;
  }

  .operators-range {
    --range-progress: 0%;
    display: block;
    width: 100%;
    height: 32px;
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    background:
      linear-gradient(
        to left,
        #557f90 0,
        #557f90 var(--range-progress),
        rgba(20, 45, 55, 0.12) var(--range-progress),
        rgba(20, 45, 55, 0.12) 100%
      ) center / 100% 2px no-repeat;
    cursor: pointer;
    touch-action: pan-y;
    -webkit-appearance: none;
    appearance: none;
  }

  .operators-range::-webkit-slider-runnable-track {
    height: 2px;
    border: 0;
    background: transparent;
  }

  .operators-range::-webkit-slider-thumb {
    width: 13px;
    height: 13px;
    margin-top: -5.5px;
    border: 1px solid #557f90;
    border-radius: 50%;
    background: #fff;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
  }

  .operators-range::-moz-range-track {
    height: 2px;
    border: 0;
    background: transparent;
  }

  .operators-range::-moz-range-progress {
    height: 2px;
    background: transparent;
  }

  .operators-range::-moz-range-thumb {
    width: 13px;
    height: 13px;
    border: 1px solid #557f90;
    border-radius: 50%;
    background: #fff;
    box-shadow: none;
  }

  .operators-range:focus-visible {
    border-radius: 8px;
    box-shadow: 0 0 0 3px rgba(85, 127, 144, 0.18);
  }

  .operators-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .operators-section.reveal-enabled .operators-intro {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .operators-section.reveal-enabled .operator-mark {
    opacity: 0.62;
    transform: none;
    transition: none;
  }
}

/* Special offers */
.offers-section {
  position: relative;
  direction: rtl;
  overflow: hidden;
  padding: 112px 0 118px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(73, 122, 145, 0.1), transparent 27%),
    radial-gradient(circle at 92% 88%, rgba(105, 77, 70, 0.08), transparent 30%),
    #070b18;
}

.offers-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: '';
  opacity: 0.18;
  background-image: repeating-radial-gradient(ellipse at 15% 120%, transparent 0 44px, rgba(150, 189, 205, 0.1) 45px 46px);
  mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.offers-section .section-shell {
  position: relative;
  z-index: 1;
}

.offers-intro {
  max-width: 680px;
  margin-bottom: 53px;
  text-align: right;
}

.offers-intro__eyebrow {
  margin-bottom: 13px;
  color: rgba(172, 207, 222, 0.67);
  font-size: 13px;
  font-weight: 460;
}

.offers-intro h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(39px, 4.5vw, 58px);
  font-weight: 410;
  letter-spacing: -0.04em;
  line-height: 1.13;
}

.offers-intro > p:last-child {
  max-width: 610px;
  color: rgba(219, 231, 236, 0.58);
  font-size: 15px;
  line-height: 1.85;
}

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

.offer-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(21, 32, 48, 0.92), rgba(12, 23, 36, 0.88));
  transition:
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    background-color 0.45s ease;
}

.offer-card::before {
  position: absolute;
  top: -58px;
  left: -52px;
  width: 160px;
  height: 160px;
  pointer-events: none;
  content: '';
  border: 1px solid rgba(132, 181, 201, 0.08);
  border-radius: 50%;
}

.offer-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.offer-card__badge {
  padding: 6px 10px;
  border: 1px solid rgba(176, 208, 220, 0.15);
  border-radius: 999px;
  color: rgba(222, 237, 242, 0.72);
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
}

.offer-card__region {
  color: rgba(213, 227, 232, 0.45);
  font-size: 11px;
}

.offer-card__route {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 450;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.offer-card__route svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: rgba(168, 202, 216, 0.58);
}

.offer-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.offer-price > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(215, 228, 233, 0.48);
  font-size: 10px;
}

.offer-price strong {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: #fff;
  font-weight: 400;
}

.offer-price b {
  font-size: 36px;
  font-weight: 390;
  letter-spacing: -0.04em;
}

.offer-price small {
  color: rgba(213, 229, 235, 0.63);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.offer-card__cta,
.offers-more a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.offer-card__cta svg,
.offers-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.offers-more {
  margin-top: 31px;
  text-align: left;
}

.offers-more a {
  color: rgba(255, 255, 255, 0.58);
}

.offers-section.reveal-enabled .offers-intro {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.offers-section.reveal-enabled .offers-intro.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.offers-section.reveal-enabled .offer-card {
  opacity: 0;
  transform: translateX(16px);
  transition:
    opacity 0.62s ease var(--offer-delay),
    transform 0.76s cubic-bezier(0.22, 1, 0.36, 1) var(--offer-delay),
    border-color 0.45s ease,
    background-color 0.45s ease;
}

.offers-section.reveal-enabled .offers-grid.is-revealed .offer-card {
  opacity: 1;
  transform: translateX(0);
}

@media (hover: hover) and (pointer: fine) {
  .offer-card:hover,
  .offers-section.reveal-enabled .offers-grid.is-revealed .offer-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(145deg, rgba(26, 39, 57, 0.96), rgba(15, 28, 43, 0.92));
    transform: translateY(-5px);
  }

  .offer-card:hover .offer-card__cta,
  .offers-more a:hover {
    border-color: rgba(255, 255, 255, 0.62);
    color: #fff;
  }

  .offer-card:hover .offer-card__cta svg,
  .offers-more a:hover svg {
    transform: translateX(-5px);
  }
}

.offer-card__cta:focus-visible,
.offers-more a:focus-visible {
  outline: 2px solid #83bed8;
  outline-offset: 5px;
}

@media (max-width: 1023px) {
  .offers-section {
    padding: 92px 0 100px;
  }

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

  .offer-card:last-child {
    grid-column: 1 / -1;
    min-height: 270px;
  }
}

@media (max-width: 639px) {
  .offers-section {
    padding: 72px 0 80px;
  }

  .offers-intro {
    margin-bottom: 39px;
  }

  .offers-intro h2 {
    font-size: 36px;
    line-height: 1.18;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .offer-card,
  .offer-card:last-child {
    grid-column: auto;
    min-height: 245px;
    padding: 23px;
  }

  .offer-card__route {
    margin: 27px 0;
    font-size: 23px;
  }

  .offer-price b {
    font-size: 32px;
  }

  .offers-more {
    margin-top: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offers-section.reveal-enabled .offers-intro,
  .offers-section.reveal-enabled .offer-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .offer-card,
  .offer-card__cta,
  .offer-card__cta svg,
  .offers-more a,
  .offers-more svg {
    transition: none;
  }
}

/* Travel with confidence */
.confidence-section {
  direction: rtl;
  padding: 118px 0 122px;
  color: #1c2c34;
  background:
    radial-gradient(circle at 92% 8%, rgba(55, 100, 120, 0.045), transparent 29%),
    #f5f4f1;
}

.confidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(60px, 7vw, 108px);
}

.confidence-intro {
  max-width: 520px;
  text-align: right;
}

.confidence-intro__eyebrow {
  margin-bottom: 13px;
  color: #607986;
  font-size: 13px;
  font-weight: 470;
}

.confidence-intro h2 {
  margin-bottom: 21px;
  color: #172931;
  font-size: clamp(39px, 4.3vw, 57px);
  font-weight: 415;
  letter-spacing: -0.04em;
  line-height: 1.13;
}

.confidence-intro > p {
  color: #6f7c82;
  font-size: 15px;
  line-height: 1.9;
}

.confidence-intro__line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid rgba(30, 62, 76, 0.11);
  color: #4d6874;
  font-size: 12px;
}

.confidence-intro__line svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: #51798a;
}

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

.confidence-feature {
  min-width: 0;
  padding: 34px 35px;
  transition: border-color 0.42s ease;
}

.confidence-feature:nth-child(-n + 2) {
  padding-top: 4px;
}

.confidence-feature:nth-child(n + 3) {
  border-top: 1px solid rgba(29, 61, 75, 0.1);
}

.confidence-feature:nth-child(even) {
  border-inline-start: 1px solid rgba(29, 61, 75, 0.1);
}

.confidence-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin-bottom: 24px;
  border: 1px solid rgba(31, 66, 81, 0.12);
  border-radius: 13px;
  color: #4c7181;
  background: rgba(255, 255, 255, 0.43);
  transition:
    color 0.4s ease,
    border-color 0.4s ease,
    background-color 0.4s ease,
    transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.confidence-feature__icon svg {
  width: 21px;
  height: 21px;
}

.confidence-feature h3 {
  margin-bottom: 11px;
  color: #263941;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  transition: color 0.4s ease;
}

.confidence-feature p {
  max-width: 280px;
  color: #78858b;
  font-size: 13px;
  line-height: 1.85;
}

.confidence-section.reveal-enabled .confidence-intro {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.68s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.confidence-section.reveal-enabled .confidence-intro.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.confidence-section.reveal-enabled .confidence-feature {
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.56s ease var(--confidence-delay),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1) var(--confidence-delay),
    border-color 0.42s ease;
}

.confidence-section.reveal-enabled .confidence-features.is-revealed .confidence-feature {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .confidence-feature:hover {
    border-color: rgba(29, 61, 75, 0.2);
  }

  .confidence-feature:hover .confidence-feature__icon {
    border-color: rgba(31, 66, 81, 0.24);
    color: #2d596b;
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
  }

  .confidence-feature:hover h3 {
    color: #132d38;
  }
}

@media (max-width: 1023px) {
  .confidence-section {
    padding: 92px 0 98px;
  }

  .confidence-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .confidence-intro {
    max-width: 680px;
  }

  .confidence-features {
    max-width: 720px;
  }
}

@media (max-width: 639px) {
  .confidence-section {
    padding: 72px 0 78px;
  }

  .confidence-layout {
    gap: 49px;
  }

  .confidence-intro h2 {
    font-size: 36px;
    line-height: 1.18;
  }

  .confidence-intro__line {
    align-items: flex-start;
    line-height: 1.65;
  }

  .confidence-features {
    grid-template-columns: 1fr;
  }

  .confidence-feature,
  .confidence-feature:nth-child(-n + 2),
  .confidence-feature:nth-child(n + 3),
  .confidence-feature:nth-child(even) {
    padding: 28px 0;
    border-top: 1px solid rgba(29, 61, 75, 0.1);
    border-inline-start: 0;
  }

  .confidence-feature:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .confidence-feature p {
    max-width: 330px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .confidence-section.reveal-enabled .confidence-intro,
  .confidence-section.reveal-enabled .confidence-feature {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .confidence-feature,
  .confidence-feature__icon,
  .confidence-feature h3 {
    transition: none;
  }
}

/* Frequently asked questions */
.faq-section {
  direction: rtl;
  padding: 116px 0 122px;
  border-top: 1px solid rgba(20, 40, 50, 0.06);
  color: #1c2d35;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(62px, 7.5vw, 116px);
}

.faq-intro {
  max-width: 480px;
  text-align: right;
}

.faq-intro__eyebrow {
  margin-bottom: 13px;
  color: #607986;
  font-size: 13px;
  font-weight: 470;
}

.faq-intro h2 {
  margin-bottom: 20px;
  color: #172931;
  font-size: clamp(38px, 4.1vw, 55px);
  font-weight: 415;
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.faq-intro > p:last-child {
  color: #6f7c82;
  font-size: 15px;
  line-height: 1.9;
}

.faq-list {
  border-top: 1px solid rgba(20, 40, 50, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(20, 40, 50, 0.1);
  transition: border-color 0.38s ease;
}

.faq-item h3 {
  margin: 0;
  font: inherit;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  gap: 24px;
  padding: 18px 0;
  color: #34464e;
  text-align: right;
  transition: color 0.35s ease;
}

.faq-question > span:first-child {
  font-size: 17px;
  font-weight: 470;
  line-height: 1.55;
}

.faq-question__icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(36, 72, 88, 0.13);
  border-radius: 50%;
  color: #587482;
  transition: border-color 0.38s ease, background-color 0.38s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-question__icon::before,
.faq-question__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  content: '';
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease,
    visibility 0s linear 0.5s;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 640px;
  padding: 0 0 27px;
  color: #6c7a81;
  font-size: 14px;
  line-height: 1.9;
}

.faq-item.is-open {
  border-color: rgba(20, 40, 50, 0.18);
}

.faq-item.is-open .faq-question {
  color: #142f3a;
}

.faq-item.is-open .faq-question__icon {
  border-color: rgba(52, 96, 115, 0.25);
  background: rgba(72, 119, 139, 0.07);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-question__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.faq-section.reveal-enabled .faq-intro {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.66s ease, transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-section.reveal-enabled .faq-intro.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.faq-section.reveal-enabled .faq-item {
  opacity: 0;
  transform: translateY(9px);
  transition:
    opacity 0.48s ease var(--faq-delay),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1) var(--faq-delay),
    border-color 0.38s ease;
}

.faq-section.reveal-enabled .faq-list.is-revealed .faq-item {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    border-color: rgba(29, 61, 75, 0.22);
  }

  .faq-question:hover {
    color: #17333e;
  }

  .faq-question:hover .faq-question__icon {
    border-color: rgba(52, 96, 115, 0.28);
  }
}

.faq-question:focus-visible {
  outline: 2px solid #5d91a7;
  outline-offset: 5px;
}

@media (max-width: 1023px) {
  .faq-section {
    padding: 92px 0 98px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 57px;
  }

  .faq-intro {
    max-width: 670px;
  }

  .faq-list {
    max-width: 760px;
  }
}

@media (max-width: 639px) {
  .faq-section {
    padding: 72px 0 78px;
  }

  .faq-layout {
    gap: 43px;
  }

  .faq-intro h2 {
    font-size: 36px;
    line-height: 1.18;
  }

  .faq-question {
    min-height: 68px;
    gap: 15px;
    padding: 16px 0;
  }

  .faq-question > span:first-child {
    font-size: 15px;
  }

  .faq-question__icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .faq-answer p {
    padding-bottom: 23px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-section.reveal-enabled .faq-intro,
  .faq-section.reveal-enabled .faq-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-item,
  .faq-question,
  .faq-question__icon,
  .faq-question__icon::before,
  .faq-question__icon::after,
  .faq-answer {
    transition: none;
  }
}

/* Final booking CTA */
.final-cta {
  position: relative;
  direction: rtl;
  display: grid;
  overflow: hidden;
  min-height: clamp(620px, 76vh, 820px);
  color: #fff;
  background: #07101a;
  isolation: isolate;
}

.final-cta__bg {
  position: absolute;
  z-index: 0;
  inset: -12% 0;
  background-image: url("../images/journeys/ship-01.webp");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}

.final-cta__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(ellipse at 47% 45%, transparent 20%, rgba(3, 9, 16, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.17) 0%, rgba(4, 10, 18, 0.39) 47%, rgba(4, 10, 18, 0.75) 100%),
    linear-gradient(90deg, rgba(4, 10, 18, 0.11) 0%, rgba(4, 10, 18, 0.62) 100%);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-top: 92px;
  padding-bottom: 84px;
}

.final-cta__content {
  width: min(620px, 48vw);
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.final-cta__eyebrow {
  margin-bottom: 15px;
  color: rgba(177, 215, 231, 0.76);
  font-size: 13px;
  font-weight: 470;
}

.final-cta h2 {
  max-width: 620px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(48px, 5.3vw, 86px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-wrap: balance;
}

.final-cta__description {
  max-width: 560px;
  color: rgba(226, 235, 239, 0.76);
  font-size: 16px;
  line-height: 1.85;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.final-cta__primary,
.final-cta__secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 13px 21px;
  overflow: hidden;
  border-radius: 12px;
  font-size: 13px;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.final-cta__primary {
  color: #0b1720;
  background: #f4f5f4;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.final-cta__secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(9, 19, 28, 0.18);
  backdrop-filter: blur(8px);
}

.final-cta__note {
  margin-top: 18px;
  color: rgba(221, 232, 237, 0.5);
  font-size: 11px;
}

@media (hover: hover) and (pointer: fine) {
  .final-cta__primary:hover,
  .final-cta__secondary:hover {
    transform: translateY(-3px);
  }

  .final-cta__primary:hover {
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.23);
  }

  .final-cta__secondary:hover {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.1);
  }
}

.final-cta__primary:active,
.final-cta__secondary:active {
  transform: translateY(1px) scale(0.97);
}

.final-cta__primary:focus-visible,
.final-cta__secondary:focus-visible {
  outline: 2px solid #a9d5e7;
  outline-offset: 5px;
}

@media (max-width: 1023px) {
  .final-cta {
    min-height: 650px;
  }

  .final-cta__bg {
    inset: -10% 0;
    background-position: 52% 50%;
  }

  .final-cta__content {
    width: min(600px, 66vw);
  }

  .final-cta h2 {
    font-size: clamp(52px, 7vw, 72px);
  }
}

@media (max-width: 767px) {
  .final-cta {
    min-height: 570px;
  }

  .final-cta__bg {
    inset: -8% 0;
    background-position: 56% 50%;
  }

  .final-cta__overlay {
    background:
      radial-gradient(ellipse at 48% 42%, transparent 12%, rgba(3, 9, 16, 0.22) 100%),
      linear-gradient(180deg, rgba(4, 10, 18, 0.2) 0%, rgba(4, 10, 18, 0.48) 43%, rgba(4, 10, 18, 0.84) 100%),
      linear-gradient(90deg, rgba(4, 10, 18, 0.08) 0%, rgba(4, 10, 18, 0.45) 100%);
  }

  .final-cta__inner {
    align-items: flex-end;
    padding-top: 90px;
    padding-bottom: 48px;
  }

  .final-cta__content {
    width: 100%;
  }

  .final-cta h2 {
    max-width: 360px;
    font-size: clamp(46px, 13vw, 58px);
    line-height: 1.08;
  }

  .final-cta__description {
    max-width: 340px;
    font-size: 14px;
  }

  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 330px);
    margin-top: 25px;
  }

  .final-cta__primary,
  .final-cta__secondary {
    width: 100%;
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta__bg {
    transform: none !important;
    will-change: auto;
  }

  .final-cta__primary,
  .final-cta__secondary {
    transition: none;
  }
}

/* Persistent glass navigation after the Hero */
.sticky-nav {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: 0;
  left: 0;
  z-index: 1400;
  width: min(94%, 1500px);
  margin-inline: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-28px);
}

.sticky-nav__surface {
  display: flex;
  min-height: 72px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 38%),
    rgba(7, 14, 25, 0.64);
  box-shadow:
    0 14px 45px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
}

.sticky-nav .brand {
  flex: 0 0 auto;
}

.sticky-nav .desktop-nav,
.sticky-nav .auth {
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.sticky-nav .desktop-nav {
  gap: clamp(18px, 2.4vw, 30px);
}

.sticky-nav .desktop-nav__item,
.sticky-nav .auth__login {
  color: rgba(255, 255, 255, 0.82);
}

.sticky-nav .auth__demo,
.sticky-nav__mobile-cta {
  color: #0a1019;
  background: #f1f3f3;
}

.sticky-nav .auth__demo:hover,
.sticky-nav__mobile-cta:hover {
  background: #fff;
}

.sticky-nav__mobile-cta {
  display: inline-flex;
  min-height: 44px;
  margin-inline-start: auto;
  padding: 0 15px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 200ms ease, transform 200ms ease;
}

.sticky-nav__mobile-cta:active {
  transform: scale(0.98);
}

.sticky-nav .menu-trigger {
  background: rgba(255, 255, 255, 0.06);
}

.sticky-nav a:focus-visible,
.sticky-nav button:focus-visible {
  outline: 2px solid #9bd4e4;
  outline-offset: 3px;
}

.sticky-mobile-menu {
  z-index: 1350;
}

.sticky-mobile-menu .mobile-menu__backdrop {
  background: rgba(4, 9, 17, 0.72);
}

.sticky-mobile-menu .mobile-menu__panel {
  top: max(88px, calc(env(safe-area-inset-top) + 78px));
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 14, 25, 0.88);
}

@media (min-width: 1024px) {
  .sticky-nav__mobile-cta {
    display: none;
  }

  .sticky-nav .desktop-nav {
    flex: 0 1 auto;
  }

  .sticky-nav .auth {
    flex: 0 0 auto;
  }
}

@media (max-width: 1023px) {
  .sticky-nav {
    width: calc(100% - 32px);
  }

  .sticky-nav__surface {
    min-height: 66px;
    gap: 12px;
    padding: 7px 9px 7px 15px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 42%),
      rgba(7, 14, 25, 0.68);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
  }
}

@media (max-width: 639px) {
  .sticky-nav {
    top: max(10px, env(safe-area-inset-top));
    width: calc(100% - 20px);
  }

  .sticky-nav__surface {
    min-height: 60px;
    gap: 8px;
    padding: 7px 8px 7px 12px;
    border-radius: 18px;
  }

  .sticky-nav .brand {
    gap: 8px;
  }

  .sticky-nav .brand__mark {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .sticky-nav .brand__wordmark {
    font-size: 20px;
  }

  .sticky-nav__mobile-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .sticky-nav .menu-trigger {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-nav {
    transform: none;
  }

  .sticky-nav__mobile-cta {
    transition: none;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  display: grid;
  width: 58px;
  height: 58px;
  padding: 0;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(7, 14, 25, 0.6);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  cursor: pointer;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transition:
    translate 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.back-to-top__icon-wrap {
  display: grid;
  width: 24px;
  height: 28px;
  overflow: hidden;
  place-items: center;
}

.back-to-top__icon {
  width: 21px;
  height: 21px;
  animation: back-to-top-arrow 1.9s ease-in-out infinite;
}

@keyframes back-to-top-arrow {
  0% {
    opacity: 0.42;
    transform: translateY(5px);
  }

  48% {
    opacity: 1;
    transform: translateY(-2px);
  }

  100% {
    opacity: 0.36;
    transform: translateY(-7px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .back-to-top:hover {
    translate: 0 -2px;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(7, 14, 25, 0.72);
  }
}

.back-to-top:active {
  translate: 0 0;
}

.back-to-top:focus-visible {
  outline: 2px solid #9bd4e4;
  outline-offset: 4px;
}

@media (max-width: 639px) {
  .back-to-top {
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top__icon {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .back-to-top {
    transition: none;
  }
}
