@font-face {
  font-family: "Vazirmatn";
  src: url("/assets/fonts/Vazirmatn-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("/assets/fonts/Vazirmatn-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --ink: #0b1f33;
  --ink-soft: #29435d;
  --muted: #64748b;
  --line: #dce6f2;
  --surface: #ffffff;
  --wash: #f4f8fc;
  --yellow: #2563eb;
  --yellow-deep: #1d4ed8;
  --blue: #2563eb;
  --cyan: #00b8d9;
  --green: #16a085;
  --orange: #00b8d9;
  --danger: #c2413a;
  --shadow: 0 24px 60px rgba(11, 31, 51, 0.1);
  --container: min(1160px, calc(100% - 48px));
  font-family: Vazirmatn, IRANSansX, Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: var(--wash);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--wash);
  line-height: 1.65;
}

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

button,
select {
  cursor: pointer;
}

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

img,
svg {
  display: block;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cdd6e2;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 104px;
  padding: 12px 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(53, 120, 229, 0.13);
}

input[type="checkbox"] {
  appearance: none;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  background: #fff;
  display: grid;
  place-content: center;
}

input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform 120ms ease;
}

input[type="checkbox"]:checked {
  border-color: var(--yellow);
  background: var(--yellow);
}

input[type="checkbox"]:checked::before {
  transform: rotate(-45deg) scale(1);
}

input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(53, 120, 229, 0.25);
  outline-offset: 2px;
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: -60px;
  right: 20px;
  padding: 9px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--yellow);
  transition: top 150ms ease;
}

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

.topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 31, 51, 0.92);
  backdrop-filter: blur(16px);
  color: #f8fafc;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled {
  box-shadow: 0 10px 30px rgba(3, 8, 16, 0.22);
}

.topbar__inner {
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;
  min-height: 70px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand > span {
  color: #fff;
}

.brand > span::first-letter,
.brand span span {
  color: var(--cyan);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.main-nav a {
  position: relative;
  padding: 22px 0;
  color: rgba(248, 250, 252, 0.78);
  font-size: 14px;
  transition: color 150ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: var(--yellow);
  transition: width 170ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.main-nav__auth {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease, color 150ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.text-link:focus-visible,
.pathway-tab:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(0, 184, 217, 0.5);
  outline-offset: 3px;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 150ms ease;
}

.button:hover svg {
  transform: translateX(-3px);
}

.button--dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(11, 19, 32, 0.18);
}

.button--dark:hover {
  background: #1d2d45;
}

.button--primary {
  color: #fff;
  background: var(--yellow);
  box-shadow: 0 12px 23px rgba(37, 99, 235, 0.24);
}

.button--primary:hover {
  background: var(--yellow-deep);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.32);
}

.button:disabled {
  cursor: wait;
  transform: none;
  opacity: 0.7;
}

.topbar__cta {
  justify-self: end;
  min-height: 40px;
  padding: 0 15px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 9vw, 126px) 0 78px;
  color: #f8fafc;
  background:
    radial-gradient(circle at 86% 17%, rgba(0, 184, 217, 0.23), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(22, 160, 133, 0.18), transparent 31%),
    linear-gradient(121deg, #071a2c 5%, #0b2942 55%, #0a2238 100%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero__glow--one {
  top: -21rem;
  left: -11rem;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.012), 0 0 0 140px rgba(255, 255, 255, 0.009);
}

.hero__glow--two {
  right: -18rem;
  bottom: -21rem;
  box-shadow: 0 0 0 80px rgba(0, 184, 217, 0.035);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(38px, 7vw, 98px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #7ce7f2;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.1px;
}

.eyebrow--dark {
  color: #1d4ed8;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(0, 184, 217, 0.42);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 7px rgba(0, 184, 217, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 184, 217, 0);
  }
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(38px, 5.1vw, 65px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -2.4px;
}

.hero h1 em {
  color: #51d9c2;
  font-style: normal;
}

.hero__lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: #b8c5d8;
  font-size: clamp(16px, 1.65vw, 18px);
  line-height: 2;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #314158;
  font-size: 14px;
  font-weight: 800;
  transition: gap 160ms ease, color 160ms ease;
}

.text-link:hover {
  gap: 12px;
  color: var(--blue);
}

.hero .text-link {
  color: #d8e1ee;
}

.hero .text-link:hover {
  color: #fff;
}

.text-link span {
  font-size: 19px;
  line-height: 1;
}

.hero__reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  margin-top: 54px;
}

.hero__reassurance div {
  display: grid;
  gap: 2px;
}

.hero__reassurance strong {
  color: #fff;
  font-size: 14px;
}

.hero__reassurance span {
  color: #8fa1ba;
  font-size: 12px;
}

.hero-panel {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.hero-panel::after {
  position: absolute;
  z-index: -1;
  top: 26px;
  left: -14px;
  width: 66%;
  height: 80%;
  border-radius: 20px;
  content: "";
  background: rgba(53, 120, 229, 0.15);
  filter: blur(35px);
}

.hero-panel__top,
.route-card__header,
.route-card__meta,
.hero-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-pill,
.date-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
}

.live-pill {
  gap: 6px;
  color: #d9fbed;
  background: rgba(22, 160, 133, 0.18);
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55e2b5;
}

.date-chip {
  color: #aec0da;
  background: rgba(255, 255, 255, 0.08);
}

.route-card {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: #f8fafc;
  color: var(--ink);
}

.route-card__label {
  color: #637389;
  font-size: 12px;
  font-weight: 700;
}

.route-card__id {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 31px 0 26px;
  direction: rtl;
}

.route__city {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.route__city small {
  display: block;
  color: #7a8aa0;
  font-size: 10px;
}

.route__city strong {
  display: block;
  white-space: nowrap;
  font-size: 12px;
}

.route__dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.route__city--end .route__dot {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(36, 163, 125, 0.16);
}

.route__line {
  position: relative;
  height: 2px;
  min-width: 45px;
  background: repeating-linear-gradient(90deg, #d7dee9 0 7px, transparent 7px 13px);
}

.route__truck {
  position: absolute;
  top: -8px;
  right: 45%;
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
  text-shadow: 7px 0 0 rgba(53, 120, 229, 0.25);
  animation: route-progress 4.8s ease-in-out infinite;
}

@keyframes route-progress {
  0%,
  100% {
    right: 18%;
  }

  50% {
    right: 72%;
  }
}

.route-card__meta {
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #e7ebf0;
  color: #627187;
  font-size: 10px;
}

.route-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.route-card__meta b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.hero-steps {
  position: relative;
  gap: 8px;
  margin-top: 21px;
}

.hero-steps::before {
  position: absolute;
  top: 14px;
  right: 38px;
  left: 38px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.14);
}

.hero-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 54px;
}

.hero-step span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #9eb0c8;
  background: #152338;
  font-size: 11px;
  font-weight: 800;
}

.hero-step p {
  margin: 0;
  color: #9eb0c8;
  font-size: 10px;
}

.hero-step--active span {
  border-color: var(--yellow);
  color: #fff;
  background: var(--yellow);
}

.hero-step--active p {
  color: #fff;
}

.hero-panel__note {
  margin: 17px 0 0;
  color: #9eb0c8;
  text-align: center;
  font-size: 11px;
}

.outcomes {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  color: #e5ebf3;
  background: #081d30;
}

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

.outcomes article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 136px;
  padding: 29px clamp(16px, 2.5vw, 35px);
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.outcomes article:last-child {
  border-left: 0;
}

.outcomes__number {
  color: #54d9e8;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.outcomes h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
}

.outcomes p {
  margin: 0;
  color: #9caec5;
  font-size: 12px;
  line-height: 1.85;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trust-strip__inner > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-strip span {
  padding: 7px 12px;
  border: 1px solid #d9e7f5;
  border-radius: 999px;
  color: #245075;
  background: #f7fbff;
  font-size: 11px;
  font-weight: 800;
}

.section {
  padding: clamp(76px, 9vw, 116px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 52px;
  margin-bottom: 44px;
}

.section-heading h2,
.tracking h2,
.commitment h2 {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 3.5vw, 42px);
  line-height: 1.35;
  letter-spacing: -1.2px;
}

.section-heading > p {
  max-width: 450px;
  margin: 0 0 3px;
  color: #637389;
  font-size: 15px;
  line-height: 2;
}

.process {
  background: #fff;
}

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

.process-card {
  position: relative;
  min-height: 245px;
  padding: 25px 25px 26px;
  overflow: hidden;
  border: 1px solid #e4eaf1;
  border-radius: 18px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: #d0dce9;
  box-shadow: 0 17px 40px rgba(22, 34, 50, 0.09);
}

.process-card__index {
  position: absolute;
  top: 21px;
  left: 21px;
  color: #b4c0cf;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.icon-box {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 13px;
}

.icon-box svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-box--yellow {
  color: #1d4ed8;
  background: #e8f0ff;
}

.icon-box--blue {
  color: #1e58bb;
  background: #e6efff;
}

.icon-box--green {
  color: #13755a;
  background: #e0f8ef;
}

.process-card h3 {
  margin: 23px 0 8px;
  font-size: 18px;
}

.process-card p {
  margin: 0;
  color: #65758a;
  font-size: 13px;
  line-height: 1.95;
}

.pathways {
  background: linear-gradient(180deg, #f4f6f8, #eef2f6);
}

.section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  margin-bottom: 31px;
  text-align: center;
}

.section-heading--center > p {
  max-width: 610px;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.pathway-tabs {
  display: flex;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 18px;
  padding: 5px;
  overflow-x: auto;
  border: 1px solid #dce4ee;
  border-radius: 14px;
  background: #fff;
}

.pathway-tab {
  flex: 0 0 auto;
  min-height: 41px;
  padding: 0 17px;
  border: 0;
  border-radius: 9px;
  color: #65758a;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  transition: color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.pathway-tab:hover {
  color: var(--ink);
}

.pathway-tab.is-active {
  color: #fff;
  background: var(--yellow);
  box-shadow: 0 4px 11px rgba(37, 99, 235, 0.19);
}

.form-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  animation: panel-enter 230ms ease both;
}

@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-panel[hidden] {
  display: none;
}

.form-panel__aside {
  padding: clamp(29px, 4.3vw, 55px) clamp(24px, 4vw, 50px);
  color: #f3f7ff;
  background:
    radial-gradient(circle at 100% 0, rgba(53, 120, 229, 0.34), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(36, 163, 125, 0.16), transparent 40%),
    #0f1d31;
}

.form-panel__aside--quote {
  background:
    radial-gradient(circle at 100% 0, rgba(0, 184, 217, 0.29), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(22, 160, 133, 0.17), transparent 42%),
    #172337;
}

.label-chip {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(0, 184, 217, 0.2);
  font-size: 11px;
  font-weight: 800;
}

.label-chip--blue {
  color: #dceaff;
  background: rgba(80, 145, 245, 0.22);
}

.label-chip--orange {
  color: #d9fff5;
  background: rgba(22, 160, 133, 0.22);
}

.form-panel__aside h3 {
  max-width: 330px;
  margin: 22px 0 13px;
  color: #fff;
  font-size: clamp(26px, 2.6vw, 35px);
  line-height: 1.36;
  letter-spacing: -0.9px;
}

.form-panel__aside > p {
  max-width: 355px;
  margin: 0;
  color: #bdcadc;
  font-size: 14px;
  line-height: 2;
}

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

.check-list li {
  position: relative;
  padding-right: 25px;
  color: #dce5f2;
  font-size: 12px;
}

.check-list li::before {
  position: absolute;
  top: 5px;
  right: 0;
  width: 13px;
  height: 8px;
  border-bottom: 2px solid var(--yellow);
  border-left: 2px solid var(--yellow);
  content: "";
  transform: rotate(-45deg);
}

.lead-form {
  display: grid;
  align-content: start;
  gap: 17px;
  padding: clamp(28px, 4.3vw, 50px);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #304058;
  font-size: 12px;
  font-weight: 800;
}

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

.optional {
  color: #90a0b4;
  font-size: 10px;
  font-weight: 500;
}

.checkbox-row {
  display: flex !important;
  align-items: flex-start;
  gap: 9px !important;
  color: #52627a !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.7;
}

.checkbox-row--consent {
  margin-top: 2px;
  padding-top: 16px;
  border-top: 1px solid #ebeff4;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 1px;
}

.form-privacy {
  max-width: 310px;
  margin: 0;
  color: #8290a2;
  font-size: 11px;
  line-height: 1.8;
}

.quote-preview {
  display: grid;
  gap: 6px;
  margin-top: 32px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.quote-preview span {
  color: #aebdd1;
  font-size: 10px;
  font-weight: 800;
}

.quote-preview strong {
  color: #fff;
  font-size: 15px;
}

.quote-preview p {
  margin: 0;
  color: #bfcbda;
  font-size: 11px;
  line-height: 1.85;
}

.tracking {
  padding-top: clamp(54px, 7vw, 94px);
  padding-bottom: clamp(54px, 7vw, 94px);
  background: #fff;
}

.tracking__card {
  display: grid;
  grid-template-columns: 1fr minmax(350px, 0.8fr);
  gap: 38px 58px;
  align-items: center;
  padding: clamp(29px, 5vw, 60px);
  border-radius: 23px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 80%, rgba(22, 160, 133, 0.18), transparent 30%),
    radial-gradient(circle at 8% 3%, rgba(0, 184, 217, 0.22), transparent 33%),
    #101e32;
}

.tracking__copy .eyebrow {
  color: #7ce7f2;
}

.tracking h2 {
  color: #fff;
}

.tracking__copy > p:last-child {
  max-width: 600px;
  margin: 15px 0 0;
  color: #b8c6d8;
  font-size: 14px;
  line-height: 2;
}

.tracking-form {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tracking-form input {
  direction: ltr;
  min-width: 0;
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.35px;
}

.tracking-form input::placeholder {
  color: #afbed1;
}

.tracking-form input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.tracking-form .button {
  flex: 0 0 auto;
}

.tracking-result {
  grid-column: 1 / -1;
  padding-top: 5px;
}

.tracking-result__error {
  padding: 15px 17px;
  border: 1px solid rgba(255, 185, 175, 0.3);
  border-radius: 12px;
  color: #ffd8d2;
  background: rgba(194, 65, 58, 0.18);
  font-size: 13px;
}

.tracking-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px 15px 0 0;
  background: rgba(255, 255, 255, 0.08);
}

.tracking-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.16);
}

.tracking-summary small,
.tracking-summary span {
  display: block;
  color: #acbbcf;
  font-size: 10px;
}

.tracking-summary strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 16px;
}

.tracking-summary__eta {
  min-width: 130px;
  text-align: left;
}

.tracking-summary__eta b {
  color: #f5f8fc;
  font-size: 12px;
}

.tracking-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  color: #dae4f1;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
}

.tracking-route span:nth-child(2) {
  color: var(--yellow);
}

.tracking-events {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 18px 17px 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  border-radius: 0 0 15px 15px;
  background: rgba(8, 16, 28, 0.18);
  list-style: none;
}

.tracking-event {
  position: relative;
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 10px;
  padding: 0 0 17px;
}

.tracking-event:not(:last-child)::before {
  position: absolute;
  top: 12px;
  right: 5px;
  width: 1px;
  height: calc(100% - 6px);
  content: "";
  background: rgba(255, 255, 255, 0.17);
}

.tracking-event__dot {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  margin-top: 4px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background: #101e32;
}

.tracking-event:first-child .tracking-event__dot {
  background: var(--yellow);
}

.tracking-event strong {
  color: #edf3fb;
  font-size: 12px;
}

.tracking-event p {
  margin: 2px 0 0;
  color: #a9bbd0;
  font-size: 11px;
}

.tracking-event time {
  color: #9aacbf;
  direction: rtl;
  font-size: 10px;
  white-space: nowrap;
}

.app-download {
  overflow: hidden;
  color: #fff;
  background: #f4f7fb;
}

.app-download__card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 50px;
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 6vw, 76px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 184, 217, 0.19), transparent 30%),
    radial-gradient(circle at 6% 94%, rgba(37, 99, 235, 0.26), transparent 34%),
    #101e32;
  box-shadow: 0 26px 70px rgba(16, 30, 50, 0.2);
}

.app-download__copy {
  position: relative;
  z-index: 1;
}

.install-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.install-option {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
}

.install-option--android {
  grid-column: 1 / -1;
}

.install-option__badge {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: #bff7ff;
  background: rgba(0, 184, 217, 0.15);
  font-size: 10px;
  font-weight: 800;
}

.install-option h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.install-option p {
  margin: 0;
  color: #aebed2;
  font-size: 11px;
  line-height: 1.8;
}

.install-option__status {
  align-self: end;
  color: #d9e5f4;
  font-size: 11px;
  font-weight: 800;
}

.button--light {
  justify-self: start;
  min-height: 43px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button--light:hover {
  background: rgba(255, 255, 255, 0.17);
}

.app-download__copy .eyebrow {
  color: #7ce7f2;
}

.app-download__copy h2 {
  max-width: 650px;
  margin-top: 10px;
  color: #fff;
}

.app-download__copy > p:not(.eyebrow):not(.app-download__notice) {
  max-width: 650px;
  margin: 16px 0 0;
  color: #bdcadc;
  font-size: 15px;
  line-height: 2;
}

.app-download__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 6px;
}

.app-download__actions .text-link {
  color: #d8e6f8;
}

.app-download__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.app-download__meta span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #cbd8e9;
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 800;
}

.app-download__notice {
  max-width: 690px;
  margin: 18px 0 0;
  color: #91a5be;
  font-size: 11px;
  line-height: 1.9;
}

.app-download__visual {
  position: relative;
  display: grid;
  justify-items: center;
  padding-bottom: 36px;
}

.app-download__phone {
  width: min(250px, 80%);
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 35px;
  background: #07111f;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.app-download__speaker {
  display: block;
  width: 54px;
  height: 5px;
  margin: 3px auto 9px;
  border-radius: 999px;
  background: #26364b;
}

.app-download__screen {
  display: grid;
  min-height: 345px;
  align-content: center;
  justify-items: center;
  padding: 30px 20px;
  border-radius: 26px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(0, 184, 217, 0.22), transparent 32%),
    linear-gradient(160deg, #172a44, #0d192b);
}

.app-download__screen strong {
  margin-top: 15px;
  color: #fff;
  font-size: 29px;
}

.app-download__screen strong::first-letter {
  color: #51d9c2;
}

.app-download__screen span {
  margin-top: 6px;
  color: #9eb0c8;
  font-size: 11px;
}

.app-download__screen i {
  width: 82%;
  height: 8px;
  margin-top: 35px;
  border-radius: 999px;
  background: linear-gradient(90deg, #51d9c2 62%, rgba(255, 255, 255, 0.12) 62%);
}

.app-download__security {
  position: absolute;
  bottom: 0;
  right: 0;
  display: grid;
  gap: 3px;
  min-width: 220px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(21, 40, 65, 0.92);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.app-download__security strong {
  color: #fff;
  font-size: 12px;
}

.app-download__security span {
  color: #9eb0c8;
  direction: ltr;
  font-size: 10px;
}

.support {
  background:
    radial-gradient(circle at 96% 6%, rgba(0, 184, 217, 0.1), transparent 26%),
    #fff;
}

.support__grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.25fr);
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 23px;
  background: #fff;
  box-shadow: var(--shadow);
}

.support__channels {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: clamp(26px, 4vw, 44px);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 184, 217, 0.22), transparent 34%),
    #101e32;
}

.support-channel {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}

.support-channel--primary {
  grid-column: 1 / -1;
  padding: 20px;
  border-color: rgba(0, 184, 217, 0.32);
  background: rgba(0, 184, 217, 0.09);
}

.support-channel span {
  display: block;
  color: #9fb0c6;
  font-size: 10px;
  font-weight: 800;
}

.support-channel h3 {
  margin: 6px 0 3px;
  color: #fff;
  font-size: 17px;
}

.support-channel p {
  margin: 0;
  color: #b9c6d8;
  font-size: 11px;
  line-height: 1.8;
}

.support-channel a {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 5px;
  color: #fff;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.support-channel a:hover {
  color: #7ce7f2;
}

.otp-sender-notice {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 15px;
  border: 1px solid rgba(92, 229, 239, 0.25);
  border-radius: 13px;
  background: rgba(0, 184, 217, 0.1);
}

.otp-sender-notice strong {
  color: #a6f3fa;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.otp-sender-notice p,
.support__email-note {
  margin: 5px 0 0;
  color: #b4c2d4;
  font-size: 10px;
  line-height: 1.8;
}

.support__email-note {
  grid-column: 1 / -1;
}

.support-form {
  box-shadow: none;
}

.support-form textarea {
  min-height: 150px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(24px, 5vw, 70px);
  margin-top: clamp(48px, 7vw, 84px);
}

.faq__heading h2 {
  margin-top: 7px;
}

.faq__items {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 0 18px;
  border: 1px solid #dfe6ef;
  border-radius: 14px;
  background: #fff;
}

.faq summary {
  position: relative;
  padding: 17px 0 17px 30px;
  color: #1a2b42;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 16px;
  left: 0;
  width: 23px;
  height: 23px;
  border-radius: 7px;
  color: #1d4ed8;
  content: "+";
  background: #e9f1ff;
  font-family: Arial, sans-serif;
  line-height: 23px;
  text-align: center;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: -3px 0 17px;
  padding-left: 30px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.9;
}

.commitment {
  color: #fff;
  background: linear-gradient(120deg, var(--blue), #1968c9 58%, var(--green));
}

.commitment__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 225px;
}

.commitment p {
  margin: 0 0 7px;
  color: #dff8ff;
  font-size: 13px;
  font-weight: 800;
}

.commitment h2 {
  color: #fff;
}

.text-link--light {
  flex: 0 0 auto;
  color: #fff;
}

.text-link--light:hover {
  color: #dff8ff;
}

.footer {
  color: #aab8ca;
  background: #071a2c;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
}

.brand--footer {
  color: #fff;
  font-size: 20px;
}

.brand--footer img {
  width: 30px;
  height: 30px;
}

.footer p {
  margin: 0;
  font-size: 12px;
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__links a,
.form-consent-link {
  color: #d5e0ef;
  font-size: 12px;
  font-weight: 700;
}

.footer__links a:hover,
.form-consent-link:hover {
  color: var(--yellow);
}

.form-consent-link {
  color: #315f9f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: #f4f7fb;
}

.topbar--legal {
  position: static;
  background: #0b1f33;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.legal-nav a {
  color: #d4deec;
  font-size: 13px;
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--yellow);
}

.legal-nav__home {
  justify-self: end;
}

.legal-hero {
  padding: 82px 0 64px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(53, 120, 229, 0.25), transparent 32%),
    radial-gradient(circle at 87% 30%, rgba(0, 184, 217, 0.16), transparent 24%),
    #101d30;
}

.legal-hero__inner {
  max-width: 830px;
}

.legal-hero h1 {
  max-width: 740px;
  margin: 10px 0 14px;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -2px;
}

.legal-hero__inner > p:not(.eyebrow):not(.legal-meta) {
  max-width: 710px;
  margin: 0;
  color: #c9d7e9;
  font-size: 16px;
  line-height: 2;
}

.legal-status {
  max-width: 760px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 184, 217, 0.42);
  border-radius: 14px;
  color: #dffbff;
  background: rgba(0, 184, 217, 0.1);
  font-size: 13px;
  line-height: 1.9;
}

.legal-status strong {
  color: #83edf5;
}

.legal-meta {
  margin: 14px 0 0;
  color: #8fa4be;
  font-size: 12px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 54px;
  padding-top: 54px;
  padding-bottom: 72px;
}

.legal-toc {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #dde5ef;
  border-radius: 15px;
  background: #fff;
}

.legal-toc p {
  margin: 0 0 3px;
  color: #55667d;
  font-size: 12px;
  font-weight: 800;
}

.legal-toc a {
  color: #243850;
  font-size: 13px;
  font-weight: 700;
}

.legal-toc a:hover {
  color: #315f9f;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content section {
  padding: 30px;
  border: 1px solid #dde5ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(21, 43, 70, 0.05);
}

.legal-kicker {
  margin: 0 0 8px;
  color: #8b6210;
  font-size: 12px;
  font-weight: 800;
}

.legal-content h2 {
  margin: 0 0 13px;
  color: #172a44;
  font-size: 24px;
}

.legal-content p {
  margin: 0 0 12px;
  color: #43546a;
  font-size: 14px;
  line-height: 2;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-checklist {
  border-color: rgba(230, 174, 29, 0.42) !important;
  background: #fffdf6 !important;
}

.legal-checklist ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 20px 0 0;
  color: #43546a;
  font-size: 14px;
  line-height: 1.9;
}

.auth-dialog {
  width: min(440px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: transparent;
  box-shadow: var(--shadow);
}

.auth-dialog::backdrop {
  background: rgba(5, 12, 23, 0.62);
  backdrop-filter: blur(3px);
}

.auth-dialog__surface {
  position: relative;
  padding: 36px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(0, 184, 217, 0.2), transparent 32%),
    #fff;
}

.auth-dialog__close {
  position: absolute;
  top: 13px;
  left: 13px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #415167;
  background: #edf1f6;
  font-size: 27px;
  line-height: 1;
  place-content: center;
}

.auth-dialog__close:hover {
  color: var(--ink);
  background: #e0e7f0;
}

.auth-dialog__close:focus-visible,
.auth-back:focus-visible,
.auth-logout:focus-visible,
.main-nav__auth:focus-visible {
  outline: 3px solid rgba(53, 120, 229, 0.35);
  outline-offset: 3px;
}

.auth-dialog__eyebrow {
  margin: 0 0 7px;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
}

.auth-step h2 {
  margin: 0;
  color: #17243a;
  font-size: 25px;
  line-height: 1.35;
}

.auth-step > p:not(.auth-dialog__eyebrow):not(.auth-development-code) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.auth-step .auth-sender-note {
  padding: 9px 11px;
  border-radius: 10px;
  color: #235278 !important;
  background: #e8f7fb;
  font-size: 11px !important;
  line-height: 1.7;
}

.auth-form {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.auth-form label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.auth-form input {
  text-align: left;
}

.auth-form .button {
  width: 100%;
  margin-top: 5px;
}

#auth-code {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.auth-development-code {
  margin: 16px 0 0;
  padding: 11px 13px;
  border: 1px solid rgba(230, 174, 29, 0.34);
  border-radius: 11px;
  color: #765112;
  background: #fff6d8;
  direction: rtl;
  font-size: 13px;
  font-weight: 700;
}

.auth-back {
  margin-top: 18px;
  padding: 0;
  border: 0;
  color: #345b9d;
  background: transparent;
  font-weight: 800;
}

.auth-back:hover {
  color: #1c447f;
  text-decoration: underline;
}

.auth-logout {
  width: 100%;
  margin-top: 24px;
  color: #9a302f;
  background: #fff0ef;
  box-shadow: none;
}

.auth-manage-account {
  width: 100%;
  margin-top: 16px;
}

.auth-logout:hover {
  background: #ffe2e0;
}

.toast {
  position: fixed;
  z-index: 1200;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: min(440px, calc(100% - 32px));
  min-height: 54px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: #fff;
  background: #14243d;
  box-shadow: 0 20px 52px rgba(5, 12, 23, 0.42);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.9;
  text-align: right;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.toast.is-error {
  border-color: #ffb4aa;
  background: #7d2f2b;
}

@media (max-width: 540px) {
  .toast {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: calc(100% - 32px);
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .topbar__inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    gap: 18px;
  }

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

  .hero__copy {
    max-width: 710px;
  }

  .hero-panel {
    max-width: 580px;
    width: 100%;
  }

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

  .section-heading > p {
    max-width: 640px;
  }

  .form-panel {
    grid-template-columns: 1fr;
  }

  .form-panel__aside {
    min-height: auto;
  }

  .tracking__card {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .app-download__card {
    grid-template-columns: 1fr;
  }

  .app-download__visual {
    margin-top: 8px;
  }

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

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

  .support-channel--primary,
  .otp-sender-notice,
  .support__email-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 1160px);
  }

  .topbar__inner {
    min-height: 64px;
  }

  .topbar__cta {
    display: none;
  }

  .main-nav__auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(220px, calc(100% - 32px));
    min-height: 40px;
    margin-top: 8px;
    border: 1px solid rgba(0, 184, 217, 0.65);
    border-radius: 10px;
    color: var(--yellow);
    background: transparent;
    font-size: 13px;
    font-weight: 800;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    gap: 5px;
    width: 39px;
    height: 39px;
    place-content: center;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 150ms ease, opacity 150ms ease;
  }

  .topbar.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: grid;
    justify-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: #111d30;
    opacity: 0;
    transition: max-height 180ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .topbar.nav-open .main-nav {
    max-height: 350px;
    padding: 9px 0 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 1;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .main-nav a::after {
    bottom: 5px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    letter-spacing: -1.4px;
  }

  .hero__reassurance {
    gap: 16px 22px;
    margin-top: 37px;
  }

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

  .trust-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 19px 0;
  }

  .trust-strip__inner > div {
    justify-content: flex-start;
  }

  .outcomes article {
    min-height: auto;
    padding: 20px 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }

  .outcomes article:last-child {
    border-bottom: 0;
  }

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

  .process-card {
    min-height: 0;
  }

  .pathway-tabs {
    justify-content: start;
    width: 100%;
  }

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

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .tracking-form {
    align-items: stretch;
    flex-direction: column;
  }

  .tracking-form .button {
    width: 100%;
  }

  .app-download {
    padding-right: 0;
    padding-left: 0;
  }

  .app-download__card {
    width: 100%;
    border-radius: 0;
  }

  .app-download__actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .tracking-summary {
    grid-template-columns: auto 1fr;
  }

  .tracking-summary__eta {
    grid-column: 2;
    min-width: 0;
    text-align: right;
  }

  .tracking-event {
    grid-template-columns: 12px 1fr;
  }

  .tracking-event time {
    grid-column: 2;
  }

  .commitment__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 244px;
  }

  .footer__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 21px 0;
  }

  .footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer__links {
    gap: 10px;
  }

  .legal-nav {
    display: none;
  }

  .legal-nav__home {
    display: inline-flex;
  }

  .legal-hero {
    padding: 62px 0 48px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 25px;
    padding-bottom: 42px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-toc p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .route-card {
    padding: 16px;
  }

  .route {
    gap: 7px;
  }

  .route__city strong {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lead-form,
  .form-panel__aside {
    padding: 25px 20px;
  }

  .tracking__card {
    padding: 28px 20px;
  }

  .app-download__card {
    padding: 38px 22px;
  }

  .app-download__actions .button {
    width: 100%;
  }

  .install-options,
  .support__channels {
    grid-template-columns: 1fr;
  }

  .install-option--android,
  .support-channel--primary,
  .otp-sender-notice,
  .support__email-note {
    grid-column: auto;
  }

  .install-option,
  .support-channel {
    overflow-wrap: anywhere;
  }

  .support-form {
    padding: 25px 20px;
  }

  .auth-dialog__surface {
    padding: 32px 24px;
  }

  .legal-content section {
    padding: 24px 19px;
  }

  .legal-content h2 {
    font-size: 21px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
