:root {
  --navy: #062b50;
  --navy-deep: #031d37;
  --blue: #096ff2;
  --blue-bright: #1194ee;
  --cyan: #14b8df;
  --green: #16d6a3;
  --green-soft: #e5fff7;
  --pearl: #f7fbff;
  --white: #ffffff;
  --text: #0a2c4c;
  --muted: #62788e;
  --line: #e2edf5;
  --shadow: 0 22px 56px rgba(6, 42, 75, 0.1);
  --shadow-soft: 0 10px 28px rgba(6, 42, 75, 0.07);
  --radius: 26px;
  --container: min(1180px, calc(100% - 40px));
}

.result-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trip-favorite-button {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 0;
  border: 1px solid #d9e6f0;
  place-items: center;
  border-radius: 999px;
  color: #6b8296;
  background: #fff;
  box-shadow: 0 5px 14px rgba(4, 55, 98, 0.08);
  cursor: pointer;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.trip-favorite-button svg {
  width: 18px;
  height: 18px;
  fill: transparent;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition: fill 0.18s ease;
}

.trip-favorite-button:hover,
.trip-favorite-button:focus-visible {
  border-color: #ff8992;
  color: #e22032;
  outline: none;
  transform: scale(1.06);
}

.trip-favorite-button.is-favorite {
  border-color: #ffd4d8;
  color: #df2034;
  background: #fff3f4;
}

.trip-favorite-button.is-favorite svg {
  fill: currentColor;
}

.trip-favorite-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.profile-favorites-page {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 26px 12px 34px;
}

.profile-favorites-head {
  margin-bottom: 24px;
}

.profile-favorites-head > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.profile-favorites-head h3 {
  margin: 7px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.profile-favorites-head p,
.profile-favorites-loading,
.profile-favorites-error p {
  color: #688095;
}

.profile-favorites-list {
  display: grid;
  gap: 14px;
}

.profile-favorite-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce8f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 49, 82, 0.06);
}

.profile-favorite-heart {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
}

.profile-favorite-open {
  display: block;
  width: 100%;
  padding: 20px 68px 20px 22px;
  border: 0;
  color: var(--navy-deep);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.profile-favorite-open header,
.profile-favorite-open footer,
.profile-favorite-route {
  display: flex;
  align-items: center;
}

.profile-favorite-open header,
.profile-favorite-open footer {
  justify-content: space-between;
  gap: 12px;
}

.profile-favorite-open header span {
  color: #008b6c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-favorite-open time,
.profile-favorite-open footer span {
  color: #688095;
  font-size: 11px;
  font-weight: 700;
}

.profile-favorite-route {
  gap: 10px;
  margin: 18px 0;
  font-size: 17px;
}

.profile-favorite-route span {
  color: var(--blue);
}

.profile-favorite-open footer {
  padding-top: 13px;
  border-top: 1px solid #edf2f6;
}

.profile-favorite-open footer strong {
  font-size: 18px;
}

.profile-favorites-empty,
.profile-favorites-error {
  display: grid;
  justify-items: center;
  padding: 44px 24px;
  border: 1px dashed #cddfeb;
  border-radius: 22px;
  background: #f8fbfe;
  text-align: center;
}

.profile-favorites-empty > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 999px;
  color: #df2034;
  background: #fff0f2;
}

.profile-favorites-empty svg {
  width: 29px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.8;
}

.profile-favorites-empty h4 {
  margin: 16px 0 5px;
  font-size: 22px;
}

.profile-favorites-empty p {
  margin: 0 0 20px;
  color: #688095;
}

.favorite-toast {
  position: fixed;
  z-index: 180;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 13px 17px;
  border-radius: 14px;
  color: #fff;
  background: #076de2;
  box-shadow: 0 18px 45px rgba(3, 37, 71, 0.24);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.favorite-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.favorite-toast.is-error {
  background: #c92d3c;
}

@media (max-width: 640px) {
  .profile-favorites-page {
    padding-inline: 0;
  }

  .profile-favorite-open {
    padding-left: 17px;
  }

  .profile-favorite-open header,
  .profile-favorite-open footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .favorite-toast {
    right: 16px;
    bottom: 16px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(9, 111, 242, 0.1);
  background: rgba(244, 250, 255, 0.9);
  box-shadow: 0 8px 32px rgba(7, 72, 130, 0.05);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(11, 63, 107, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 35px rgba(8, 48, 83, 0.06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.9px;
  white-space: nowrap;
}

.brand img {
  width: 43px;
  height: 43px;
  border-radius: 13px;
}

.brand strong {
  color: var(--navy);
}

.brand span {
  color: var(--blue-bright);
}

.brand-nav-link {
  position: relative;
  z-index: 1;
  justify-self: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: #36536b;
  background: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.brand-nav-link:hover,
.brand-nav-link:focus-visible {
  color: var(--blue);
  background: #fff;
  outline: none;
}

.main-nav {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.nav-icon-button,
.nav-account-icon,
.language-current-button,
.language-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--blue);
  background: transparent;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-icon-button svg,
.nav-account-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-account-icon {
  position: relative;
  overflow: hidden;
  color: #0076ff;
  background: #eaf4ff;
}

.nav-account-icon.is-authenticated {
  color: var(--white);
  background: var(--blue);
}

.nav-account-icon.has-avatar {
  padding: 0;
  color: transparent;
  background: #eaf4ff;
}

.nav-account-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-menu {
  position: absolute;
  top: calc(100% - 8px);
  right: 18px;
  z-index: 80;
  width: min(400px, calc(100vw - 32px));
  padding: 18px 24px;
  border: 1px solid rgba(215, 230, 239, 0.95);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(3, 29, 55, 0.18);
}

.account-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 24px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(215, 230, 239, 0.95);
  border-left: 1px solid rgba(215, 230, 239, 0.95);
  background: var(--white);
  transform: rotate(45deg);
}

.account-menu-item {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid #e4edf4;
  color: var(--navy-deep);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.account-menu-item:last-child {
  border-bottom: 0;
}

.account-menu-item:hover,
.account-menu-item:focus-visible {
  color: var(--blue);
  outline: none;
}

.account-menu-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #58708a;
}

.account-menu-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-menu-chevron {
  color: #58708a;
  font-size: 30px;
  line-height: 1;
}

.account-menu-logout {
  color: #0a64d9;
}

.nav-icon-button:hover,
.nav-icon-button:focus-visible,
.nav-account-icon:hover,
.nav-account-icon:focus-visible,
.language-current-button:hover,
.language-current-button:focus-visible,
.language-button:hover,
.language-button:focus-visible {
  background: #eef7ff;
  outline: none;
  transform: translateY(-2px);
}

.nav-link-action {
  padding: 10px 5px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.nav-pill-action {
  padding: 11px 18px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 9px 22px rgba(8, 120, 255, 0.08);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-pill-action:hover,
.nav-pill-action:focus-visible {
  background: #f4faff;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 13px 25px rgba(8, 120, 255, 0.13);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.language-button {
  width: 34px;
  height: 34px;
  color: #315b7a;
  font-size: 12px;
  font-weight: 900;
}

.language-button.active {
  background: #eef7ff;
  box-shadow: inset 0 0 0 1px #d5eaff;
}

.language-current-button {
  color: #173c67;
  background: transparent;
  font-size: 0;
}

.language-flag {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border: 1px solid rgba(8, 37, 74, 0.12);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(8, 37, 74, 0.12);
}

.flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33.33%, #ffffff 33.33% 66.66%, #ef4135 66.66% 100%);
}

.flag-en {
  background:
    linear-gradient(90deg, transparent 0 42%, #ffffff 42% 58%, transparent 58% 100%),
    linear-gradient(0deg, transparent 0 42%, #ffffff 42% 58%, transparent 58% 100%),
    linear-gradient(90deg, transparent 0 46%, #c8102e 46% 54%, transparent 54% 100%),
    linear-gradient(0deg, transparent 0 46%, #c8102e 46% 54%, transparent 54% 100%),
    #012169;
}

.flag-es {
  background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.flag-de {
  background: linear-gradient(180deg, #000000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.flag-it {
  background: linear-gradient(90deg, #009246 0 33.33%, #ffffff 33.33% 66.66%, #ce2b37 66.66% 100%);
}

.flag-pt {
  background: linear-gradient(90deg, #006600 0 42%, #ff0000 42% 100%);
}

.flag-pt::after {
  position: absolute;
  top: 50%;
  left: 42%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ffcc00;
  content: "";
  transform: translate(-50%, -50%);
}

.flag-nl {
  background: linear-gradient(180deg, #ae1c28 0 33.33%, #ffffff 33.33% 66.66%, #21468b 66.66% 100%);
}

.flag-pl {
  background: linear-gradient(180deg, #ffffff 0 50%, #dc143c 50% 100%);
}

.flag-ro {
  background: linear-gradient(90deg, #002b7f 0 33.33%, #fcd116 33.33% 66.66%, #ce1126 66.66% 100%);
}

.flag-ar {
  background: #c1272d;
}

.flag-ar::after {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #006233;
  content: "★";
  font-size: 11px;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.flag-hi {
  background: linear-gradient(180deg, #ff9933 0 33.33%, #ffffff 33.33% 66.66%, #138808 66.66% 100%);
}

.flag-hi::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid #000080;
  border-radius: 999px;
  content: "";
  transform: translate(-50%, -50%);
}

.flag-id {
  background: linear-gradient(180deg, #ff0000 0 50%, #ffffff 50% 100%);
}

.flag-tr {
  background: #e30a17;
}

.flag-tr::before {
  position: absolute;
  top: 50%;
  left: 43%;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #ffffff;
  content: "";
  transform: translate(-50%, -50%);
}

.flag-tr::after {
  position: absolute;
  top: 50%;
  left: 47%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #e30a17;
  box-shadow: 6px 0 0 -2px #ffffff;
  content: "";
  transform: translate(-50%, -50%);
}

.flag-sv {
  background:
    linear-gradient(90deg, transparent 0 31%, #fecc00 31% 43%, transparent 43% 100%),
    linear-gradient(180deg, transparent 0 42%, #fecc00 42% 58%, transparent 58% 100%),
    #006aa7;
}

.flag-ja {
  background: #ffffff;
}

.flag-ja::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #bc002d;
  content: "";
  transform: translate(-50%, -50%);
}

.flag-zh {
  background: #de2910;
}

.flag-zh::after {
  position: absolute;
  top: 46%;
  left: 50%;
  color: #ffde00;
  content: "★";
  font-size: 12px;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: #edf6ff;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  padding: 148px 0 90px;
  background:
    radial-gradient(circle at 91% 12%, rgba(0, 184, 148, 0.09), transparent 28%),
    radial-gradient(circle at 4% 50%, rgba(9, 111, 242, 0.08), transparent 25%),
    linear-gradient(180deg, #f8fcff 0%, #fff 100%);
}

.hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-image: linear-gradient(rgba(9, 111, 242, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 111, 242, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(to top, black, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.36;
}

.hero-orb-one {
  top: 115px;
  right: 8%;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(0, 207, 165, 0.28);
}

.hero-orb-two {
  right: 42%;
  bottom: 80px;
  width: 30px;
  height: 30px;
  background: rgba(9, 165, 248, 0.13);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(7, 119, 255, 0.12);
  border-radius: 999px;
  color: #2a638c;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 6px 24px rgba(18, 86, 142, 0.06);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15px;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 207, 165, 0.12);
}

.hero h1 {
  max-width: 630px;
  margin: 24px 0;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(48px, 5.6vw, 75px);
  line-height: 1.03;
  letter-spacing: -4px;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(105deg, var(--blue) 5%, var(--cyan) 54%, var(--green));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 600px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-lead strong {
  color: var(--navy);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(105deg, var(--blue), #0798fb);
  box-shadow: 0 14px 28px rgba(9, 111, 242, 0.2);
}

.button-primary:hover,
.button-white:hover {
  transform: translateY(-3px);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(9, 111, 242, 0.25);
}

.button-ghost {
  border: 1px solid var(--line);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
}

.button-ghost:hover {
  border-color: #bbd6e9;
  background: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 31px;
  color: #57728a;
  font-size: 12px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  background: rgba(0, 207, 165, 0.1);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 620px;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 330px;
  height: 674px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  background: #061f38;
  box-shadow:
    0 38px 90px rgba(3, 34, 65, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.09);
  transform: rotate(2.3deg);
}

.phone-shell::before {
  position: absolute;
  top: 120px;
  right: -4px;
  width: 4px;
  height: 80px;
  border-radius: 0 4px 4px 0;
  background: #17405f;
  content: "";
}

.phone-top {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 27px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
}

.phone-island {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 20px;
  background: #061f38;
  transform: translateX(-50%);
}

.phone-status {
  letter-spacing: 1px;
}

.phone-app {
  height: 100%;
  overflow: hidden;
  padding: 45px 18px 20px;
  border-radius: 41px;
  background:
    radial-gradient(circle at 70% 0%, rgba(0, 207, 165, 0.12), transparent 34%),
    #f8fcff;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.app-brand img {
  width: 29px;
  height: 29px;
  border-radius: 9px;
}

.app-brand strong {
  color: var(--navy);
}

.app-brand span {
  color: var(--blue-bright);
}

.app-header button {
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  background-position: center;
  background-size: cover;
  font-size: 9px;
  font-weight: 800;
}

.app-header button.has-avatar {
  color: transparent;
}

.assistant-intro {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0 22px;
}

.assistant-intro img,
.typing-row img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(0, 111, 221, 0.18);
}

.assistant-intro p {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.assistant-intro span {
  color: #7690a7;
  font-size: 10px;
}

.chat-bubble {
  margin-left: 38px;
  padding: 13px 15px;
  border-radius: 16px 16px 4px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #059de9);
  box-shadow: 0 9px 20px rgba(0, 113, 238, 0.17);
  font-size: 10px;
  line-height: 1.55;
}

.typing-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 17px 0;
}

.typing-row img {
  width: 30px;
  height: 30px;
}

.typing-dots {
  display: flex;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 4px 14px 14px 14px;
  background: var(--white);
  box-shadow: 0 7px 18px rgba(10, 56, 91, 0.09);
}

.typing-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #94aec2;
  animation: typing 1.2s ease-in-out infinite;
}

.typing-dots i:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots i:nth-child(3) {
  animation-delay: 0.4s;
}

.mini-trip {
  padding: 16px;
  border: 1px solid #dfecf4;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 13px 28px rgba(8, 56, 93, 0.09);
}

.mini-trip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.mini-trip-head strong {
  color: var(--navy);
  font-size: 17px;
}

.match-pill {
  padding: 5px 8px;
  border-radius: 999px;
  color: #008d72;
  background: rgba(0, 207, 165, 0.11);
  font-size: 8px;
  font-weight: 800;
}

.route-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 42px;
  font-size: 10px;
}

.route-line:first-of-type::after {
  position: absolute;
  top: 12px;
  left: 4px;
  width: 1px;
  height: 32px;
  background: #bcd0df;
  content: "";
}

.route-dot {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  margin-top: 4px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
}

.route-line-end .route-dot {
  border-color: var(--green);
  background: var(--green);
}

.route-line strong,
.route-line small {
  display: block;
}

.route-line small {
  color: #8195a6;
  font-size: 8px;
}

.driver-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  padding-top: 12px;
  border-top: 1px solid #e6eef4;
}

.driver-avatar {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #193c59;
  font-size: 8px;
  font-weight: 800;
}

.driver-line div {
  flex: 1;
}

.driver-line strong,
.driver-line small {
  display: block;
  font-size: 8px;
}

.driver-line small {
  color: #8297aa;
}

.seats {
  color: #648198;
  font-size: 8px;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.float-card strong,
.float-card small {
  display: block;
}

.float-card strong {
  color: var(--navy);
  font-size: 15px;
}

.float-card small {
  color: #7a91a5;
  font-size: 9px;
}

.float-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 18px;
  font-weight: 800;
}

.float-fee {
  top: 105px;
  left: -3px;
  animation: float 4s ease-in-out infinite;
}

.float-green {
  right: -10px;
  bottom: 103px;
  animation: float 4.6s ease-in-out 0.6s infinite;
}

.leaf-icon {
  background: linear-gradient(135deg, #04b98e, var(--green));
}

.trust-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid #ecf2f7;
  border-bottom: 1px solid #ecf2f7;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  position: relative;
  padding: 25px;
  text-align: center;
}

.trust-grid div:not(:last-child)::after {
  position: absolute;
  top: 28px;
  right: 0;
  width: 1px;
  height: 38px;
  background: var(--line);
  content: "";
}

.trust-grid strong {
  display: block;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  letter-spacing: -1px;
}

.trust-grid span {
  color: #7990a3;
  font-size: 11px;
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.section-heading h2,
.demo-copy h2,
.fee-copy h2,
.safety-copy h2,
.app-copy h2,
.faq-heading h2,
.waitlist-copy h2 {
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -2.4px;
}

.section-heading p,
.demo-copy > p,
.fee-copy > p,
.safety-copy > p,
.app-copy > p,
.faq-heading p,
.waitlist-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.concept {
  background: #fff;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.concept-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid #e3edf4;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 7px 30px rgba(18, 65, 100, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.concept-card:hover {
  border-color: #c9e4f5;
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.concept-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 221, 181, 0.35), transparent 37%),
    linear-gradient(145deg, #0678fb, #055da9);
  box-shadow: 0 25px 55px rgba(5, 104, 205, 0.25);
}

.card-number {
  position: absolute;
  top: 21px;
  right: 25px;
  color: #dbe7f0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.featured .card-number {
  color: rgba(255, 255, 255, 0.22);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 17px;
}

.feature-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-message {
  color: var(--blue);
  background: #eaf4ff;
}

.icon-spark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.icon-route {
  color: #00aa88;
  background: #e4fbf5;
}

.concept-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.concept-card.featured h3 {
  color: var(--white);
}

.concept-card p {
  margin: 0;
  color: #70879a;
  font-size: 14px;
  line-height: 1.75;
}

.concept-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.demo-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 5% 90%, rgba(0, 184, 148, 0.16), transparent 30%),
    radial-gradient(circle at 95% 10%, rgba(9, 111, 242, 0.18), transparent 36%),
    linear-gradient(145deg, #031d37 0%, #062b50 100%);
}

.demo-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 45%);
}

.assistant-section {
  padding: 105px 0 120px;
}

.assistant-heading {
  position: relative;
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.assistant-heading h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -2.4px;
}

.assistant-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.mode-switch {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(600px, 100%);
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 auto 25px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.06);
}

.mode-tab {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 65px;
  padding: 10px 16px;
  border: 0;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mode-tab.active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.mode-tab strong,
.mode-tab small {
  display: block;
}

.mode-tab strong {
  font-size: 13px;
}

.mode-tab small {
  margin-top: 1px;
  opacity: 0.7;
  font-size: 9px;
}

.mode-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.mode-tab.active .mode-icon {
  color: var(--blue);
  background: #e9f4ff;
}

.mode-tab[data-mode="driver"].active .mode-icon {
  color: #009b7d;
  background: #e3f9f3;
}

.mode-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.assistant-mode-panel {
  position: relative;
  z-index: 1;
  animation: message-in 0.28s ease both;
}

[hidden] {
  display: none !important;
}

.assistant-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.18);
}

.assistant-side {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.assistant-kicker {
  margin-bottom: 13px;
  color: #55ebcf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.assistant-side h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -1.5px;
}

.assistant-side > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  line-height: 1.75;
}

.assistant-side .prompt-list {
  margin-top: 28px;
}

.assistant-layout .ai-demo {
  min-height: 540px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: none;
}

.assistant-layout .demo-messages {
  height: 400px;
}

.driver-benefits {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.driver-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.driver-benefits i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(87, 241, 210, 0.23);
  border-radius: 8px;
  color: #62efd3;
  background: rgba(0, 207, 165, 0.09);
  font-size: 9px;
  font-style: normal;
}

.driver-console {
  min-height: 540px;
  padding: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  background: #f8fbfe;
}

.driver-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfeaf2;
}

.console-label {
  display: block;
  margin-bottom: 2px;
  color: #8095a7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.driver-console-head strong {
  color: var(--navy);
  font-size: 14px;
}

.text-button {
  padding: 7px 10px;
  border: 0;
  color: #647e92;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
}

.text-button:hover {
  color: var(--blue);
}

.auth-view {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 29, 55, 0.62);
  backdrop-filter: blur(8px);
}

.auth-modal-card {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 0%, rgba(24, 201, 238, 0.14), transparent 34%),
    var(--white);
  box-shadow: 0 34px 90px rgba(3, 29, 55, 0.28);
}

.auth-modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 0;
  place-items: center;
  border-radius: 12px;
  color: #557085;
  background: #eff6fa;
  font-size: 24px;
  line-height: 1;
}

.auth-modal-head {
  padding-right: 44px;
  margin-bottom: 20px;
}

.auth-modal-head h2 {
  margin: 0 0 8px;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.auth-modal-head p {
  margin: 0;
  color: #6b8397;
  font-size: 13px;
  line-height: 1.65;
}

.social-auth-section {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.social-auth-button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #d8e6ef;
  border-radius: 15px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.social-auth-button:hover,
.social-auth-button:focus-visible {
  border-color: #9bcfff;
  outline: none;
  box-shadow: 0 10px 24px rgba(8, 120, 255, 0.08);
  transform: translateY(-1px);
}

.social-auth-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.social-auth-google {
  background: linear-gradient(135deg, #4285f4, #34a853 48%, #fbbc05 70%, #ea4335);
}

.social-auth-facebook {
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 19px;
  line-height: 1;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7f93a5;
  font-size: 11px;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #e1edf4;
}

.driver-login-prompt {
  display: grid;
  max-width: 440px;
  gap: 12px;
  margin: 55px auto 0;
  padding: 28px;
  border: 1px solid #dfeaf2;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 120, 255, 0.08), transparent 34%),
    var(--white);
  box-shadow: 0 12px 35px rgba(8, 55, 90, 0.07);
  text-align: center;
}

.driver-login-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 auto 2px;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: #e9f4ff;
  font-size: 20px;
  font-weight: 900;
}

.driver-login-prompt strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.driver-login-prompt p {
  margin: 0;
  color: #6b8397;
  font-size: 12px;
  line-height: 1.65;
}

.profile-view {
  position: fixed;
  z-index: 132;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.profile-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 29, 55, 0.64);
  backdrop-filter: blur(8px);
}

.profile-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1080px, 100%);
  height: min(820px, calc(100vh - 48px));
  max-height: min(820px, calc(100vh - 48px));
  grid-template-columns: 320px 1fr;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(3, 29, 55, 0.3);
}

.profile-modal-close {
  position: absolute;
  z-index: 3;
  top: 17px;
  right: 17px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 0;
  place-items: center;
  border-radius: 12px;
  color: #557085;
  background: #eff6fa;
  font-size: 24px;
  line-height: 1;
}

.profile-side {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 34px 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 207, 165, 0.32), transparent 34%),
    linear-gradient(150deg, var(--navy-deep), #075d9f);
}

.profile-avatar {
  position: relative;
  display: grid;
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  place-items: center;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.13);
}

.profile-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar span {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 900;
}

.profile-side h2 {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -1.8px;
}

.profile-side strong,
.profile-side p {
  display: block;
}

.profile-side strong {
  font-size: 16px;
}

.profile-side p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  word-break: break-word;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.profile-badges span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 9px;
  font-weight: 900;
}

.profile-logout {
  margin-top: auto;
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.78);
}

.profile-logout:hover {
  color: var(--white);
}

.profile-main {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 34px;
}

.profile-section-head {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #dfeaf2;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 120, 255, 0.08), transparent 36%),
    #f8fbfe;
}

.profile-section-head span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.profile-section-head strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.profile-section-head p {
  margin: 8px 0 0;
  color: #6b8397;
  font-size: 12px;
  line-height: 1.65;
}

.profile-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 24px;
  padding: 6px;
  border-radius: 15px;
  background: #eef5f9;
}

.profile-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 11px;
  color: #6c8497;
  background: transparent;
  font-size: 10px;
  font-weight: 900;
}

.profile-tabs button.active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(14, 61, 98, 0.08);
}

.profile-public-preview {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.profile-public-preview article {
  min-height: 160px;
  padding: 18px;
  border: 1px solid #dfeaf2;
  border-radius: 20px;
  background: #fbfdff;
}

.profile-card-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.profile-public-preview strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.3;
}

.profile-public-preview p {
  margin: 10px 0 0;
  color: #6b8397;
  font-size: 12px;
  line-height: 1.6;
}

.profile-public-preview ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: #48667f;
  font-size: 12px;
  font-weight: 800;
}

.profile-public-preview li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-public-preview li span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
}

.profile-verified-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 120, 255, 0.09), transparent 35%),
    #fbfdff;
}

.profile-preference-preview {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 207, 165, 0.11), transparent 38%),
    #fbfffd;
}

.profile-vehicle-preview .text-button {
  margin-top: 14px;
}

.profile-account-divider {
  height: 1px;
  margin: 26px 0;
  background: #e4edf4;
}

.profile-modal-card {
  width: min(960px, 100%);
  grid-template-columns: 1fr;
  background: #fff;
}

.profile-side {
  display: none;
}

.profile-main {
  padding: 0 42px 42px;
}

.profile-tabs {
  position: sticky;
  z-index: 2;
  top: 0;
  max-width: 700px;
  margin: 0 auto 28px;
  padding: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 22px rgba(8, 55, 90, 0.06);
}

.profile-tabs button {
  min-height: 60px;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  font-size: 13px;
}

.profile-tabs button.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  box-shadow: none;
}

.profile-panel {
  max-width: 660px;
  margin: 0 auto;
}

.profile-tabs[hidden] {
  display: none;
}

.profile-tabs[hidden] ~ .profile-panel:not([hidden]) {
  padding-top: 42px;
}

.profile-trips-page {
  display: grid;
  gap: 30px;
  color: var(--navy);
}

.profile-trips-stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e0e8ef;
  border-radius: 18px;
  background: #fff;
}

.profile-trips-stat-strip article {
  display: flex;
  min-height: 82px;
  padding: 16px 22px;
  align-items: center;
  gap: 14px;
}

.profile-trips-stat-strip article + article {
  border-left: 1px solid #e7edf2;
}

.profile-trips-stat-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 999px;
  color: #0875eb;
  background: #eaf4ff;
  font-size: 20px;
  font-weight: 900;
}

.profile-trips-stat-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-trips-stat-strip article div {
  display: grid;
  gap: 2px;
}

.profile-trips-stat-strip strong {
  font-size: 21px;
  line-height: 1;
}

.profile-trips-stat-strip small {
  color: #5f7489;
  font-size: 10px;
  font-weight: 700;
}

.profile-trips-upcoming {
  min-height: 390px;
}

.profile-trips-heading {
  margin-bottom: 24px;
}

.profile-trips-heading > span {
  color: #0875eb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-trips-heading h3,
.profile-trips-empty h3 {
  margin: 8px 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.14;
  letter-spacing: -1.1px;
}

.profile-trips-heading p,
.profile-trips-empty p {
  margin: 0;
  color: #5f7489;
  font-size: 13px;
  line-height: 1.65;
}

.profile-trips-empty {
  display: grid;
  justify-items: center;
  padding: 4px 0 10px;
  text-align: center;
}

.profile-trips-empty p {
  max-width: 520px;
}

.profile-trips-illustration {
  width: min(430px, 90%);
  margin: 0 auto 20px;
}

.profile-trips-shape {
  fill: #e9f4ff;
}

.profile-trips-road {
  fill: none;
  stroke: #9dceff;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 3 21;
}

.profile-trips-search-ring {
  fill: rgba(255, 255, 255, 0.92);
  stroke: #0875eb;
  stroke-width: 18;
}

.profile-trips-search-handle {
  fill: none;
  stroke: #0866cf;
  stroke-width: 22;
  stroke-linecap: round;
}

.profile-trips-dot {
  fill: #0875eb;
}

.profile-trips-list {
  display: grid;
  gap: 14px;
}

.profile-trip-card {
  position: relative;
  padding: 20px 22px;
  border: 1px solid #dfe8ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(6, 49, 82, 0.05);
}

.profile-trip-card.has-cancel-action {
  padding-left: 66px;
}

.profile-trip-cancel {
  position: absolute;
  top: 50%;
  left: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid #ffc7c7;
  place-items: center;
  border-radius: 999px;
  color: #d82c3a;
  background: #fff4f4;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.profile-trip-cancel:hover,
.profile-trip-cancel:focus-visible {
  border-color: #e12d3e;
  background: #ffe5e7;
  transform: translateY(-50%) scale(1.06);
}

.profile-trip-card.is-archived {
  background: #f9fbfd;
  box-shadow: none;
}

.profile-trip-card header,
.profile-trip-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.profile-trip-card time {
  color: #60778b;
  font-size: 11px;
  font-weight: 700;
}

.profile-trip-role {
  color: #0875eb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-trip-route {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  margin: 20px 0;
}

.profile-trip-route > span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.profile-trip-route > span::before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 8px;
  width: 2px;
  background: #bcd9ef;
  content: "";
}

.profile-trip-route i {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 2px solid #0875eb;
  border-radius: 999px;
  background: #fff;
}

.profile-trip-route div {
  display: grid;
  gap: 14px;
}

.profile-trip-route strong {
  font-size: 16px;
}

.profile-trip-card footer {
  padding-top: 14px;
  border-top: 1px solid #edf1f5;
}

.profile-trip-card footer > strong {
  margin-left: auto;
  font-size: 17px;
}

.profile-trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  color: #6b8194;
  font-size: 10px;
  font-weight: 700;
}

.profile-trip-card .text-button {
  color: #0875eb;
  font-size: 11px;
}

.profile-trips-archive {
  border-top: 1px solid #e1e8ee;
}

.profile-trips-archive summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.profile-trips-archive summary::-webkit-details-marker {
  display: none;
}

.profile-trips-archive summary small {
  display: grid;
  min-width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 999px;
  color: #5f7489;
  background: #edf3f7;
  font-size: 10px;
}

.profile-trips-archive[open] summary {
  margin-bottom: 14px;
}

.profile-trips-loading,
.profile-trips-error,
.profile-trips-archive-empty {
  padding: 28px;
  border-radius: 16px;
  color: #647b90;
  background: #f5f8fb;
  font-size: 12px;
  text-align: center;
}

.profile-trips-error strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.profile-trips-error p,
.profile-trips-archive-empty {
  margin: 0;
}

.profile-public-page {
  display: grid;
  gap: 0;
}

.profile-overview-section,
.profile-verified-section,
.profile-about-section,
.profile-vehicles-section {
  padding: 28px 0;
}

.profile-overview-section {
  padding-top: 8px;
  border-bottom: 1px solid #e2e8ee;
}

.profile-public-head {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: default;
}

.profile-public-head:hover .profile-page-display-name,
.profile-public-head:focus-visible {
  outline: none;
}

.profile-page-avatar {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 4px solid #d7e4f3;
  border-radius: 999px;
  background: #eaf4ff;
}

.profile-page-avatar img {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: inherit;
  object-fit: cover;
}

.profile-page-avatar.is-certified {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px #ddecff;
}

.profile-page-avatar > span:not(.profile-verified-dot) {
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.profile-verified-dot {
  position: absolute;
  right: -2px;
  bottom: 4px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.profile-page-identity {
  display: grid;
  gap: 4px;
}

.profile-page-identity > strong {
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -1.3px;
}

.profile-page-chevron {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #59708a;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.profile-page-chevron:hover {
  color: var(--blue);
  background: #eef6ff;
  transform: translateX(2px);
}

.profile-page-chevron:focus-visible {
  color: var(--blue);
  outline: 3px solid rgba(13, 124, 255, 0.2);
  outline-offset: 2px;
}

.profile-grade-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  margin-top: 5px;
  padding: 7px 11px;
  border: 1px solid transparent;
  border-radius: 13px;
}

.profile-grade-icon {
  position: relative;
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  color: inherit;
  font-size: 17px;
  font-weight: 900;
}

.profile-grade-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

#profile-grade-label,
#profile-grade-chip {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#profile-grade-label {
  color: inherit;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
}

#profile-grade-chip {
  color: currentColor;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.25;
  opacity: 0.78;
}

.profile-grade-badge[data-grade="rookie"] {
  color: #0878d8;
  border-color: #cce6ff;
  background: #edf7ff;
}

.profile-grade-badge[data-grade="rookie"] .profile-grade-icon::before {
  content: "◎";
}

.profile-grade-badge[data-grade="urban"] {
  color: #7c4219;
  border-color: #d8955e;
  background: linear-gradient(135deg, #fff7ed, #efbe8e);
  box-shadow: 0 6px 16px rgba(164, 88, 32, 0.18);
}

.profile-grade-badge[data-grade="urban"] .profile-grade-icon::before {
  content: "◆";
  color: #b9672c;
}

.profile-grade-badge[data-grade="captain"] {
  color: #465b6b;
  border-color: #aebbc5;
  background: linear-gradient(135deg, #fbfdff, #d8e1e8);
  box-shadow: inset 0 1px 0 #fff, 0 6px 16px rgba(65, 84, 99, 0.17);
}

.profile-grade-badge[data-grade="captain"] .profile-grade-icon::before {
  content: "";
  width: 13px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 2px 2px;
  transform: translateY(-2px);
}

.profile-grade-badge[data-grade="captain"] .profile-grade-icon::after {
  position: absolute;
  bottom: 4px;
  left: 2px;
  width: 19px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.profile-grade-badge[data-grade="legend"] {
  color: #694400;
  border-color: #efa900;
  background: linear-gradient(135deg, #fff8a7, #ffc400 72%, #ffae00);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 7px 20px rgba(255, 174, 0, 0.35);
}

.profile-grade-badge[data-grade="legend"] .profile-grade-icon::before {
  color: #fff9d2;
  text-shadow: 0 1px 2px rgba(105, 68, 0, 0.45);
  content: "★";
}

.profile-grade-chip {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #075f4f;
  background: #e7fbf5;
  font-size: 11px;
  font-weight: 900;
}

.profile-page-chevron {
  font-size: 34px;
}

.profile-stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid #e0e8ef;
  border-radius: 18px;
  background: #fff;
  margin-top: 24px;
}

.profile-stat-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 5px 14px;
  padding: 18px 28px;
}

.profile-stat-strip article + article {
  border-left: 1px solid #e7eef4;
}

.profile-stat-icon {
  display: grid;
  width: 48px;
  height: 48px;
  grid-row: span 2;
  place-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf4ff;
  font-size: 22px;
  font-weight: 900;
}

.profile-stat-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-stat-strip strong {
  color: var(--navy-deep);
  font-size: 22px;
  line-height: 1;
}

.profile-stat-strip small {
  color: #425b75;
  font-size: 11px;
  font-weight: 800;
}

.profile-action-links,
.profile-about-section,
.profile-verified-section,
.profile-vehicles-section {
  display: grid;
  gap: 16px;
}

.profile-action-links {
  gap: 12px;
  margin-top: 20px;
}

.profile-photo-upload {
  display: grid;
  gap: 5px;
  justify-items: start;
}

.profile-photo-upload small {
  color: #6a8094;
  font-size: 11px;
  font-weight: 700;
}

.profile-action-links .text-button,
.profile-about-section .text-button,
.profile-vehicles-section .text-button {
  justify-self: start;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.profile-soft-separator {
  width: 100%;
  height: 8px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: #eef1f4;
}

.profile-verified-section h3,
.profile-about-section h3,
.profile-vehicles-section h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  letter-spacing: -0.8px;
}

.profile-verified-section {
  border-bottom: 0;
}

.profile-verified-section ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-verified-section li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 5px 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e7eef4;
}

.profile-verified-section li > span {
  display: grid;
  width: 22px;
  height: 22px;
  grid-row: span 3;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.profile-verified-section li > strong {
  grid-column: 2;
  grid-row: 1;
}

.profile-verified-section li > small {
  grid-column: 2;
  grid-row: 2;
}

.profile-verification-help {
  grid-column: 2;
  grid-row: 3;
  max-width: 520px;
  margin: 2px 0 0;
  color: #647b90;
  font-size: 12px;
  line-height: 1.45;
}

.profile-verified-section li[data-state="pending"] > span {
  color: #a86400;
  background: #fff1d7;
}

.profile-verified-section li[data-state="missing"] > span {
  color: #71879a;
  background: #edf3f7;
}

.profile-verified-section strong,
.profile-preference-list strong {
  color: var(--navy-deep);
  font-size: 15px;
}

.profile-verified-section small {
  color: #536b82;
  font-size: 13px;
  font-weight: 800;
}

.profile-verified-section small[data-state="verified"] {
  color: #078560;
}

.profile-verified-section small[data-state="pending"] {
  color: #b76b00;
}

.profile-verify-action {
  grid-column: 3;
  grid-row: 1 / span 3;
  justify-self: end;
  padding: 9px 13px;
  border: 1px solid #b8d9ff;
  border-radius: 999px;
  background: #f4f9ff;
  color: var(--blue);
  font-size: 12px;
}

.profile-phone-entry {
  display: grid;
  grid-column: 2 / -1;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: 5px 12px;
  margin-top: 8px;
}

.profile-phone-entry label {
  grid-column: 1 / -1;
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 850;
}

.profile-phone-entry input {
  min-width: 0;
  padding: 11px 13px;
  border: 1px solid #cbddeb;
  border-radius: 11px;
  color: var(--navy);
  background: #fff;
  font: inherit;
}

.profile-phone-entry input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(13, 124, 255, 0.13);
}

.profile-phone-entry small {
  color: #647b90;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.55;
}

.profile-phone-entry small strong {
  color: var(--navy-deep);
}

.profile-phone-delivery-status {
  grid-column: 2 / -1;
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 11px;
  color: #526c83;
  background: #f3f8fc;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.55;
}

.profile-phone-delivery-status[data-state="ready"],
.profile-phone-delivery-status[data-state="success"] {
  color: #076b52;
  background: #ecfaf5;
}

.profile-phone-delivery-status[data-state="sending"],
.profile-phone-delivery-status[data-state="pending"] {
  color: #8b5a08;
  background: #fff8e8;
}

.profile-phone-delivery-status[data-state="error"] {
  color: #a53030;
  background: #fff1f1;
}

.profile-phone-otp {
  display: grid;
  grid-column: 2 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 8px;
}

.profile-phone-otp label {
  grid-column: 1 / -1;
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 850;
}

.profile-phone-otp input {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #d8e6ef;
  border-radius: 11px;
  color: var(--navy);
}

.profile-about-section > p {
  margin: 0;
  color: #4b6279;
  font-size: 14px;
  line-height: 1.7;
}

.profile-preference-list {
  display: grid;
  gap: 18px;
  padding: 4px 0;
}

.profile-preference-list p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.profile-preference-choice {
  display: grid;
  min-height: 48px;
  grid-template-columns: 26px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.profile-preference-choice select {
  width: 100%;
  min-width: 0;
  padding: 9px 0;
  border: 0;
  appearance: none;
  color: var(--navy-deep);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.profile-preference-choice select:focus-visible {
  outline: 0;
  color: var(--blue);
}

.profile-preference-choice:focus-within .profile-preference-icon,
.profile-preference-choice:focus-within .profile-preference-chevron {
  color: var(--blue);
}

.profile-preference-chevron {
  color: #60778c;
  font-size: 24px;
  line-height: 1;
}

#profile-inline-preferences-status {
  margin: 2px 0 0;
  color: #597187;
  font-size: 12px;
  font-weight: 800;
}

#profile-inline-preferences-status:empty {
  display: none;
}

#profile-inline-preferences-status.success {
  color: #087b5b;
}

#profile-inline-preferences-status.error {
  color: #c53a3a;
}

.profile-preference-list span {
  display: grid;
  width: 24px;
  place-items: center;
  color: #5c7188;
  font-size: 17px;
  font-weight: 900;
}

.profile-preference-list .profile-preference-icon {
  width: 26px;
  min-width: 26px;
}

.profile-preference-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-preferences-edit {
  margin-top: 2px;
}

.profile-section-inline-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.profile-section-inline-head p {
  margin: 5px 0 0;
  color: #61788e;
  font-size: 12px;
}

.profile-vehicle-select-label > span {
  display: block;
  margin-bottom: 7px;
  color: #516d83;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.profile-vehicle-select-label select,
.profile-vehicle-form input,
.profile-vehicle-form select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #d8e6ef;
  border-radius: 11px;
  color: var(--navy);
  background: #fff;
}

.profile-vehicle-form select:disabled {
  color: #8195a6;
  background: #f1f5f8;
  cursor: not-allowed;
}

.profile-vehicle-form {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #dfeaf2;
  border-radius: 17px;
  background: #f8fbfe;
}

.profile-vehicle-list {
  display: grid;
  gap: 10px;
}

.profile-vehicle-list > p {
  margin: 0;
  color: #6b8397;
  font-size: 13px;
}

.profile-vehicle-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e4edf4;
}

.profile-vehicle-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 66px;
  padding: 13px 4px 13px 0;
  border: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.profile-vehicle-item strong,
.profile-vehicle-item small {
  display: block;
}

.profile-vehicle-item strong {
  color: var(--navy-deep);
  font-size: 15px;
}

.profile-vehicle-item small {
  margin-top: 3px;
  color: #647b91;
  font-size: 12px;
}

.profile-vehicle-item-row.active strong {
  color: var(--blue);
}

.profile-vehicle-chevron {
  color: #5a7188;
  font-size: 26px;
  line-height: 1;
}

.profile-vehicle-item-row.active .profile-vehicle-chevron {
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.profile-vehicle-delete {
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  color: #b93434;
  background: #fff2f2;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.profile-vehicle-delete:hover,
.profile-vehicle-delete:focus-visible {
  color: #8f1f1f;
  background: #ffe4e4;
}

.profile-vehicle-add-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
}

.profile-vehicle-add-link > span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 17px;
  line-height: 1;
}

.profile-edit-form {
  position: fixed;
  z-index: 210;
  inset: 0;
  display: grid;
  overflow-y: auto;
  margin: 0;
  padding: 24px;
  border: 0;
  place-items: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.profile-editor-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(2, 25, 48, 0.7);
  backdrop-filter: blur(8px);
}

.profile-editor-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  gap: 22px;
  overflow-y: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(2, 25, 48, 0.3);
}

.profile-editor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e4ebf1;
}

.profile-editor-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.profile-editor-head h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 25px;
  letter-spacing: -0.8px;
}

.profile-editor-head > button {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 0;
  place-items: center;
  border-radius: 12px;
  color: #587086;
  background: #eef5f9;
  font-size: 23px;
}

.profile-editor-group {
  display: grid;
  gap: 16px;
}

.profile-edit-form[data-section="photo"] [data-profile-editor-group]:not([data-profile-editor-group="photo"]),
.profile-edit-form[data-section="identity"] [data-profile-editor-group]:not([data-profile-editor-group="identity"]),
.profile-edit-form[data-section="preferences"] [data-profile-editor-group]:not([data-profile-editor-group="preferences"]) {
  display: none;
}

.profile-editor-status:empty {
  display: none;
}

.profile-editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.profile-section-compact {
  margin-bottom: 16px;
}

.account-clean-page {
  display: grid;
  gap: 0;
}

.account-clean-row {
  border-bottom: 1px solid #e4edf4;
}

.account-clean-row summary,
.account-clean-link {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 20px 4px;
  border: 0;
  color: var(--navy-deep);
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.account-clean-row summary::-webkit-details-marker {
  display: none;
}

.account-clean-row summary::after,
.account-clean-link::after {
  content: "›";
  color: #58708a;
  font-size: 28px;
  line-height: 1;
}

.account-clean-row[open] summary::after {
  transform: rotate(90deg);
}

.account-clean-row summary small {
  display: block;
  grid-column: 1;
  margin-top: 3px;
  color: #6c8497;
  font-size: 11px;
  font-weight: 800;
}

.account-clean-row > form,
.account-clean-row > div,
.account-clean-row > p {
  margin: 0 0 20px;
}

.account-clean-link {
  border-bottom: 1px solid #e4edf4;
}

.account-danger-link {
  color: #c53a3a;
}

.chat-inbox {
  width: min(1100px, 100%);
  margin: 0 auto;
}

#profile-tab-messages {
  max-width: none;
}

.chat-empty-state {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  text-align: center;
}

.chat-empty-kicker {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.chat-empty-state h2 {
  margin: 10px 0 20px;
  color: var(--navy-deep);
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -0.045em;
}

.chat-empty-state p {
  max-width: 560px;
  margin: 0;
  color: #536c82;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.chat-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.conversation-page {
  display: grid;
  width: 100%;
  min-height: 650px;
  max-height: 76vh;
  grid-template-columns: 330px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #dbe7f0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(12, 54, 87, 0.09);
}

.conversation-sidebar {
  min-width: 0;
  overflow-y: auto;
  border-right: 1px solid #e4edf4;
  background: #f8fbfe;
}

.conversation-sidebar-head {
  position: sticky;
  z-index: 1;
  top: 0;
  padding: 25px 22px 16px;
  border-bottom: 1px solid #e4edf4;
  background: rgba(248, 251, 254, 0.96);
  backdrop-filter: blur(12px);
}

.conversation-sidebar h2 {
  margin: 6px 0 0;
  color: var(--navy-deep);
  font-size: 25px;
  letter-spacing: -0.035em;
}

.conversation-list {
  display: grid;
  gap: 7px;
  padding: 12px;
}

.conversation-contact {
  display: grid;
  width: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 5px 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: inherit;
  background: transparent;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.conversation-contact:hover,
.conversation-contact.active {
  border-color: #d5e5f1;
  background: #fff;
  box-shadow: 0 9px 24px rgba(17, 62, 98, 0.07);
}

.conversation-contact-avatar,
.conversation-thread-avatar,
.chat-notification-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #087cff, #05a8e8);
  background-position: center;
  background-size: cover;
  font-weight: 900;
}

.conversation-contact-avatar {
  width: 46px;
  height: 46px;
  grid-row: span 2;
}

.conversation-contact strong,
.conversation-contact small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-contact strong {
  align-self: end;
  color: var(--navy-deep);
  font-size: 14px;
}

.conversation-contact small {
  align-self: start;
  color: #6b8194;
  font-size: 11px;
}

.conversation-contact time {
  align-self: end;
  color: #8497a7;
  font-size: 10px;
  font-weight: 800;
}

.conversation-unread {
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  align-self: start;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.conversation-thread {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.conversation-thread-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid #e4edf4;
}

.conversation-thread-person {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.conversation-thread-avatar {
  width: 43px;
  height: 43px;
}

.conversation-thread-head strong,
.conversation-thread-head span {
  display: block;
}

.conversation-thread-head strong {
  color: var(--navy-deep);
  font-size: 15px;
}

.conversation-thread-head .conversation-thread-person span:not(.conversation-thread-avatar) {
  margin-top: 3px;
  overflow: hidden;
  color: #6c8497;
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-secure-chip {
  padding: 7px 10px;
  border: 1px solid #cfe9df;
  border-radius: 999px;
  color: #007f67;
  background: #effaf7;
  font-size: 10px;
  font-weight: 900;
}

.conversation-thread-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.conversation-safety-button {
  padding: 7px 10px;
  border: 1px solid #d6e4ee;
  border-radius: 999px;
  color: #486379;
  background: #fff;
  font-size: 10px;
  font-weight: 900;
}

.conversation-safety-button:hover,
.conversation-safety-button:focus-visible {
  border-color: #99c8ff;
  color: var(--blue);
}

.conversation-safety-button.danger {
  border-color: #f1d3d3;
  color: #bc3f43;
  background: #fff8f8;
}

.conversation-form.is-blocked {
  grid-template-columns: 1fr;
  background: #fff8f8;
}

.conversation-form.is-blocked .conversation-input-wrap,
.conversation-form.is-blocked #conversation-send-button {
  display: none;
}

.conversation-messages {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 13px;
  overflow-y: auto;
  padding: 24px;
  background: #f8fbfd;
}

.conversation-day-separator {
  align-self: center;
  margin: 5px 0;
  color: #7b8fa0;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.conversation-message {
  position: relative;
  max-width: min(76%, 520px);
  padding: 12px 14px 10px;
  border: 1px solid #dfeaf2;
  border-radius: 18px 18px 18px 5px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(19, 65, 99, 0.05);
}

.conversation-message.is-user {
  align-self: flex-end;
  border-color: #087cff;
  border-radius: 18px 18px 5px 18px;
  color: #fff;
  background: linear-gradient(145deg, #087cff, #0d8ee9);
}

.conversation-message p,
.conversation-message small {
  margin: 0;
}

.conversation-message p {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.conversation-message-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 6px;
}

.conversation-message small {
  color: #768b9c;
  font-size: 9px;
  font-weight: 800;
}

.conversation-message.is-user small {
  color: rgba(255, 255, 255, 0.8);
}

.conversation-report-button {
  padding: 0;
  border: 0;
  color: #7b8fa0;
  background: transparent;
  font-size: 9px;
  font-weight: 900;
  opacity: 0;
  transition: opacity 150ms ease;
}

.conversation-message:hover .conversation-report-button,
.conversation-report-button:focus-visible {
  opacity: 1;
}

.conversation-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px 10px;
  padding: 15px 17px 13px;
  border-top: 1px solid #e4edf4;
  background: #fff;
}

.conversation-input-wrap {
  display: block;
  min-width: 0;
}

.conversation-form textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  max-height: 130px;
  resize: none;
  padding: 13px 15px;
  border: 1px solid #d7e4ed;
  border-radius: 16px;
  color: var(--navy);
  background: #f9fbfd;
  font: inherit;
  line-height: 1.4;
}

.conversation-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 124, 255, 0.11);
}

.conversation-safety-note {
  grid-column: 1 / -1;
  color: #7890a2;
  font-size: 10px;
  line-height: 1.45;
}

.conversation-status {
  grid-column: 1 / -1;
  margin: 0;
}

.chat-notification {
  position: fixed;
  z-index: 1300;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: min(390px, calc(100vw - 32px));
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid #d9e7f0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(9, 47, 78, 0.22);
  backdrop-filter: blur(16px);
  animation: chat-notification-in 220ms ease-out;
}

.chat-notification[hidden] {
  display: none;
}

@keyframes chat-notification-in {
  from { transform: translateY(14px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.chat-notification-main {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 11px;
  padding: 4px;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.chat-notification-avatar {
  width: 43px;
  height: 43px;
}

.chat-notification-main > span:last-child {
  min-width: 0;
}

.chat-notification-main strong,
.chat-notification-main small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-notification-main strong {
  color: var(--navy-deep);
  font-size: 13px;
}

.chat-notification-main small {
  margin-top: 3px;
  color: #688095;
  font-size: 11px;
}

.chat-notification-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: #688095;
  background: #f0f5f8;
  font-size: 18px;
}

.chat-report-modal {
  position: fixed;
  z-index: 1350;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.chat-report-modal[hidden] {
  display: none;
}

.chat-report-card {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  padding: 30px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(4, 31, 53, 0.24);
}

.chat-report-card h2 {
  margin: 8px 0 8px;
  color: var(--navy-deep);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.chat-report-card > p {
  margin: 0 0 20px;
  color: #61798e;
  line-height: 1.55;
}

.chat-report-card form,
.chat-report-card label {
  display: grid;
  gap: 10px;
}

.chat-report-card form {
  gap: 16px;
}

.chat-report-card label {
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 900;
}

.chat-report-card select,
.chat-report-card textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d7e4ed;
  border-radius: 14px;
  color: var(--navy);
  background: #fbfdff;
  font: inherit;
}

.chat-report-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.privacy-request-card {
  width: min(680px, 100%);
  max-height: min(860px, calc(100vh - 40px));
  overflow-y: auto;
}

.privacy-request-card fieldset {
  margin: 0;
}

.privacy-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  padding: 16px;
  border: 1px solid #d7e4ed;
  border-radius: 16px;
}

.privacy-category-list legend {
  padding: 0 7px;
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 900;
}

.privacy-category-list label {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border-radius: 10px;
  background: #f7fbff;
  font-weight: 800;
}

.privacy-category-list input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue);
}

.privacy-account-form {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid #e0e9f0;
}

.privacy-account-form > p {
  margin: 0;
  color: #667e91;
  font-size: 12px;
}

.privacy-account-form input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #e2bfc1;
  border-radius: 14px;
  color: var(--navy);
  background: #fffafa;
  font: inherit;
}

.account-delete-confirm {
  border: 0;
  color: #fff;
  background: #c83e43;
}

.privacy-procedure-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.payment-connect-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid #d7eee8;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 207, 165, 0.12), transparent 34%),
    #effaf7;
}

.profile-info-grid,
.payment-flow-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.profile-info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.payment-flow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.profile-info-grid article,
.payment-flow-grid article,
.payment-note {
  padding: 16px;
  border: 1px solid #dfeaf2;
  border-radius: 18px;
  background: #f8fbfe;
}

.profile-info-grid span,
.payment-flow-grid span {
  display: inline-grid;
  min-width: 26px;
  height: 26px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: #e9f4ff;
  font-size: 11px;
  font-weight: 900;
}

.profile-info-grid strong,
.payment-flow-grid strong,
.payment-note strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
}

.profile-info-grid small,
.payment-flow-grid p,
.payment-note p {
  display: block;
  margin: 7px 0 0;
  color: #6b8397;
  font-size: 11px;
  line-height: 1.6;
}

.payment-note {
  margin-top: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 207, 165, 0.11), transparent 36%),
    #f6fbf9;
}

.payment-note-compact {
  margin: 12px 0 14px;
}

.wallet-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 10px;
}

.wallet-card {
  min-height: 126px;
  padding: 18px;
  border: 1px solid #dfeaf2;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 120, 255, 0.08), transparent 34%),
    #f8fbfe;
}

.wallet-card span,
.wallet-card strong,
.wallet-card small {
  display: block;
}

.wallet-card span {
  color: #6c8497;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wallet-card strong {
  margin-top: 10px;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
  letter-spacing: -1.5px;
}

.wallet-card small {
  margin-top: 8px;
  color: #71889b;
  font-size: 11px;
  line-height: 1.45;
}

.wallet-card-available {
  border-color: #c9efe4;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 207, 165, 0.14), transparent 36%),
    #effaf7;
}

.wallet-card-available strong {
  color: #00846a;
}

.wallet-card-upcoming strong {
  color: #0878ff;
}

.wallet-card-paid strong {
  color: #415d74;
}

.wallet-status {
  min-height: 20px;
  margin: 0 0 10px;
  color: #71889b;
  font-size: 11px;
  font-weight: 800;
}

.wallet-status.error {
  color: #c43f4f;
}

.wallet-status.success {
  color: #00846a;
}

.payment-connect-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: #00846a;
  background: #ddf8ef;
  font-size: 20px;
  font-weight: 900;
}

.payment-connect-card strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.payment-connect-card p {
  margin: 4px 0 0;
  color: #5c7b71;
  font-size: 11px;
  line-height: 1.55;
}

.profile-form {
  display: grid;
  gap: 15px;
}

.profile-form-intro {
  margin: 0;
  color: #5f7489;
  font-size: 13px;
  line-height: 1.55;
}

.profile-form label > span {
  display: block;
  margin-bottom: 6px;
  color: #516d83;
  font-size: 10px;
  font-weight: 900;
}

.profile-form input,
.profile-form textarea,
.profile-form select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #d8e6ef;
  border-radius: 11px;
  outline: none;
  color: var(--navy);
  background: var(--white);
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-form textarea {
  min-height: 96px;
  resize: vertical;
}

.profile-form input:focus,
.profile-form textarea:focus,
.profile-form select:focus {
  border-color: #69b8fa;
  box-shadow: 0 0 0 3px rgba(8, 120, 255, 0.08);
}

.profile-form small {
  display: block;
  margin-top: 6px;
  color: #8599aa;
  font-size: 9px;
  line-height: 1.45;
}

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

.profile-habits-head {
  padding: 15px;
  border: 1px solid #dfeaf2;
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 120, 255, 0.08), transparent 32%),
    #f8fbfe;
}

.profile-habits-head strong,
.profile-habits-head p {
  display: block;
}

.profile-habits-head strong {
  color: var(--navy);
  font-size: 14px;
}

.profile-habits-head p {
  margin: 5px 0 0;
  color: #6b8397;
  font-size: 11px;
  line-height: 1.55;
}

.profile-select-row,
.profile-check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid #dfeaf2;
  border-radius: 18px;
  background: #f8fbfe;
}

.profile-select-row {
  align-items: stretch;
  flex-direction: column;
}

.profile-select-row span,
.profile-check-row span,
.profile-select-row strong,
.profile-check-row strong,
.profile-select-row small,
.profile-check-row small {
  display: block;
}

.profile-select-row strong,
.profile-check-row strong {
  color: var(--navy);
  font-size: 13px;
}

.profile-select-row small,
.profile-check-row small {
  margin-top: 4px;
  color: #71889b;
  font-size: 10px;
  line-height: 1.45;
}

.profile-select-row select {
  margin-top: auto;
}

.profile-check-row input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.reviews-head strong {
  color: var(--navy);
  font-size: 18px;
}

.reviews-head span {
  color: #6f879b;
  font-size: 11px;
  font-weight: 800;
}

.reviews-head-stacked {
  align-items: flex-start;
}

.reviews-head-stacked div {
  display: grid;
  gap: 4px;
}

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

.reviewable-list {
  margin-bottom: 16px;
}

.review-card,
.profile-empty-state {
  padding: 16px;
  border: 1px solid #dfeaf2;
  border-radius: 17px;
  background: #f8fbfe;
}

.review-card strong {
  color: var(--navy);
  font-size: 14px;
}

.review-card p,
.profile-empty-state p {
  margin: 6px 0 0;
  color: #6b8397;
  font-size: 12px;
  line-height: 1.6;
}

.reviews-divider {
  height: 1px;
  margin: 18px 0;
  background: #dfeaf2;
}

.reviewable-card {
  display: grid;
  gap: 12px;
}

.reviewable-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.reviewable-card header strong {
  color: var(--navy);
  font-size: 14px;
}

.reviewable-card header small {
  display: block;
  margin-top: 4px;
  color: #71889b;
  font-size: 11px;
}

.review-form {
  display: grid;
  gap: 10px;
}

.review-form-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
}

.review-form label span {
  display: block;
  margin-bottom: 5px;
  color: #516d83;
  font-size: 10px;
  font-weight: 900;
}

.review-form select,
.review-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d8e6ef;
  border-radius: 11px;
  outline: none;
  color: var(--navy);
  background: var(--white);
  font-size: 12px;
}

.review-form textarea {
  min-height: 84px;
  resize: vertical;
}

.review-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-submit-status {
  min-height: 18px;
  color: #71889b;
  font-size: 11px;
  font-weight: 800;
}

.review-submit-status.error {
  color: #c43f4f;
}

.review-submit-status.success {
  color: #00846a;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  border: 1px solid #dfeaf2;
  border-radius: 17px;
  background: #f8fbfe;
}

.setting-row span,
.setting-row strong,
.setting-row small {
  display: block;
}

.setting-row strong {
  color: var(--navy);
  font-size: 13px;
}

.setting-row small {
  margin-top: 3px;
  color: #71889b;
  font-size: 10px;
  line-height: 1.45;
}

.setting-row input {
  width: 42px;
  height: 22px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.auth-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 20px;
  padding: 5px;
  border-radius: 11px;
  background: #eef5f9;
}

.auth-switch button {
  padding: 9px;
  border: 0;
  border-radius: 8px;
  color: #6c8497;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
}

.auth-switch button.active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(14, 61, 98, 0.08);
}

.account-form,
.publish-form {
  display: grid;
  gap: 15px;
}

.account-form label > span,
.publish-form label > span {
  display: block;
  margin-bottom: 6px;
  color: #516d83;
  font-size: 10px;
  font-weight: 800;
}

.account-form input,
.publish-form input,
.publish-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #d8e6ef;
  border-radius: 11px;
  outline: none;
  color: var(--navy);
  background: var(--white);
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-form input:focus,
.publish-form input:focus,
.publish-form textarea:focus {
  border-color: #69b8fa;
  box-shadow: 0 0 0 3px rgba(8, 120, 255, 0.08);
}

.account-form .button,
.publish-form > .button {
  width: 100%;
}

.account-form > small {
  color: #8599aa;
  font-size: 9px;
  text-align: center;
}

.auth-link {
  justify-self: center;
  padding: 3px 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
}

.auth-link:hover,
.auth-link:focus-visible {
  color: var(--navy);
  outline: none;
  text-decoration: underline;
}

.form-intro {
  padding: 13px;
  border: 1px solid #dbeaf3;
  border-radius: 14px;
  background: #f7fbfe;
}

.form-intro strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
}

.form-intro p {
  margin: 5px 0 0;
  color: #6b8397;
  font-size: 10px;
  line-height: 1.55;
}

.publish-form {
  max-width: 680px;
  margin: 0 auto;
}

.driver-ai-builder {
  display: grid;
  gap: 11px;
  padding: 18px;
  border: 1px solid #cfe8f8;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 120, 255, 0.12), transparent 32%),
    #f8fcff;
}

.driver-ai-builder strong {
  color: var(--navy);
  font-size: 18px;
}

.driver-ai-builder p,
.driver-ai-summary p {
  margin: 0;
  color: #647d92;
  font-size: 11px;
  line-height: 1.55;
}

.driver-ai-builder textarea {
  min-height: 94px;
}

.driver-ai-builder .button {
  justify-self: start;
}

.driver-ai-summary {
  padding: 13px;
  border: 1px solid #a7ead8;
  border-radius: 14px;
  background: #effaf7;
}

.driver-ai-summary strong {
  display: block;
  margin-bottom: 4px;
  color: #00846a;
  font-size: 12px;
}

.publish-form .form-row {
  gap: 13px;
}

.form-row-three {
  grid-template-columns: 1.5fr 0.65fr 0.85fr;
}

.publish-form textarea {
  resize: vertical;
}

.price-input {
  position: relative;
}

.price-input input {
  padding-right: 34px;
}

.price-input > span {
  position: absolute;
  top: 50%;
  right: 13px;
  color: #688195;
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-50%);
}

.price-advisor {
  margin-top: 8px;
  padding: 10px 11px;
  border: 1px solid #dfeaf2;
  border-radius: 12px;
  background: #f8fbfe;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.price-advisor strong {
  display: block;
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
}

.price-advisor p {
  margin: 3px 0 0;
  color: #6f879b;
  font-size: 9px;
  line-height: 1.45;
}

.price-advisor.is-good {
  border-color: #a7ead8;
  background: #effaf7;
}

.price-advisor.is-good strong {
  color: #00846a;
}

.price-advisor.is-medium {
  border-color: #ffd898;
  background: #fff8eb;
}

.price-advisor.is-medium strong {
  color: #a46300;
}

.price-advisor.is-high {
  border-color: #ffc0c9;
  background: #fff1f3;
}

.price-advisor.is-high strong {
  color: #c43f4f;
}

.publish-summary {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d7eee8;
  border-radius: 12px;
  background: #effaf7;
}

.publish-summary p {
  margin: 0;
  color: #5c7b71;
  font-size: 10px;
  line-height: 1.55;
}

.published-trips-panel {
  max-width: 680px;
  margin: 20px auto 0;
  padding: 16px;
  border: 1px solid #dfeaf2;
  border-radius: 20px;
  background: #f8fbfe;
}

.published-trips-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.published-trips-head strong,
.published-trips-head span {
  display: block;
}

.published-trips-head strong {
  color: var(--navy);
  font-size: 15px;
}

.published-trips-head span {
  margin-top: 3px;
  color: #6b8397;
  font-size: 11px;
  font-weight: 800;
}

.published-trips-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.published-trip-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid #dce9f3;
  border-radius: 16px;
  background: var(--white);
}

.published-trip-card strong,
.published-trip-card span {
  display: block;
}

.published-trip-card strong {
  color: var(--navy);
  font-size: 13px;
}

.published-trip-card span,
.published-trip-card small {
  color: #6b8397;
  font-size: 10px;
  font-weight: 800;
}

.console-status {
  min-height: 19px;
  margin: 0;
  color: #667f93;
  font-size: 10px;
  text-align: center;
}

.console-status.success {
  color: #00846a;
}

.console-status.error {
  color: #c43f4f;
}

.demo-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.light-tag {
  color: #5df3d5;
}

.demo-copy h2,
.app-copy h2,
.waitlist-copy h2 {
  color: var(--white);
}

.demo-copy > p,
.app-copy > p,
.waitlist-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.prompt-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.prompt-list button {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
  font-size: 12px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.prompt-list button:hover {
  border-color: rgba(74, 239, 211, 0.38);
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}

.ai-demo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: #f7fbff;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.27);
}

.demo-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid #dfebf4;
  color: var(--text);
  background: var(--white);
}

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

.demo-agent img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.demo-agent strong,
.demo-agent span {
  display: block;
}

.demo-agent strong {
  font-size: 12px;
}

.demo-agent span {
  color: #758da2;
  font-size: 9px;
}

.demo-agent i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.secure-label {
  color: #7890a4;
  font-size: 9px;
  font-weight: 700;
}

.database-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #71899d;
  font-size: 9px;
  font-weight: 800;
}

.database-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94aabd;
}

.database-status.is-loading i {
  background: #f5ae2f;
  animation: status-pulse 1.1s ease-in-out infinite;
}

.database-status.is-connected {
  color: #00866d;
}

.database-status.is-connected i {
  background: var(--green);
}

.database-status.is-error {
  color: #bf3d4b;
}

.database-status.is-error i {
  background: #e05260;
}

.demo-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 300px;
  overflow-y: auto;
  padding: 24px;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(9, 111, 242, 0.035), transparent 34%),
    #f8fbfe;
}

.demo-message {
  max-width: 84%;
  padding: 12px 15px;
  border-radius: 15px;
  font-size: 12px;
  line-height: 1.6;
  animation: message-in 0.3s ease both;
}

.ai-message {
  align-self: flex-start;
  border: 1px solid #e2ebf2;
  border-radius: 4px 15px 15px 15px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(9, 50, 83, 0.045);
}

.user-message {
  align-self: flex-end;
  border-radius: 15px 15px 4px 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0a95d8);
}

.analysis-message {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5e7488;
  background: #fbfdff;
}

.analysis-message::before {
  width: 13px;
  height: 13px;
  border: 2px solid #bbd0df;
  border-top-color: var(--blue);
  border-radius: 50%;
  content: "";
  animation: spin 0.8s linear infinite;
}

.demo-result {
  width: 100%;
  max-width: 100%;
  border: 1px solid #cee4f1;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(8, 58, 95, 0.06);
}

.trip-result-card {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.trip-result-card:hover,
.trip-result-card:focus-visible {
  border-color: #87c8f8;
  box-shadow: 0 12px 26px rgba(8, 58, 95, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.demo-result strong {
  color: var(--navy);
}

.scope-message {
  border-color: #d7e8f4;
  background:
    radial-gradient(circle at 100% 0%, rgba(9, 111, 242, 0.045), transparent 34%),
    var(--white);
}

.search-summary-message {
  max-width: 92%;
}

.match-explanation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 10px;
}

.match-explanation strong {
  font-size: 10px;
}

.match-explanation small {
  color: #6d8396;
  font-size: 9px;
  font-weight: 800;
}

.match-explanation.is-exact {
  color: #00795f;
  background: #e8faf5;
}

.match-explanation.is-partial {
  color: #9a6500;
  background: #fff4dd;
}

.result-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}

.result-top span {
  color: #008c70;
  font-size: 10px;
  font-weight: 800;
}

.result-meta {
  color: #6f879b;
  font-size: 10px;
}

.result-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 9px;
  margin: 9px 0;
}

.result-route span {
  color: #92a6b6;
  font-size: 12px;
}

.result-route div:last-child {
  text-align: right;
}

.result-route small,
.result-route strong {
  display: block;
}

.result-route small {
  color: #8498a9;
  font-size: 8px;
}

.result-route strong {
  font-size: 11px;
}

.result-details {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.result-details span {
  padding: 4px 7px;
  border-radius: 999px;
  color: #5f788e;
  background: #eff6fa;
  font-size: 8px;
  font-weight: 700;
}

.result-action {
  display: block;
  margin-top: 9px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
}

.demo-form {
  display: flex;
  gap: 10px;
  padding: 14px 16px 9px;
  border-top: 1px solid #dfebf4;
  background: var(--white);
}

.demo-form input {
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #dce8f1;
  border-radius: 12px;
  outline: none;
  color: var(--navy);
  background: #f8fbfd;
  font-size: 12px;
}

.demo-form input:focus {
  border-color: #79bfff;
  box-shadow: 0 0 0 3px rgba(8, 120, 255, 0.09);
}

.demo-form button {
  display: grid;
  width: 43px;
  height: 43px;
  border: 0;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0aaed0);
}

.demo-form button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.demo-note {
  margin: 0;
  padding: 0 16px 12px;
  color: #98aaba;
  background: var(--white);
  font-size: 8px;
  text-align: center;
}

.services {
  background: #f8fbfe;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 39px;
  border: 1px solid #e0ebf3;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 15px 45px rgba(14, 61, 98, 0.07);
}

.service-card.driver-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 207, 165, 0.11), transparent 33%),
    var(--white);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-label {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf4ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.driver-card .service-label {
  color: #008a6e;
  background: #e3faf4;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: #edf6ff;
}

.driver-card .service-icon {
  color: #00a983;
  background: #e5fbf5;
}

.service-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  max-width: 420px;
  margin: 30px 0 14px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -1.1px;
}

.service-card p {
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 14px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 23px;
  color: #547086;
  font-size: 13px;
  font-weight: 600;
}

.service-card li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  content: "✓";
  font-size: 8px;
  font-weight: 900;
}

.driver-card li::before {
  background: var(--green);
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.driver-card > a {
  color: #00987a;
}

.service-card > a span {
  transition: transform 0.2s ease;
}

.service-card > a:hover span {
  transform: translateX(4px);
}

.fee-section {
  overflow: hidden;
}

.fee-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.fee-visual {
  position: relative;
  display: grid;
  min-height: 450px;
  place-items: center;
}

.fee-circle {
  position: relative;
  z-index: 3;
  display: flex;
  width: 295px;
  height: 295px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 12px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.25), transparent 27%),
    linear-gradient(145deg, var(--blue), #069bd8 55%, var(--green));
  box-shadow: 0 30px 65px rgba(7, 125, 223, 0.27);
}

.fee-circle span,
.fee-circle small {
  font-weight: 700;
}

.fee-circle span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.fee-circle strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -7px;
}

.fee-circle small {
  font-size: 16px;
}

.fee-ring {
  position: absolute;
  border: 1px solid rgba(8, 120, 255, 0.12);
  border-radius: 50%;
}

.fee-ring-one {
  width: 380px;
  height: 380px;
}

.fee-ring-two {
  width: 470px;
  height: 470px;
  border-style: dashed;
  animation: rotate 35s linear infinite;
}

.fee-ring-two::after {
  position: absolute;
  top: 24px;
  left: 80px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(0, 207, 165, 0.12);
  content: "";
}

.comparison {
  margin-top: 30px;
  padding: 20px 23px;
  border: 1px solid #e0ebf3;
  border-radius: 20px;
  background: #f8fbfd;
}

.comparison div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  color: #71879a;
  font-size: 13px;
}

.comparison div strong {
  color: var(--navy);
}

.comparison .green-text {
  color: #00a47f;
}

.comparison .comparison-total {
  margin-top: 8px;
  padding-top: 15px;
  border-top: 1px solid #dce7ef;
  color: var(--navy);
  font-weight: 800;
}

.safety {
  background: #f6faff;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 90px;
}

.safety-list {
  display: grid;
  gap: 20px;
  margin-top: 35px;
}

.safety-list > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.check-icon {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: #00997a;
  background: #dff8f2;
  font-size: 13px;
  font-weight: 900;
}

.safety-list strong,
.safety-list small {
  display: block;
}

.safety-list strong {
  color: var(--navy);
  font-size: 14px;
}

.safety-list small {
  margin-top: 2px;
  color: #72899b;
  font-size: 12px;
}

.safety-panel {
  position: relative;
  overflow: hidden;
  padding: 52px 40px;
  border-radius: 31px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 207, 165, 0.35), transparent 34%),
    linear-gradient(145deg, #07365f, #03233e);
  box-shadow: 0 28px 65px rgba(3, 39, 71, 0.24);
  text-align: center;
}

.safety-panel::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.shield-mark {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  color: #56eed0;
  background: rgba(255, 255, 255, 0.08);
}

.shield-mark svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.safety-panel h3 {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
}

.safety-panel p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.safety-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 30px;
}

.safety-badges span {
  padding: 8px 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 9px;
  font-weight: 700;
}

.button-white {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(1, 46, 100, 0.17);
}

.mobile-app-banner {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  color: #031f3d;
  background:
    radial-gradient(circle at 78% 12%, rgba(123, 220, 255, 0.44), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(112deg, #47a9ff 0%, #1287f6 48%, #066fe0 100%);
}

.mobile-app-banner::before {
  position: absolute;
  inset: auto auto -160px -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.mobile-app-banner-grid {
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 64px;
}

.mobile-app-banner-copy {
  max-width: 760px;
  padding: 56px 0;
}

.mobile-app-banner-kicker {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 7px 11px;
  border: 1px solid rgba(3, 31, 61, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.mobile-app-banner h2 {
  max-width: 760px;
  margin: 0;
  color: #031c37;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.04;
  letter-spacing: -2px;
}

.mobile-app-banner-copy > p {
  max-width: 660px;
  margin: 19px 0 25px;
  color: #07345f;
  font-size: 15px;
  line-height: 1.6;
}

.mobile-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-store-badge {
  display: inline-flex;
  min-width: 188px;
  align-items: center;
  gap: 11px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: #fff;
  background: #07111f;
  box-shadow: 0 12px 25px rgba(0, 42, 94, 0.18);
}

.mobile-store-badge svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: currentColor;
}

.mobile-store-badge > span {
  display: grid;
  gap: 1px;
}

.mobile-store-badge small {
  color: #d7e4f1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.mobile-store-badge strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.05;
}

.mobile-app-phone-preview {
  position: relative;
  align-self: end;
  width: 300px;
  height: 370px;
  margin: 20px auto 0;
  overflow: hidden;
  border-radius: 45px 45px 0 0;
  filter: drop-shadow(0 26px 42px rgba(0, 43, 91, 0.24));
}

.mobile-app-phone-preview img {
  position: absolute;
  top: -17px;
  left: -36px;
  width: 369px;
  max-width: none;
  height: auto;
}

@media (max-width: 820px) {
  .mobile-app-banner-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .mobile-app-banner-copy {
    padding: 48px 0 12px;
  }

  .mobile-app-banner-copy > p {
    margin-inline: auto;
  }

  .mobile-store-badges {
    justify-content: center;
  }

  .mobile-app-phone-preview {
    width: 270px;
    height: 332px;
    margin-top: 12px;
    border-radius: 41px 41px 0 0;
  }

  .mobile-app-phone-preview img {
    top: -15px;
    left: -32px;
    width: 332px;
  }
}

@media (max-width: 520px) {
  .mobile-store-badge {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: #eaf4ff;
  font-size: 17px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -7px 0 22px;
  color: #71879a;
  font-size: 13px;
  line-height: 1.75;
}

.waitlist-section {
  padding: 30px 0 90px;
}

.waitlist-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: 55px;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 100%, rgba(0, 207, 165, 0.34), transparent 29%),
    radial-gradient(circle at 100% 0%, rgba(8, 120, 255, 0.32), transparent 31%),
    var(--navy-deep);
  box-shadow: 0 30px 70px rgba(4, 40, 72, 0.2);
}

.waitlist-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.waitlist-form label > span,
.waitlist-form legend {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
}

.waitlist-form input[type="text"],
.waitlist-form input[type="email"] {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  font-size: 12px;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.waitlist-form input:focus {
  border-color: #55e8cd;
  box-shadow: 0 0 0 3px rgba(85, 232, 205, 0.1);
}

.waitlist-form fieldset {
  display: flex;
  gap: 8px;
  margin: 17px 0 19px;
  padding: 0;
  border: 0;
}

.waitlist-form fieldset label {
  position: relative;
}

.waitlist-form input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.waitlist-form fieldset label span {
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.waitlist-form input[type="radio"]:checked + span {
  border-color: #5ff0d5;
  color: var(--white);
  background: rgba(55, 223, 192, 0.17);
}

.waitlist-form .button {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #75f5dc;
  font-size: 11px;
  text-align: center;
}

.waitlist-form > small {
  display: block;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  text-align: center;
}

.launch-card {
  align-items: center;
}

.launch-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.launch-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.launch-secondary:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.site-footer {
  padding: 0;
  background: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  padding-bottom: 45px;
}

.footer-brand p {
  max-width: 320px;
  margin: 16px 0 0;
  color: #74899b;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 12px;
}

.footer-links a,
.footer-links span {
  color: #758a9d;
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #dee8ef;
  color: #8aa0b1;
  font-size: 10px;
}

.footer-directory {
  padding: 56px 0 34px;
  background: #eef3f7;
}

.footer-directory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column h3 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.7px;
}

.footer-column a,
.footer-column button {
  width: max-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  color: #061f3e;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.footer-column a:hover,
.footer-column button:hover,
.footer-column a:focus-visible,
.footer-column button:focus-visible {
  color: var(--blue);
}

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 24px;
}

.footer-socials a,
.footer-social-placeholder {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 14px;
  color: #0878ff;
  transition: transform 0.18s ease, background 0.18s ease;
}

.footer-social-placeholder {
  cursor: default;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(8, 120, 255, 0.1);
  transform: translateY(-2px);
}

.footer-socials svg {
  display: block;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-footer {
  padding: 0;
  border-top: 1px solid #e4edf5;
  background: #ffffff;
}

.footer-legal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0;
}

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

.footer-legal-links button {
  padding: 0;
  border: 0;
  color: #33486a;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.footer-legal-links button:hover,
.footer-legal-links button:focus-visible {
  color: var(--blue);
}

.footer-legal-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #33486a;
  font-size: 14px;
  white-space: nowrap;
}

.footer-legal-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

body.modal-open {
  overflow: hidden;
}

.legal-modal {
  position: fixed;
  z-index: 136;
  inset: 0;
  display: grid;
  padding: 16px;
  place-items: center;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 25, 48, 0.58);
  backdrop-filter: blur(5px);
}

.legal-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1180px, 100%);
  height: min(900px, calc(100vh - 32px));
  overflow: hidden;
  padding: 0;
  border: 1px solid #dfe7ef;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(3, 29, 55, 0.24);
}

.legal-modal-card > * {
  min-width: 0;
}

.legal-modal-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid #dce7ef;
  place-items: center;
  border-radius: 50%;
  color: #49647b;
  background: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.legal-modal-head {
  grid-column: 1;
  grid-row: 1;
  max-width: none;
  padding: 44px 58px 26px;
  margin: 0;
  border-bottom: 1px solid #edf1f5;
}

.legal-modal-head h2 {
  margin: 8px 0 10px;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -2.2px;
}

.legal-modal-head p {
  margin: 0;
  color: #647d92;
  max-width: 690px;
  font-size: 15px;
  line-height: 1.7;
}

.legal-tabs {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 72px 22px 30px;
  overflow-y: auto;
  border-left: 1px solid #e5ebf1;
  background: #fafcfe;
}

.legal-tabs button {
  position: relative;
  flex: 0 0 auto;
  min-height: 50px;
  padding: 13px 34px 13px 14px;
  border: 0;
  border-bottom: 1px solid #edf1f5;
  border-radius: 0;
  color: #52687c;
  background: transparent;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.legal-tabs button::after {
  position: absolute;
  top: 50%;
  right: 12px;
  color: #0b78f6;
  content: "›";
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-52%);
}

.legal-tabs button.active {
  color: #066de3;
  background: transparent;
  box-shadow: none;
  font-weight: 800;
}

.legal-panel {
  grid-column: 1;
  grid-row: 2;
  padding: 30px 58px 70px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.legal-panel h3 {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1.6px;
}

.legal-panel > h3 {
  display: none;
}

.legal-panel > p {
  max-width: 760px;
  margin: 0 0 26px;
  color: #50677b;
  font-size: 16px;
  line-height: 1.8;
}

.legal-grid {
  display: block;
  max-width: 780px;
}

.cookie-settings {
  border: 1px solid #dfeaf2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

.legal-grid section {
  padding: 24px 0;
  border-top: 1px solid #e7edf2;
}

.legal-grid strong,
.cookie-row strong {
  display: block;
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
}

.legal-grid p,
.cookie-row small {
  margin: 0;
  color: #50677b;
  font-size: 15px;
  line-height: 1.78;
}

.legal-grid a {
  color: var(--blue);
  font-weight: 800;
}

.legal-effective-date {
  margin-bottom: 30px !important;
  color: #2d485e !important;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legal-lead {
  padding-bottom: 28px;
  border-bottom: 1px solid #e7edf2;
  color: #2f485c !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
}

.legal-copy {
  max-width: 780px;
}

.legal-copy section {
  padding: 27px 0;
  border-bottom: 1px solid #e7edf2;
}

.legal-copy h4 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.7px;
}

.legal-copy p {
  margin: 0 0 16px;
  color: #314a5f;
  font-size: 16px;
  line-height: 1.8;
}

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

.legal-copy a {
  color: var(--blue);
  font-weight: 750;
}

@media (max-width: 900px) {
  .legal-modal-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto minmax(0, 1fr);
  }

  .legal-modal-head {
    grid-column: 1;
    grid-row: 1;
    padding: 32px 54px 20px 26px;
  }

  .legal-modal-head h2 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .legal-tabs {
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    gap: 6px;
    padding: 10px 20px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    border-left: 0;
    border-bottom: 1px solid #e5ebf1;
    background: #ffffff;
    scrollbar-width: thin;
    max-width: 100%;
  }

  .legal-tabs button {
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid #e1e9f0;
    border-radius: 999px;
    white-space: nowrap;
  }

  .legal-tabs button::after {
    display: none;
  }

  .legal-tabs button.active {
    border-color: #0878f5;
    color: #ffffff;
    background: #0878f5;
  }

  .legal-panel {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    max-width: 100%;
    padding: 28px 26px 60px;
    overflow-x: hidden;
  }

  .legal-panel h3,
  .legal-panel > p,
  .legal-copy,
  .legal-copy p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

.cookie-settings {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 18px;
}

.cookie-row + .cookie-row {
  border-top: 1px solid #e5eef5;
}

.cookie-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.language-modal {
  position: fixed;
  z-index: 138;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.language-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 29, 55, 0.58);
  backdrop-filter: blur(8px);
}

.language-modal-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(820px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 32px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(3, 29, 55, 0.32);
}

.language-modal-close {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 0;
  place-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: transparent;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.language-modal-close:hover,
.language-modal-close:focus-visible {
  background: #eef7ff;
  outline: none;
}

.language-modal-card h2 {
  margin: 0 0 8px;
  color: #08254a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.7px;
}

.language-modal-intro {
  max-width: 560px;
  margin: 0 0 16px;
  color: #5b7089;
  font-size: 12px;
  line-height: 1.6;
}

.language-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 36px;
  padding-right: 4px;
}

.language-option {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 6px;
  border: 0;
  border-radius: 12px;
  color: #0c2548;
  background: transparent;
  text-align: left;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.active {
  background: #f0f7ff;
  outline: none;
}

.language-option .language-flag {
  width: 22px;
  height: 22px;
}

.language-option strong,
.language-option small {
  display: block;
}

.language-option strong {
  color: #0c2548;
  font-size: 14px;
  line-height: 1.2;
}

.language-option small {
  margin-top: 4px;
  color: #5e6f87;
  font-size: 13px;
  font-weight: 700;
}

.language-option i {
  color: #516982;
  font-size: 32px;
  font-style: normal;
  line-height: 1;
}

.trip-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.trip-cancel-modal {
  position: fixed;
  z-index: 155;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.trip-cancel-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px;
  border: 1px solid #f0dce0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 51, 74, 0.08), transparent 34%),
    #fff;
  box-shadow: 0 34px 90px rgba(3, 29, 55, 0.3);
}

.trip-cancel-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  place-items: center;
  color: #cf2637;
  background: #ffe8eb;
  font-size: 24px;
  font-weight: 900;
}

.trip-cancel-card h2 {
  margin: 7px 0 8px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(25px, 4vw, 34px);
  letter-spacing: -1.2px;
}

.trip-cancel-route {
  margin: 0 0 20px;
  color: #587187;
  font-weight: 750;
}

.trip-cancel-summary {
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid #dfeaf3;
  border-radius: 17px;
  color: #3d5a71;
  background: #f7fbff;
  font-size: 13px;
  line-height: 1.55;
}

.trip-cancel-summary strong {
  color: var(--navy);
  font-size: 14px;
}

.trip-cancel-summary.is-penalized {
  border-color: #f2c7ce;
  background: #fff7f8;
}

.trip-cancel-reason {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: #3d5870;
  font-size: 12px;
  font-weight: 850;
}

.trip-cancel-reason select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #d7e5ef;
  border-radius: 14px;
  color: var(--navy);
  background: #fff;
  font: inherit;
}

.trip-cancel-status {
  min-height: 22px;
  margin: 14px 0 0;
}

.trip-cancel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.trip-cancel-confirm {
  border: 1px solid #d8273b;
  color: #fff;
  background: #d8273b;
  box-shadow: 0 12px 25px rgba(216, 39, 59, 0.2);
}

.trip-cancel-confirm:hover {
  background: #ba1f31;
}

@media (max-width: 560px) {
  .profile-trip-card.has-cancel-action {
    padding-left: 56px;
  }

  .profile-trip-cancel {
    left: 12px;
  }

  .trip-cancel-card {
    padding: 34px 22px 24px;
    border-radius: 24px;
  }

  .trip-cancel-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.trip-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 29, 55, 0.62);
  backdrop-filter: blur(8px);
}

.trip-modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(24, 201, 238, 0.16), transparent 32%),
    var(--white);
  box-shadow: 0 34px 90px rgba(3, 29, 55, 0.28);
}

.trip-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 0;
  place-items: center;
  border-radius: 12px;
  color: #557085;
  background: #eff6fa;
  font-size: 24px;
  line-height: 1;
}

.publish-success-modal {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.publish-success-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(3, 29, 55, 0.58);
  backdrop-filter: blur(9px);
}

.publish-success-card {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(500px, 100%);
  padding: 46px 42px 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(9, 111, 242, 0.12), transparent 42%),
    #fff;
  box-shadow: 0 34px 90px rgba(3, 29, 55, 0.28);
  text-align: center;
  flex-direction: column;
}

.publish-success-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 0;
  place-items: center;
  border-radius: 12px;
  color: #557085;
  background: #eff6fa;
  font-size: 24px;
  line-height: 1;
}

.publish-success-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, #0875f5, #0b9dea);
  box-shadow: 0 16px 34px rgba(9, 111, 242, 0.25);
}

.publish-success-icon svg {
  width: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.publish-success-kicker {
  color: #096ff2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.publish-success-card h2 {
  margin: 8px 0 10px;
  color: #062847;
  font-size: clamp(30px, 5vw, 42px);
}

.publish-success-card p {
  max-width: 370px;
  margin: 0 0 28px;
  color: #5b7188;
  line-height: 1.7;
}

.publish-success-card .button {
  width: 100%;
  justify-content: center;
}

.publish-success-actions {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trip-detail-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #00866d;
  background: #e9faf5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.trip-detail-head {
  padding-right: 52px;
}

.trip-detail-head h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -1.8px;
}

.trip-detail-date {
  margin: 11px 0 0;
  color: #647d92;
  font-size: 14px;
  font-weight: 800;
}

.trip-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 25px 0;
}

.trip-detail-stat {
  padding: 16px;
  border: 1px solid #dfeaf2;
  border-radius: 18px;
  background: #f8fbfe;
}

.trip-detail-stat span,
.trip-detail-description span {
  display: block;
  margin-bottom: 5px;
  color: #8197a9;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.trip-detail-stat strong {
  color: var(--navy);
  font-size: 19px;
}

.trip-detail-description {
  padding: 18px;
  border: 1px solid #dfeaf2;
  border-radius: 20px;
  background: var(--white);
}

.trip-detail-description p {
  margin: 0;
  color: #58728a;
  font-size: 13px;
}

.driver-profile-link {
  width: 100%;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid #cfe8f8;
  border-radius: 16px;
  color: var(--blue);
  background: #f5fbff;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
}

.driver-profile-link:hover,
.driver-profile-link:focus-visible {
  border-color: #8cccf7;
  background: #eef8ff;
  outline: none;
}

.trip-detail-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0 18px;
  padding: 18px;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #075d9f);
}

.trip-detail-total span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.trip-detail-total strong {
  font-size: 30px;
  letter-spacing: -1px;
}

.trip-detail-actions {
  display: grid;
  gap: 10px;
}

.trip-owner-note {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #cde2f5;
  border-radius: 16px;
  color: #16476f;
  background: #f2f8fd;
}

.trip-owner-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.trip-owner-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.trip-auth-required {
  display: grid;
  gap: 11px;
  padding: 18px;
  border: 1px solid #dcebf5;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 120, 255, 0.09), transparent 36%),
    #f8fbfe;
  text-align: center;
}

.trip-auth-required strong {
  color: var(--navy);
  font-size: 16px;
}

.trip-auth-required p {
  max-width: 460px;
  margin: 0 auto;
  color: #647d92;
  font-size: 12px;
  line-height: 1.6;
}

.trip-auth-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.payment-status {
  min-height: 21px;
  margin: 0;
  color: #60778b;
  font-size: 12px;
  text-align: center;
}

.payment-status.error {
  color: #c43f4f;
}

.payment-status.success {
  color: #00846a;
}

.public-profile-modal {
  position: fixed;
  z-index: 124;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.public-profile-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(3, 29, 55, 0.28);
}

.public-profile-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 52px;
}

.public-profile-avatar {
  position: relative;
  display: grid;
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0878ff);
  font-size: 28px;
  font-weight: 900;
}

.public-profile-avatar.is-certified {
  overflow: visible;
  border: 3px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px #ddecff;
}

.public-profile-avatar.is-certified img {
  border-radius: 50%;
}

.public-profile-certified {
  position: absolute;
  right: -3px;
  bottom: -3px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.public-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-profile-head h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -1.5px;
}

.public-profile-head p {
  margin: 6px 0 0;
  color: #647d92;
  font-size: 13px;
  font-weight: 900;
}

.public-cancellation-label {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border: 1px solid #cfe2f4;
  border-radius: 999px;
  color: #355b78;
  background: #f3f8fd;
  font-size: 11px;
  font-weight: 850;
}

.public-cancellation-label.is-jamais {
  border-color: #b9eadf;
  color: #08745f;
  background: #edfbf7;
}

.public-cancellation-label.is-rarement {
  border-color: #c7ddf8;
  color: #075fae;
  background: #f1f7ff;
}

.public-cancellation-label.is-souvent,
.public-cancellation-label.is-regulierement {
  border-color: #f2c7ce;
  color: #b42334;
  background: #fff5f6;
}

.public-profile-bio {
  margin: 24px 0 14px;
  padding: 18px;
  border: 1px solid #dfeaf2;
  border-radius: 20px;
  background: #f8fbfe;
}

.public-profile-bio strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
}

.public-profile-bio p {
  margin: 7px 0 0;
  color: #58728a;
  font-size: 12px;
  line-height: 1.65;
}

.public-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.public-profile-badges span {
  padding: 8px 10px;
  border: 1px solid #dce9f3;
  border-radius: 999px;
  color: #315b7a;
  background: #f8fbfe;
  font-size: 10px;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.14s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-4px);
  }
}

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

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes message-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes status-pulse {
  50% {
    opacity: 0.35;
    transform: scale(0.78);
  }
}

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-visual {
    transform: scale(0.88);
  }

  .float-fee {
    left: -28px;
  }

  .float-green {
    right: -35px;
  }

  .demo-grid,
  .fee-grid,
  .safety-grid {
    gap: 50px;
  }

  .waitlist-card {
    gap: 35px;
    padding: 42px;
  }

  .footer-directory-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-more {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 680px);
  }

  .nav-wrap {
    display: flex;
    justify-content: space-between;
  }

  .brand-nav-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 75px;
    right: 16px;
    left: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #e0ebf3;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    text-align: center;
  }

  .nav-pill-action {
    flex: 1 1 180px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid,
  .demo-grid,
  .fee-grid,
  .safety-grid,
  .faq-grid,
  .waitlist-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    margin: -25px auto -35px;
    transform: scale(0.82);
  }

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

  .concept-card {
    min-height: 260px;
  }

  .demo-copy {
    text-align: center;
  }

  .assistant-layout {
    grid-template-columns: 1fr;
  }

  .assistant-side {
    min-height: auto;
    padding: 38px;
    text-align: center;
  }

  .assistant-side .prompt-list,
  .driver-benefits {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .assistant-layout .ai-demo,
  .driver-console {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .driver-console {
    border-top-color: #dfeaf2;
  }

  .prompt-list {
    max-width: 520px;
    margin-inline: auto;
  }

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

  .fee-visual {
    order: 2;
    min-height: 390px;
  }

  .fee-copy {
    text-align: center;
  }

  .fee-copy .comparison {
    text-align: left;
  }

  .safety-grid {
    gap: 55px;
  }

  .faq-grid {
    gap: 35px;
  }

  .faq-heading {
    text-align: center;
  }

  .waitlist-card {
    text-align: center;
  }

  .launch-actions {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .waitlist-form {
    text-align: left;
  }

  .footer-legal-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-directory-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-more {
    grid-column: auto;
  }

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

  .language-options {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 580px) {
  .profile-view {
    padding: 0;
    place-items: stretch;
  }

  :root {
    --container: calc(100% - 28px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-nav-link {
    display: none;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 110px 0 55px;
  }

  .eyebrow {
    max-width: 95%;
    line-height: 1.35;
  }

  .hero h1 {
    margin: 20px 0;
    font-size: 47px;
    letter-spacing: -2.8px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 10px 15px;
  }

  .hero-visual {
    height: 560px;
    min-height: 560px;
    margin: -28px auto -60px;
    transform: scale(0.72);
  }

  .float-fee {
    left: -50px;
  }

  .float-green {
    right: -50px;
  }

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

  .trust-grid div:nth-child(2)::after {
    display: none;
  }

  .trust-grid div {
    padding: 19px 10px;
  }

  .trust-grid div:not(:last-child)::after {
    top: 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .demo-copy h2,
  .fee-copy h2,
  .safety-copy h2,
  .app-copy h2,
  .faq-heading h2,
  .waitlist-copy h2 {
    font-size: 35px;
    letter-spacing: -1.8px;
  }

  .section-heading p,
  .demo-copy > p,
  .fee-copy > p,
  .safety-copy > p,
  .app-copy > p,
  .faq-heading p,
  .waitlist-copy p {
    font-size: 15px;
  }

  .concept-card,
  .service-card {
    padding: 27px;
  }

  .demo-grid {
    gap: 45px;
  }

  .assistant-section {
    padding: 80px 0;
  }

  .assistant-heading {
    margin-bottom: 28px;
  }

  .assistant-heading h2 {
    font-size: 35px;
    letter-spacing: -1.8px;
  }

  .assistant-heading p {
    font-size: 14px;
  }

  .mode-switch {
    gap: 5px;
    padding: 5px;
  }

  .mode-tab {
    min-height: 58px;
    padding: 8px 10px;
  }

  .mode-icon {
    width: 32px;
    height: 32px;
  }

  .mode-tab small {
    display: none;
  }

  .assistant-layout {
    border-radius: 23px;
  }

  .assistant-side {
    padding: 32px 20px;
  }

  .assistant-side h3 {
    font-size: 27px;
  }

  .assistant-layout .demo-messages {
    height: 340px;
  }

  .driver-console {
    min-height: auto;
    padding: 22px 15px;
  }

  .trip-modal {
    align-items: end;
    padding: 0;
  }

  .trip-modal-card {
    max-height: 88vh;
    padding: 28px 20px 24px;
    border-radius: 28px 28px 0 0;
  }

  .publish-success-modal {
    align-items: end;
    padding: 0;
  }

  .publish-success-card {
    width: 100%;
    padding: 42px 22px 28px;
    border-radius: 28px 28px 0 0;
  }

  .publish-success-actions {
    grid-template-columns: 1fr;
  }

  .trip-detail-head {
    padding-right: 44px;
  }

  .trip-detail-grid {
    grid-template-columns: 1fr;
  }

  .trip-detail-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-view {
    align-items: end;
    padding: 0;
  }

  .auth-modal-card {
    max-height: 88vh;
    padding: 28px 20px 24px;
    border-radius: 28px 28px 0 0;
  }

  .account-menu {
    top: calc(100% - 4px);
    right: 10px;
    width: min(360px, calc(100vw - 20px));
    padding: 12px 18px;
  }

  .profile-view {
    align-items: end;
    padding: 0;
  }

  .legal-modal {
    align-items: end;
    padding: 0;
  }

  .legal-modal-card {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    padding: 0;
    border-radius: 0;
  }

  .legal-tabs button {
    flex-basis: auto;
  }

  .legal-panel {
    padding: 25px 20px 50px;
  }

  .legal-panel h3 {
    font-size: 30px;
  }

  .legal-copy h4 {
    font-size: 21px;
  }

  .language-modal {
    align-items: end;
    padding: 0;
  }

  .language-modal-card {
    max-height: 88vh;
    padding: 24px 18px 22px;
    border-radius: 24px 24px 0 0;
  }

  .cookie-row,
  .cookie-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .footer-directory {
    padding: 42px 0 28px;
  }

  .footer-column {
    gap: 13px;
  }

  .footer-column h3 {
    font-size: 20px;
  }

  .footer-column a,
  .footer-column button {
    width: auto;
  }

  .footer-socials {
    gap: 12px;
    margin-top: 18px;
  }

  .profile-modal-card {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr);
    border-radius: 0;
  }

  .profile-side {
    min-height: auto;
    padding: 26px 20px;
  }

  .profile-avatar {
    width: 72px;
    height: 72px;
    margin-bottom: 15px;
    border-radius: 22px;
  }

  .profile-side h2 {
    font-size: 31px;
  }

  .profile-main {
    padding: 0 20px 34px;
  }

  .profile-tabs {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
  }

  .profile-panel {
    max-width: none;
  }

  .profile-tabs[hidden] ~ .profile-panel:not([hidden]) {
    padding-top: 34px;
  }

  .profile-trips-stat-strip article {
    padding: 14px;
  }

  .profile-trips-upcoming {
    min-height: 340px;
  }

  .profile-trip-card {
    padding: 18px;
  }

  .profile-trip-card footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .profile-trip-meta {
    width: 100%;
  }

  .profile-public-head {
    grid-template-columns: auto 1fr;
  }

  .profile-page-chevron {
    display: none;
  }

  .profile-page-avatar {
    width: 94px;
    height: 94px;
  }

  .profile-page-identity > strong {
    font-size: 25px;
  }

  .profile-stat-strip {
    grid-template-columns: 1fr;
  }

  .profile-stat-strip article + article {
    border-top: 1px solid #e7eef4;
    border-left: 0;
  }

  .profile-overview-section,
  .profile-verified-section,
  .profile-about-section,
  .profile-vehicles-section {
    padding: 24px 0;
  }

  .profile-editor-card {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 22px 18px;
    border-radius: 22px;
  }

  .profile-edit-form {
    padding: 12px;
  }

  .profile-editor-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .profile-editor-actions .button {
    width: 100%;
  }

  .profile-verified-section li {
    grid-template-columns: auto 1fr;
  }

  .profile-verified-section li > span {
    grid-row: 1 / span 4;
  }

  .profile-verify-action {
    grid-column: 2;
    grid-row: 5;
    justify-self: start;
  }

  .profile-phone-entry {
    grid-column: 2;
    grid-row: 4;
    grid-template-columns: 1fr;
  }

  .profile-phone-otp {
    grid-column: 2;
    grid-row: 6;
    grid-template-columns: 1fr;
  }

  .profile-section-inline-head,
  .profile-vehicle-item {
    align-items: stretch;
    flex-direction: column;
  }

  .conversation-page {
    min-height: 720px;
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-rows: 220px 500px;
  }

  .conversation-sidebar {
    max-height: 220px;
    border-right: 0;
    border-bottom: 1px solid #e4edf4;
  }

  .conversation-sidebar-head {
    padding: 18px 18px 12px;
  }

  .conversation-sidebar h2 {
    font-size: 21px;
  }

  .conversation-thread-head {
    align-items: center;
    flex-direction: row;
  }

  .conversation-secure-chip {
    display: none;
  }

  .conversation-message {
    max-width: 92%;
  }

  .conversation-form {
    grid-template-columns: 1fr;
  }

  .conversation-form .button {
    width: 100%;
  }

  .chat-empty-state {
    min-height: 70vh;
    padding-inline: 12px;
  }

  .chat-report-card {
    padding: 26px 18px 20px;
  }

  .chat-report-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .chat-report-actions .button {
    width: 100%;
  }

  .profile-info-grid,
  .profile-public-preview,
  .profile-preferences-grid,
  .wallet-summary-grid,
  .payment-flow-grid {
    grid-template-columns: 1fr;
  }

  .review-form-row {
    grid-template-columns: 1fr;
  }

  .review-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .review-form-actions .button {
    width: 100%;
  }

  .published-trips-head,
  .published-trip-card,
  .reviewable-card header,
  .public-profile-head {
    align-items: stretch;
    flex-direction: column;
  }

  .public-profile-card {
    max-height: 88vh;
    padding: 28px 20px 24px;
    border-radius: 26px 26px 0 0;
  }

  .payment-connect-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-connect-icon {
    margin: 0 auto;
  }

  .form-row-three {
    grid-template-columns: 1fr 1fr;
  }

  .form-row-three label:first-child {
    grid-column: 1 / -1;
  }

  .secure-label,
  .database-status {
    display: none;
  }

  .demo-messages {
    height: 310px;
    padding: 18px;
  }

  .demo-form {
    padding-inline: 12px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .fee-circle {
    width: 245px;
    height: 245px;
  }

  .fee-circle strong {
    font-size: 72px;
  }

  .fee-ring-one {
    width: 310px;
    height: 310px;
  }

  .fee-ring-two {
    width: 370px;
    height: 370px;
  }

  .safety-panel {
    padding: 42px 24px;
  }

  .safety-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .waitlist-section {
    padding-bottom: 65px;
  }

  .waitlist-card {
    gap: 30px;
    padding: 31px 20px;
    border-radius: 25px;
  }

  .launch-actions {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    padding: 18px;
  }

  .waitlist-form fieldset {
    flex-wrap: wrap;
  }

  .footer-main {
    gap: 42px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Assistant OpenCar: interface claire et centree sur la recherche. */
.assistant-section {
  padding: 104px 0 112px;
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 0%, rgba(8, 120, 255, 0.09), transparent 29%),
    linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
}

.assistant-section::before {
  background: none;
  mask-image: none;
}

.assistant-section .container {
  position: relative;
}

.assistant-section .light-tag {
  border: 1px solid #c9e2fb;
  color: #0878e8;
  background: #eaf5ff;
}

.assistant-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.assistant-heading h2 {
  margin-bottom: 13px;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 50px);
}

.assistant-heading p {
  color: #607b94;
  font-size: 16px;
  line-height: 1.65;
}

.mode-switch {
  width: min(560px, 100%);
  gap: 6px;
  margin-bottom: 24px;
  padding: 6px;
  border: 1px solid #d9e7f4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(14, 67, 111, 0.08);
}

.mode-tab {
  min-height: 62px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #617b92;
}

.mode-tab:hover {
  color: var(--navy);
  background: #f6faff;
}

.mode-tab.active,
.mode-tab[data-mode="driver"].active {
  border-color: #cfe3f8;
  color: #086ed5;
  background: #edf6ff;
  box-shadow: none;
}

.mode-tab strong {
  font-size: 14px;
}

.mode-tab small {
  margin-top: 2px;
  font-size: 10px;
}

.mode-icon,
.mode-tab.active .mode-icon,
.mode-tab[data-mode="driver"].active .mode-icon {
  color: #0878e8;
  background: #dceeff;
}

.assistant-layout {
  display: block;
  overflow: hidden;
  border: 1px solid #d4e5f4;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(20, 69, 108, 0.11);
}

.assistant-side {
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  grid-template-rows: auto auto auto;
  gap: 8px 44px;
  align-items: center;
  padding: 32px 36px;
  border-bottom: 1px solid #e2edf6;
  background: #f8fbff;
}

.assistant-kicker {
  grid-column: 1;
  margin: 0;
  color: #0878e8;
}

.assistant-side h3 {
  grid-column: 1;
  margin: 0;
  color: var(--navy);
  font-size: 29px;
  line-height: 1.2;
}

.assistant-side > p {
  grid-column: 1;
  color: #607b94;
  font-size: 13px;
  line-height: 1.65;
}

.assistant-side .prompt-list,
.assistant-side .driver-benefits {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 100%;
  margin: 0;
}

.assistant-side .prompt-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.assistant-side .prompt-list button {
  min-height: 70px;
  padding: 13px 14px;
  border: 1px solid #d4e5f4;
  border-radius: 15px;
  color: #234967;
  background: var(--white);
  text-align: center;
  font-weight: 800;
  line-height: 1.35;
}

.assistant-side .prompt-list button:hover {
  border-color: #83bff6;
  color: #0872dc;
  background: #f3f9ff;
  box-shadow: 0 8px 18px rgba(25, 94, 148, 0.08);
  transform: translateY(-2px);
}

.assistant-side .driver-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.assistant-side .driver-benefits span {
  min-height: 70px;
  justify-content: center;
  padding: 12px;
  border: 1px solid #d4e5f4;
  border-radius: 15px;
  color: #234967;
  background: var(--white);
  text-align: center;
}

.assistant-side .driver-benefits i {
  border: 0;
  color: #0878e8;
  background: #e4f2ff;
}

.assistant-layout .ai-demo {
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.assistant-layout .demo-window-head {
  min-height: 70px;
  padding: 16px 28px;
  border-bottom: 1px solid #e5eef6;
}

.assistant-layout .demo-messages {
  height: 330px;
  padding: 28px;
  background: #fbfdff;
}

.assistant-layout .demo-agent img {
  width: 42px;
  height: 42px;
}

.assistant-layout .demo-agent strong {
  color: var(--navy);
  font-size: 13px;
}

.assistant-layout .demo-agent i,
.assistant-layout .database-status.is-connected i {
  background: #1681ec;
}

.assistant-layout .database-status.is-connected {
  color: #1573c8;
}

.assistant-layout .demo-form {
  gap: 6px;
  margin: 18px 24px 8px;
  padding: 5px;
  border: 2px solid #1681ec;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 113, 205, 0.1);
}

.assistant-layout .demo-form input {
  min-height: 50px;
  padding: 13px 16px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  font-size: 14px;
}

.assistant-layout .demo-form input:focus {
  box-shadow: none;
}

.assistant-layout .demo-form button {
  display: inline-flex;
  width: auto;
  min-width: 148px;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 13px;
  background: #117bea;
  font-size: 12px;
  font-weight: 900;
}

.assistant-layout .demo-form button:hover {
  background: #066ad0;
}

.assistant-layout .demo-form button span {
  display: inline;
}

.assistant-layout .demo-note {
  padding: 0 24px 18px;
  color: #8297aa;
}

.driver-console {
  min-height: 0;
  padding: 28px 36px 36px;
  border: 0;
  color: var(--text);
  background: var(--white);
}

.driver-console-head {
  margin-bottom: 22px;
  padding: 0 0 18px;
  border-bottom: 1px solid #e1ebf4;
}

.driver-login-prompt {
  min-height: 270px;
  padding: 42px 28px;
  border: 1px solid #d7e7f5;
  border-radius: 22px;
  background: #f8fbff;
}

.driver-login-icon {
  color: #0878e8;
  background: #deefff;
}

.driver-login-prompt .button {
  width: auto;
  min-width: 170px;
}

.publish-form {
  width: 100%;
  max-width: none;
  gap: 18px;
}

.driver-trip-review {
  display: grid;
  gap: 18px;
  scroll-margin-top: 110px;
  animation: driver-review-enter 0.28s ease both;
}

.driver-trip-review[hidden] {
  display: none;
}

@keyframes driver-review-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.driver-ai-builder {
  display: block;
  padding: 26px;
  border: 1px solid #d7e6f2;
  border-radius: 24px;
  background: #f8fbfe;
}

.driver-ai-intro {
  display: grid;
  gap: 6px;
}

.driver-ai-intro strong {
  font-size: 21px;
  letter-spacing: -0.35px;
}

.driver-ai-intro p {
  max-width: 620px;
  color: #637b90;
  font-size: 13px;
}

.driver-prompt-field {
  display: block;
  margin-top: 20px;
  padding: 14px 16px 12px;
  border: 2px solid #d4e3ef;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(5, 48, 82, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.driver-prompt-field:focus-within {
  border-color: #167ce8;
  box-shadow: 0 0 0 4px rgba(17, 123, 234, 0.1);
}

.driver-prompt-field .driver-prompt-label {
  display: block;
  margin: 0 0 7px;
  color: #0b5fae;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.driver-ai-builder .driver-prompt-field textarea {
  width: 100%;
  min-height: 112px;
  margin: 0;
  color: #123451;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.65;
}

.driver-ai-footer {
  display: flex;
  margin-top: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.driver-ai-hint {
  max-width: 430px;
  color: #71879a;
  font-size: 11px;
  line-height: 1.5;
}

.driver-ai-footer .button {
  min-width: 205px;
  flex: 0 0 auto;
}

.driver-ai-summary {
  margin-top: 18px;
  padding: 15px 16px;
  border-color: #b9dfd6;
  background: #f2faf8;
}

.publish-form .form-row {
  gap: 12px;
}

.publish-form .form-row > label,
.publish-form > label,
.driver-trip-review > label {
  display: block;
  padding: 14px 16px;
  border: 1px solid #d8e5f0;
  border-radius: 16px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.publish-form .form-row > label:focus-within,
.publish-form > label:focus-within,
.driver-trip-review > label:focus-within {
  border-color: #6db5f4;
  box-shadow: 0 0 0 3px rgba(17, 123, 234, 0.08);
}

.publish-form label > span {
  margin-bottom: 5px;
  color: #667f95;
  font-size: 9px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.publish-form input,
.publish-form textarea {
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
}

.publish-form input:focus,
.publish-form textarea:focus {
  border-color: transparent;
  box-shadow: none;
}

.publish-form > label textarea,
.driver-trip-review > label textarea {
  min-height: 68px;
}

.publish-form .price-advisor {
  margin-top: 10px;
  border-radius: 11px;
}

.publish-summary {
  border-color: #cfe3f7;
  background: #f2f8ff;
}

.publish-summary .check-icon {
  color: #0878e8;
  background: #dceeff;
}

.publish-summary p {
  color: #58748d;
}

.publish-form > .button,
.driver-trip-review > .button {
  width: auto;
  min-width: 210px;
  justify-self: end;
}

.published-trips-panel {
  max-width: none;
  border-color: #d8e5f0;
  background: #f8fbff;
}

@media (max-width: 980px) {
  .assistant-side {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }

  .assistant-side .prompt-list,
  .assistant-side .driver-benefits {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
    margin-top: 12px;
  }
}

@media (max-width: 720px) {
  .privacy-category-list {
    grid-template-columns: 1fr;
  }

  .conversation-thread-actions {
    gap: 5px;
  }

  .conversation-secure-chip {
    display: none;
  }

  .assistant-section {
    padding: 76px 0 82px;
  }

  .assistant-heading h2 {
    font-size: 36px;
  }

  .assistant-side {
    padding: 26px 22px;
  }

  .assistant-side h3 {
    font-size: 25px;
  }

  .assistant-side .prompt-list,
  .assistant-side .driver-benefits {
    grid-template-columns: 1fr;
  }

  .assistant-side .prompt-list button,
  .assistant-side .driver-benefits span {
    min-height: 52px;
  }

  .assistant-layout .demo-window-head {
    padding: 14px 18px;
  }

  .assistant-layout .demo-messages {
    height: 310px;
    padding: 20px 18px;
  }

  .assistant-layout .demo-form {
    margin: 14px 14px 8px;
  }

  .assistant-layout .demo-form button {
    min-width: 52px;
    padding: 0 15px;
  }

  .assistant-layout .demo-form button span {
    display: none;
  }

  .assistant-layout .demo-note {
    padding: 0 16px 16px;
  }

  .driver-console {
    padding: 24px 18px 28px;
  }

  .driver-ai-builder {
    padding: 18px;
  }

  .driver-ai-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .driver-ai-footer .button {
    width: 100%;
  }

  .form-row-three {
    grid-template-columns: 1fr;
  }

  .form-row-three label:first-child {
    grid-column: auto;
  }

  .publish-form > .button,
  .driver-trip-review > .button,
  .driver-login-prompt .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .profile-trips-stat-strip {
    grid-template-columns: 1fr;
  }

  .profile-trips-stat-strip article + article {
    border-top: 1px solid #e7edf2;
    border-left: 0;
  }

  .profile-trips-illustration {
    width: 100%;
  }

  .profile-trip-card header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .mode-tab {
    justify-content: center;
    min-height: 56px;
    padding: 8px;
  }

  .mode-icon {
    width: 30px;
    height: 30px;
  }

  .assistant-heading h2 {
    font-size: 32px;
  }

  .assistant-layout {
    border-radius: 22px;
  }

  .assistant-side {
    padding: 24px 18px;
  }

  .assistant-layout .demo-form input {
    font-size: 12px;
  }

  .driver-console {
    padding-inline: 14px;
  }
}

/* Financial history pages */
.finance-page {
  display: grid;
  width: min(820px, 100%);
  gap: 24px;
  margin: 0 auto;
  padding: 22px 0 34px;
  color: var(--navy);
}

.finance-page-head {
  max-width: 650px;
  margin: 0 auto 4px;
  text-align: center;
}

.finance-page-head h2 {
  margin: 8px 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.finance-page-head p {
  margin: 0;
  color: #657d93;
  font-size: 13px;
  line-height: 1.65;
}

.finance-stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dce8f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 61, 107, 0.06);
}

.finance-stat-strip article {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 15px;
  padding: 18px 24px;
}

.finance-stat-strip article + article {
  border-left: 1px solid #e7eef4;
}

.finance-stat-strip strong,
.finance-stat-strip small {
  display: block;
}

.finance-stat-strip strong {
  color: #062d55;
  font-size: 23px;
  line-height: 1.1;
}

.finance-stat-strip small {
  margin-top: 4px;
  color: #6d8397;
  font-size: 10px;
}

.finance-stat-icon,
.finance-empty-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #0878e8;
  background: #e7f3ff;
  font-size: 20px;
  font-weight: 900;
}

.finance-stat-icon svg,
.payment-history-car svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.finance-wallet-grid {
  margin: 0;
}

.finance-connect-card {
  margin: 0;
  border-color: #d7e8f7;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 148, 238, 0.12), transparent 38%),
    #f3f9ff;
}

.finance-info-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: #415f7a;
  font-size: 12px;
  line-height: 1.6;
}

.finance-info-note > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #9dc7ee;
  border-radius: 50%;
  color: #0878e8;
  font-weight: 900;
}

.finance-history-list {
  display: grid;
  gap: 28px;
}

.finance-history-group,
.finance-history-year {
  display: grid;
  gap: 13px;
}

.finance-history-group > header span {
  color: #6a8298;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
}

.finance-history-group > header h3,
.finance-history-year > h3 {
  margin: 3px 0 0;
  color: #062c52;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
}

.finance-history-rows {
  overflow: hidden;
  border-top: 5px solid #edf2f6;
}

.finance-history-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 16px 20px;
  border-bottom: 1px solid #e6edf3;
}

.finance-history-row > div strong,
.finance-history-row > div small {
  display: block;
}

.finance-history-row > div strong {
  color: #0b2f51;
  font-size: 13px;
}

.finance-history-row > div small {
  margin-top: 4px;
  color: #687f94;
  font-size: 11px;
}

.finance-history-amount {
  color: #087c62;
  font-size: 16px;
  white-space: nowrap;
}

.finance-history-row.is-upcoming .finance-history-amount {
  color: #0878e8;
}

.finance-history-row.is-available .finance-history-amount {
  color: #00a678;
}

.finance-history-row.is-attention .finance-history-amount {
  color: #d14e58;
}

.payment-history-row {
  grid-template-columns: 34px minmax(0, 1fr) auto;
}

.payment-history-car {
  color: #55728d;
}

.payment-history-row.is-payment .finance-history-amount {
  color: #0b2f51;
}

.payment-history-row.is-refund .finance-history-amount {
  color: #00a678;
}

.finance-empty-state,
.finance-error,
.finance-loading {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  padding: 32px;
  border: 1px solid #dfeaf3;
  border-radius: 24px;
  background: #f8fbfe;
  text-align: center;
}

.finance-empty-state h3,
.finance-error strong {
  margin: 18px 0 7px;
  color: #082f54;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 21px;
}

.finance-empty-state p,
.finance-error p,
.finance-loading {
  color: #6b8296;
  line-height: 1.65;
}

.finance-empty-state p,
.finance-error p {
  max-width: 500px;
  margin: 0;
}

.account-finance-link {
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 2px;
  border-bottom: 1px solid #e3eaf0;
  text-align: left;
}

.account-finance-link > span:first-child strong,
.account-finance-link > span:first-child small {
  display: block;
}

.account-finance-link > span:first-child strong {
  color: #082f54;
  font-size: 13px;
}

.account-finance-link > span:first-child small {
  margin-top: 4px;
  color: #71879a;
  font-size: 10px;
}

.account-finance-link > span:last-child {
  color: #62809b;
  font-size: 25px;
}

/* OpenCar palette: blue surfaces, vivid green only for positive states. */
.hero {
  background:
    radial-gradient(circle at 91% 12%, rgba(17, 148, 238, 0.1), transparent 28%),
    radial-gradient(circle at 4% 50%, rgba(9, 111, 242, 0.08), transparent 25%),
    linear-gradient(180deg, #f8fcff 0%, #fff 100%);
}

.phone-app {
  background:
    radial-gradient(circle at 70% 0%, rgba(20, 184, 223, 0.13), transparent 34%),
    #f8fcff;
}

.concept-card.featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 184, 223, 0.3), transparent 37%),
    linear-gradient(145deg, #0878f6, #0755a5);
}

.demo-section {
  background:
    radial-gradient(circle at 5% 90%, rgba(17, 148, 238, 0.2), transparent 30%),
    radial-gradient(circle at 95% 10%, rgba(20, 184, 223, 0.17), transparent 36%),
    linear-gradient(145deg, #031d37 0%, #062b50 100%);
}

.profile-side {
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 184, 223, 0.3), transparent 34%),
    linear-gradient(150deg, var(--navy-deep), #075d9f);
}

.service-card.driver-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 148, 238, 0.1), transparent 33%),
    var(--white);
}

.safety-panel {
  background:
    radial-gradient(circle at 82% 8%, rgba(17, 148, 238, 0.42), transparent 36%),
    linear-gradient(145deg, #073d75, #031f3d);
}

.waitlist-card {
  background:
    radial-gradient(circle at 0% 100%, rgba(17, 148, 238, 0.38), transparent 31%),
    radial-gradient(circle at 100% 0%, rgba(20, 184, 223, 0.24), transparent 32%),
    #032342;
}

/* Action-first home: booking and publishing appear before the presentation. */
.site-main {
  display: flex;
  flex-direction: column;
}

.assistant-entry {
  order: -2;
  min-height: 100vh;
  padding: 116px 0 74px;
  color: var(--navy);
  background:
    radial-gradient(circle at 8% 7%, rgba(17, 148, 238, 0.22), transparent 29%),
    radial-gradient(circle at 94% 4%, rgba(20, 184, 223, 0.18), transparent 28%),
    linear-gradient(180deg, #eaf6ff 0%, #f5faff 48%, #e5f1ff 100%);
}

.assistant-entry::before {
  background-image: radial-gradient(rgba(9, 111, 242, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.34;
  mask-image: linear-gradient(90deg, black, transparent 34%, transparent 70%, black);
}

.concept-hero {
  order: -1;
  scroll-margin-top: 82px;
}

.assistant-entry .assistant-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px 48px;
  align-items: end;
  margin-bottom: 20px;
  padding: 27px 31px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 25px;
  background:
    radial-gradient(circle at 88% 12%, rgba(86, 210, 255, 0.32), transparent 31%),
    linear-gradient(125deg, #0868d8 0%, #0d8ff0 100%);
  box-shadow: 0 22px 48px rgba(6, 92, 176, 0.18);
}

.assistant-entry .assistant-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
}

.assistant-entry .assistant-heading p {
  margin: 0 0 3px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.assistant-entry .mode-switch {
  margin-bottom: 16px;
}

.assistant-entry .assistant-side {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  padding: 22px 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 148, 238, 0.11), transparent 32%),
    #f1f8ff;
}

.assistant-entry .assistant-side h3 {
  font-size: 25px;
}

.assistant-entry .assistant-side > p {
  line-height: 1.5;
}

.assistant-entry .assistant-layout .demo-window-head {
  min-height: 62px;
  padding: 12px 24px;
}

.assistant-entry .assistant-layout .demo-messages {
  height: 210px;
  padding: 22px 24px;
  background: #f7fbff;
}

.assistant-entry .assistant-layout .demo-form {
  margin-top: 14px;
}

.assistant-entry .driver-console {
  padding-top: 22px;
}

@media (max-width: 720px) {
  .assistant-entry {
    min-height: auto;
    padding: 92px 0 56px;
  }

  .assistant-entry .assistant-heading {
    display: block;
    margin-bottom: 18px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .assistant-entry .assistant-heading h2 {
    font-size: clamp(31px, 10vw, 40px);
  }

  .assistant-entry .assistant-heading p {
    margin-top: 12px;
  }

  .assistant-entry .assistant-side {
    display: block;
    padding: 22px 20px;
  }

  .assistant-entry .assistant-side .prompt-list,
  .assistant-entry .assistant-side .driver-benefits {
    display: none;
  }

  .assistant-entry .assistant-layout .demo-messages {
    height: 120px;
    padding: 16px 20px;
  }

  .assistant-entry .assistant-layout .demo-note {
    display: none;
  }

  .finance-page {
    gap: 18px;
    padding-top: 14px;
  }

  .finance-stat-strip,
  .finance-wallet-grid {
    grid-template-columns: 1fr;
  }

  .finance-stat-strip article + article {
    border-top: 1px solid #e7eef4;
    border-left: 0;
  }

  .finance-connect-card {
    grid-template-columns: auto 1fr;
  }

  .finance-connect-card .button {
    width: 100%;
    grid-column: 1 / -1;
  }

  .finance-history-row,
  .payment-history-row {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: 12px;
  }

  .payment-history-car {
    display: none;
  }

  .finance-history-amount {
    font-size: 14px;
  }
}
