:root {
  --ink: #0b0f19;
  --muted: #6b7280;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --line: rgba(15, 23, 42, 0.1);
  --blue: #1768ff;
  --blue-deep: #0b3c91;
  --red: #ff4d43;
  --gold: #f8b72f;
  --green: #13a46b;
  --shadow: 0 28px 90px rgba(20, 39, 85, 0.16);
  --shadow-strong: 0 48px 130px rgba(20, 39, 85, 0.24);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(22px) saturate(170%);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 54px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

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

.menu a {
  color: #2b3342;
  font-size: 0.86rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.menu a:hover,
.menu a:focus-visible,
.menu a.is-active {
  color: var(--blue);
  outline: none;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(23, 104, 255, 0.08);
}

.menu-button svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

.scene {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  padding: 92px 0;
  overflow: hidden;
}

.hero {
  min-height: 900px;
  background:
    radial-gradient(circle at 80% 12%, rgba(23, 104, 255, 0.16), transparent 32%),
    radial-gradient(circle at 22% 16%, rgba(255, 77, 67, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-content: end;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 72px;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: 5.7rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.page-visual {
  margin-top: 0;
  margin-bottom: 92px;
}

.home-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.home-tile {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,250,255,0.92));
  box-shadow: 0 18px 50px rgba(20, 39, 85, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.home-tile:hover,
.home-tile:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  outline: none;
}

.home-tile span {
  color: var(--blue);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.home-tile strong {
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.home-tile small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero::before,
.scene::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 54px 0 auto;
  height: 55%;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(23, 104, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 104, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 70% 20%, #000 0%, transparent 64%);
}

.scene::after {
  inset: auto 8% 10% auto;
  width: 280px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(23, 104, 255, 0.34), rgba(255, 77, 67, 0.26), transparent);
  opacity: 0.7;
  transform: rotate(-16deg);
}

.hero-copy,
.scene-copy,
.contact-panel {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.hero-copy {
  margin-top: 30px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.scene h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  font-size: 6.8rem;
  font-weight: 900;
}

.scene h2 {
  font-size: 5rem;
  font-weight: 900;
}

.hero-copy p:not(.eyebrow),
.scene-copy p:not(.eyebrow),
.contact-panel p:not(.eyebrow),
.footer p {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 24px auto 0;
  font-size: 1.32rem;
}

.scene-copy p:not(.eyebrow),
.contact-panel p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 20px auto 0;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

.link-cta {
  color: var(--blue);
  font-size: 1.06rem;
  font-weight: 760;
}

.link-cta::after {
  content: ">";
  padding-left: 6px;
}

.link-cta.muted {
  color: #30394a;
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(1060px, calc(100% - 32px));
  min-height: 420px;
  margin: 48px auto 0;
}

.domain-stack {
  position: absolute;
  left: 0;
  top: 74px;
  width: 360px;
  display: grid;
  gap: 12px;
}

.domain-pill {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(23, 104, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(20, 39, 85, 0.1);
  backdrop-filter: blur(18px);
  font-weight: 850;
  opacity: 0;
  transform: translateY(18px);
  animation: pill-in 650ms cubic-bezier(.2,.8,.2,1) forwards;
}

.main-domain {
  color: var(--blue);
}

.company-domain.one {
  animation-delay: 220ms;
}

.company-domain.two {
  margin-left: 42px;
  animation-delay: 380ms;
}

.company-domain.three {
  margin-left: 84px;
  animation-delay: 540ms;
}

.product-device {
  position: absolute;
  right: 4%;
  top: 0;
  width: 470px;
  min-height: 380px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72)),
    url("assets/hero-colisso.png") center / cover;
  box-shadow: var(--shadow-strong);
  transform: perspective(1100px) rotateX(6deg) rotateY(-8deg);
  animation: device-in 900ms cubic-bezier(.2,.8,.2,1) both;
}

.device-top {
  width: 78px;
  height: 8px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
}

.company-head,
.search-sheet,
.mini-grid span {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(20, 39, 85, 0.11);
}

.company-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
}

.company-head span {
  font-size: 1.45rem;
  font-weight: 900;
}

.company-head i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--gold));
}

.search-sheet {
  margin-top: 14px;
  padding: 22px;
}

.search-sheet small {
  color: var(--blue);
  font-weight: 850;
}

.search-sheet strong {
  display: block;
  margin-top: 7px;
  font-size: 1.42rem;
}

.search-sheet span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini-grid span {
  height: 86px;
}

.facade {
  background: #fff;
}

.facade-visual {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 32px));
  height: 430px;
  margin: 56px auto 0;
}

.site-card {
  position: absolute;
  width: 420px;
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.site-card:hover,
.site-card:focus-visible {
  outline: none;
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.site-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
}

.site-card strong {
  margin-top: 8px;
  font-size: 1.7rem;
  line-height: 1.05;
}

.colisso-card {
  left: 2%;
  top: 72px;
}

.saramaya-card {
  left: 32%;
  top: 10px;
  background: linear-gradient(135deg, #7a0910, #d71920);
  color: #fff;
}

.saramaya-card span {
  color: rgba(255, 255, 255, 0.78);
}

.rahimo-card {
  right: 2%;
  bottom: 14px;
  background: linear-gradient(135deg, #DC2626 0%, #DC2626 55%, #FACC15 100%);
  color: #fff;
}

.rahimo-card span {
  color: rgba(255, 255, 255, 0.85);
}

.split {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 54px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.split.reverse {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.split.reverse .scene-copy {
  order: 2;
}

.split .scene-copy {
  width: auto;
  text-align: left;
}

.split .scene-copy p {
  margin-left: 0;
}

.tickets {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.ticket-visual,
.parcel-visual {
  position: relative;
  min-height: 460px;
}

.ticket {
  position: absolute;
  inset: 30px auto auto 50%;
  width: 430px;
  min-height: 320px;
  padding: 26px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-strong);
  transform: translateX(-50%) rotate(-3deg);
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f7faff;
  transform: translateY(-50%);
}

.ticket::before {
  left: -22px;
}

.ticket::after {
  right: -22px;
}

.ticket-cities {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.ticket-cities strong {
  font-size: 2rem;
}

.ticket-cities i {
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

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

.seat-map span {
  aspect-ratio: 1;
  border-radius: 14px;
  background: #e8eef8;
}

.seat-map .active {
  background: var(--blue);
  box-shadow: 0 14px 26px rgba(23, 104, 255, 0.28);
}

.seat-map .busy {
  background: #c9d3e4;
}

.ticket button,
.button-submit {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #0b0f19;
  font-weight: 850;
}

.button-submit:disabled {
  cursor: not-allowed;
  background: #aab4c3;
}

.booking-app,
.tracking-app {
  width: min(var(--max), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.booking-search,
.tracking-search {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 58px rgba(20, 39, 85, 0.1);
}

.booking-search {
  grid-template-columns: 1fr 1fr 160px 130px 150px;
}

.tracking-search {
  grid-template-columns: 1fr 150px;
}

.booking-search label,
.tracking-search label,
.payment-choice {
  display: grid;
  gap: 7px;
}

.booking-search span,
.tracking-search span,
.payment-choice span,
.section-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.booking-search input,
.booking-search select,
.tracking-search input,
.payment-choice select {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
}

.booking-search button,
.tracking-search button {
  align-self: end;
  height: 50px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-weight: 850;
}

.booking-layout,
.tracking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  margin-top: 18px;
}

.trip-results,
.seat-panel,
.tracking-result,
.tracking-timeline {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(20, 39, 85, 0.08);
}

.trip-results,
.seat-panel,
.tracking-result {
  padding: 22px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-head strong {
  font-size: 1.24rem;
  line-height: 1.08;
}

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

.empty-state {
  margin: 0;
  padding: 18px;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: 8px;
  color: var(--muted);
  background: #f8fbff;
}

.trip-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.trip-card.is-selected {
  border-color: rgba(23, 104, 255, 0.48);
  box-shadow: 0 18px 42px rgba(23, 104, 255, 0.12);
}

.trip-time {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trip-time strong {
  font-size: 1.8rem;
}

.trip-time i {
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.trip-card button {
  min-width: 116px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 850;
}

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

.seat-button {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #eef3fb;
  font-weight: 850;
}

.seat-button.is-selected {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(23, 104, 255, 0.24);
}

.seat-button:disabled {
  color: #7f8a9b;
  background: #d7dfeb;
  text-decoration: line-through;
}

.booking-summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #f6f9ff;
}

.booking-summary span {
  color: var(--muted);
}

.payment-choice {
  margin-bottom: 14px;
}

.tracking-layout {
  grid-template-columns: 0.85fr 1.15fr;
}

.tracking-code strong {
  display: block;
  margin-top: 8px;
  font-size: 2.4rem;
  line-height: 1;
}

.tracking-code small {
  color: var(--blue);
  font-weight: 900;
}

.tracking-progress {
  height: 10px;
  margin: 24px 0;
  border-radius: 999px;
  background: #e7edf7;
  overflow: hidden;
}

.tracking-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 320ms ease;
}

.tracking-meta {
  display: grid;
  gap: 12px;
  margin: 0;
}

.tracking-meta div {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.tracking-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.tracking-meta dd {
  margin: 0;
  font-weight: 820;
}

.tracking-timeline {
  margin: 0;
  padding: 22px;
  list-style: none;
}

.tracking-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 0 0 22px;
}

.tracking-timeline li:last-child {
  padding-bottom: 0;
}

.tracking-timeline li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
  background: #cbd5e1;
}

.tracking-timeline li.is-done::before,
.tracking-timeline li.is-current::before {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(23, 104, 255, 0.12);
}

.tracking-timeline strong {
  display: block;
  line-height: 1.1;
}

.tracking-timeline span,
.tracking-timeline time {
  color: var(--muted);
  font-size: 0.9rem;
}

.colis {
  background: #fff;
}

.parcel-box {
  position: absolute;
  border-radius: 22px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255,255,255,.34) 42% 58%, transparent 58%),
    #c98c4f;
  box-shadow: var(--shadow);
}

.box-a {
  width: 280px;
  height: 190px;
  left: 12%;
  top: 96px;
  transform: rotate(-7deg);
}

.box-b {
  width: 220px;
  height: 150px;
  right: 18%;
  bottom: 60px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255,255,255,.34) 42% 58%, transparent 58%),
    #d9a566;
  transform: rotate(5deg);
}

.tracking-card {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 280px;
  padding: 22px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #7aa9ff);
  box-shadow: var(--shadow-strong);
  transform: translate(-50%, -50%);
}

.tracking-card small {
  opacity: 0.8;
  font-weight: 850;
}

.tracking-card strong {
  display: block;
  margin-top: 7px;
  font-size: 1.7rem;
}

.tracking-card span {
  display: block;
  height: 8px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff 72%, rgba(255,255,255,.32) 72%);
}

.pilotage {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.scene-copy.center {
  text-align: center;
}

.cockpit {
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  min-height: 480px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 94px 1fr;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.cockpit-nav {
  background: #0b0f19;
}

.cockpit-main {
  padding: 34px;
}

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

.kpis span {
  min-height: 140px;
  padding: 22px;
  border-radius: 24px;
  background: #f5f7fb;
}

.kpis small {
  color: var(--muted);
  font-weight: 750;
}

.kpis strong {
  display: block;
  margin-top: 22px;
  font-size: 2rem;
}

.bars {
  height: 190px;
  display: flex;
  align-items: end;
  gap: 16px;
  margin-top: 34px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f9fbff, #edf3ff);
}

.bars i {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--blue), #8ab3ff);
  animation: bar-rise 1300ms cubic-bezier(.2,.8,.2,1) both;
}

.bars i:nth-child(1) { height: 38%; }
.bars i:nth-child(2) { height: 62%; }
.bars i:nth-child(3) { height: 50%; }
.bars i:nth-child(4) { height: 86%; }
.bars i:nth-child(5) { height: 72%; }
.bars i:nth-child(6) { height: 94%; }

.contact {
  min-height: 720px;
  background:
    radial-gradient(circle at 50% 15%, rgba(23, 104, 255, 0.15), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.contact-panel {
  width: min(720px, calc(100% - 32px));
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.86);
}

.contact-form select,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.footer {
  width: min(var(--max), calc(100% - 32px));
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.footer span {
  font-weight: 850;
}

.footer p {
  margin: 0;
  font-size: 0.92rem;
}

.company-site {
  --blue: #d71920;
  --blue-deep: #7a0910;
  --red: #f5b82e;
}

.company-topbar {
  background: rgba(255, 255, 255, 0.78);
}

.company-brand img {
  background: #d71920;
}

.company-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 42px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 76px;
}

.company-copy {
  position: relative;
  z-index: 2;
}

.company-copy h1 {
  max-width: 640px;
  margin: 0;
  font-size: 5rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.company-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.company-copy .hero-actions {
  justify-content: flex-start;
}

.company-booking {
  position: relative;
  min-height: 460px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78)),
    url("assets/hero-colisso.png") center / cover;
  box-shadow: var(--shadow-strong);
}

.company-booking::before {
  content: "";
  position: absolute;
  inset: 38px 28px auto auto;
  width: 160px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.company-window {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 58px rgba(20, 39, 85, 0.13);
}

.company-window i {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.window-route span,
.company-times small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.window-route strong {
  display: block;
  margin-top: 8px;
  font-size: 1.72rem;
  line-height: 1.05;
}

.company-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.company-times span {
  min-height: 112px;
  display: grid;
  align-content: end;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 39, 85, 0.1);
}

.company-times b {
  font-size: 1.5rem;
}

.company-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.company-strip a {
  min-height: 180px;
  display: grid;
  align-content: end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 39, 85, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.company-strip a:hover,
.company-strip a:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  outline: none;
}

.company-strip span {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 850;
}

.company-strip strong {
  margin-top: 8px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.saramaya-page {
  --blue: #d71920;
  --blue-deep: #7a0910;
  --red: #f5b82e;
  --gold: #ffd166;
  --green: #d71920;
  background:
    linear-gradient(180deg, #fff8f7 0%, #ffffff 48%, #f8fbff 100%);
}

.saramaya-page .topbar {
  border-bottom-color: rgba(122, 9, 16, 0.08);
}

.saramaya-hero {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  min-height: 800px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  align-items: center;
  gap: 48px;
  margin: 0 auto;
  padding: 124px 0 76px;
}

.saramaya-hero::before {
  content: "";
  position: absolute;
  inset: 116px -9vw auto auto;
  z-index: -1;
  width: min(670px, 54vw);
  height: 560px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(251, 253, 248, 0.98), rgba(251, 253, 248, 0.18)),
    url("assets/hero-colisso.png") center / cover;
  opacity: 0.62;
}

.saramaya-copy h1 {
  margin: 0;
  max-width: 680px;
  font-size: 6.2rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.saramaya-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: #665252;
  font-size: 1.22rem;
}

.saramaya-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.saramaya-badges span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(215, 25, 32, 0.16);
  border-radius: 999px;
  color: #7a0910;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 850;
}

.saramaya-console {
  position: relative;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(122, 9, 16, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 44px 120px rgba(122, 9, 16, 0.2);
  backdrop-filter: blur(20px);
}

.saramaya-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px;
  border-radius: 8px;
  background: #fff0f0;
}

.saramaya-switch button {
  height: 46px;
  border: 0;
  border-radius: 8px;
  color: #705555;
  background: transparent;
  font-weight: 900;
}

.saramaya-switch button.is-active {
  color: #fff;
  background: #7a0910;
  box-shadow: 0 14px 28px rgba(122, 9, 16, 0.18);
}

.saramaya-search {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.saramaya-search.is-hidden {
  display: none;
}

.saramaya-search label {
  display: grid;
  gap: 7px;
}

.saramaya-search span,
.saramaya-live small,
.route-result span,
.agency-grid span {
  color: #7b6b6b;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.saramaya-search input,
.saramaya-search select {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(122, 9, 16, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  color: #0b1810;
  background: #fff;
}

.saramaya-search button {
  grid-column: 1 / -1;
  height: 54px;
  border: 0;
  border-radius: 8px;
  color: #07120d;
  background: var(--gold);
  font-weight: 950;
}

.saramaya-live {
  margin-top: 14px;
}

.route-result,
.parcel-result {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #7a0910, #d71920);
  color: #fff;
}

.route-result strong,
.parcel-result strong {
  font-size: 1.9rem;
  line-height: 1;
}

.route-result span,
.parcel-result span,
.route-result small,
.parcel-result small {
  color: rgba(255, 255, 255, 0.74);
}

.route-result-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.route-result-row b {
  font-size: 1.35rem;
}

.route-result-row small {
  display: block;
  margin-top: 4px;
}

.saramaya-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 16px;
  border-radius: 8px;
  color: #07120d;
  background: var(--gold);
  font-weight: 950;
}

.parcel-result .tracking-progress {
  margin: 6px 0;
  background: rgba(255, 255, 255, 0.22);
}

.parcel-result .tracking-progress span {
  background: var(--gold);
}

.saramaya-metrics {
  width: min(var(--max), calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 auto 96px;
}

.saramaya-metrics div,
.agency-grid article {
  min-height: 154px;
  display: grid;
  align-content: end;
  padding: 22px;
  border: 1px solid rgba(122, 9, 16, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 39, 85, 0.08);
}

.saramaya-metrics strong {
  font-size: 2.6rem;
  line-height: 1;
}

.saramaya-metrics span {
  margin-top: 8px;
  color: #665252;
  font-weight: 780;
}

.saramaya-section,
.saramaya-showcase {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 112px;
}

.saramaya-section-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: 4.6rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.saramaya-section-copy p:not(.eyebrow) {
  max-width: 580px;
  margin: 20px 0 0;
  color: #665252;
  font-size: 1.12rem;
}

.saramaya-routes,
.agency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.saramaya-routes button {
  min-height: 250px;
  display: grid;
  align-content: end;
  text-align: left;
  padding: 22px;
  border: 1px solid rgba(122, 9, 16, 0.1);
  border-radius: 8px;
  color: #07120d;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.96)),
    url("assets/hero-colisso.png") center / cover;
  box-shadow: 0 20px 58px rgba(20, 39, 85, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.saramaya-routes button:hover,
.saramaya-routes button:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  outline: none;
}

.saramaya-routes span {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 950;
}

.saramaya-routes strong,
.agency-grid strong {
  margin-top: 10px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.saramaya-routes small,
.agency-grid small {
  margin-top: 10px;
  color: #665252;
  font-size: 0.96rem;
  font-weight: 720;
}

.saramaya-showcase {
  display: grid;
  grid-template-columns: minmax(350px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
}

.saramaya-phone {
  min-height: 540px;
  padding: 18px;
  border: 1px solid rgba(122, 9, 16, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.78)),
    url("assets/hero-colisso.png") center / cover;
  box-shadow: var(--shadow-strong);
}

.phone-bar {
  width: 78px;
  height: 8px;
  margin: 0 auto 34px;
  border-radius: 999px;
  background: rgba(122, 9, 16, 0.16);
}

.phone-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: #7a0910;
}

.phone-card span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
}

.phone-card strong {
  font-size: 2.2rem;
}

.phone-card i {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 70%, rgba(255,255,255,0.22) 70%);
}

.phone-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.phone-list span {
  min-height: 88px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(20, 39, 85, 0.1);
}

.carrier-page {
  background: #fff;
}

.carrier-topbar {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(122, 9, 16, 0.12);
}

.carrier-brand span {
  color: #7a0910;
}

.carrier-brand img {
  background: #d71920;
}

.carrier-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #7a0910;
}

.carrier-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(122, 9, 16, 0.98) 0%, rgba(122, 9, 16, 0.78) 42%, rgba(122, 9, 16, 0.12) 100%),
    linear-gradient(0deg, rgba(11, 15, 25, 0.2), rgba(11, 15, 25, 0.04)),
    url("assets/hero-colisso.png") center / cover;
  transform: scale(1.02);
}

.carrier-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 170px;
}

.carrier-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.carrier-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 6.8rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.carrier-hero p:not(.carrier-kicker) {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.24rem;
}

.carrier-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.carrier-hero-actions a,
.carrier-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}

.carrier-hero-actions a:first-child,
.carrier-link {
  color: #12090a;
  background: var(--gold);
}

.carrier-hero-actions a:last-child {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.carrier-booking-shell {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 32px));
  margin: -96px auto 96px;
}

.carrier-booking {
  padding: 18px;
  border: 1px solid rgba(122, 9, 16, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 36px 110px rgba(20, 39, 85, 0.18);
  backdrop-filter: blur(24px);
}

.carrier-booking-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.carrier-booking-head span,
.carrier-proof span,
.carrier-routes span,
.carrier-agencies span,
.carrier-parcel-visual span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.carrier-booking-head strong {
  display: block;
  margin-top: 5px;
  font-size: 1.4rem;
  line-height: 1.05;
}

.carrier-booking .saramaya-switch {
  margin: 0;
}

.carrier-search {
  grid-template-columns: 1fr 1fr 160px 180px;
}

.carrier-search button {
  grid-column: auto;
}

.carrier-live .route-result,
.carrier-live .parcel-result {
  margin-top: 14px;
}

.carrier-proof,
.carrier-section,
.carrier-split {
  width: min(var(--max), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.carrier-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 112px;
}

.carrier-proof div,
.carrier-agencies article,
.carrier-routes button {
  border: 1px solid rgba(122, 9, 16, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(20, 39, 85, 0.08);
}

.carrier-proof div {
  min-height: 190px;
  display: grid;
  align-content: end;
  padding: 22px;
}

.carrier-proof strong,
.carrier-agencies strong {
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.carrier-proof small,
.carrier-routes small,
.carrier-agencies small,
.carrier-section-head p:not(.carrier-kicker),
.carrier-parcel-visual small {
  color: #665252;
  font-size: 0.98rem;
}

.carrier-section {
  margin-bottom: 116px;
}

.carrier-section-head h2 {
  max-width: 780px;
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.carrier-section-head p:not(.carrier-kicker) {
  max-width: 600px;
  margin: 20px 0 0;
}

.carrier-routes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.carrier-routes button {
  min-height: 250px;
  display: grid;
  align-content: end;
  padding: 20px;
  text-align: left;
  color: var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.carrier-routes button:hover,
.carrier-routes button:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  outline: none;
}

.carrier-routes strong {
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.06;
}

.carrier-routes small {
  margin-top: 8px;
}

.carrier-split {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
  margin-bottom: 116px;
}

.carrier-parcel-visual {
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(122, 9, 16, 0.1), rgba(122, 9, 16, 0.92)),
    url("assets/hero-colisso.png") center / cover;
  box-shadow: var(--shadow-strong);
}

.carrier-parcel-visual span {
  color: rgba(255, 255, 255, 0.76);
}

.carrier-parcel-visual strong {
  margin-top: 12px;
  font-size: 3rem;
  line-height: 1;
}

.carrier-parcel-visual i {
  height: 10px;
  margin: 24px 0 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 68%, rgba(255,255,255,0.24) 68%);
}

.carrier-parcel-visual small {
  color: rgba(255, 255, 255, 0.76);
}

.carrier-agencies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.carrier-agencies article {
  min-height: 190px;
  display: grid;
  align-content: end;
  padding: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
}

.reveal.is-visible {
  animation: reveal-up 820ms cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pill-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes device-in {
  from {
    opacity: 0;
    transform: perspective(1100px) rotateX(10deg) rotateY(-12deg) translateY(34px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: perspective(1100px) rotateX(6deg) rotateY(-8deg) translateY(0) scale(1);
  }
}

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

@media (max-width: 980px) {
  .scene {
    min-height: auto;
    padding: 110px 0;
  }

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

  .hero h1 {
    font-size: 4.8rem;
  }

  .page-hero h1 {
    font-size: 4.2rem;
  }

  .scene h2 {
    font-size: 3.4rem;
  }

  .hero-stage {
    min-height: 760px;
  }

  .domain-stack,
  .product-device {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: min(100%, 470px);
    margin: 0 auto;
  }

  .product-device {
    margin-top: 36px;
  }

  .company-domain.two,
  .company-domain.three {
    margin-left: 0;
  }

  .facade-visual {
    height: auto;
    display: grid;
    gap: 14px;
  }

  .site-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .scene-copy {
    order: 0;
  }

  .split .scene-copy {
    text-align: center;
  }

  .split .scene-copy p {
    margin-left: auto;
  }

  .ticket-visual,
  .parcel-visual {
    min-height: 430px;
  }

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

  .cockpit-nav {
    display: none;
  }

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

  .booking-search,
  .booking-layout,
  .tracking-search,
  .tracking-layout {
    grid-template-columns: 1fr;
  }

  .company-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .company-copy h1,
  .company-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .company-copy .hero-actions {
    justify-content: center;
  }

  .company-strip {
    grid-template-columns: 1fr;
  }

  .saramaya-hero,
  .saramaya-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .saramaya-copy p:not(.eyebrow),
  .saramaya-section-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .saramaya-badges {
    justify-content: center;
  }

  .saramaya-metrics,
  .saramaya-routes,
  .agency-grid {
    grid-template-columns: 1fr;
  }

  .saramaya-showcase .saramaya-section-copy {
    order: -1;
  }

  .carrier-hero h1 {
    font-size: 5rem;
  }

  .carrier-booking-head,
  .carrier-search,
  .carrier-proof,
  .carrier-routes,
  .carrier-split,
  .carrier-agencies {
    grid-template-columns: 1fr;
  }

  .carrier-search button {
    grid-column: 1;
  }

  .carrier-routes {
    grid-template-columns: repeat(2, 1fr);
  }

  .carrier-split {
    text-align: center;
  }

  .carrier-section-head h2,
  .carrier-section-head p:not(.carrier-kicker) {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .menu-button {
    display: grid;
  }

  .menu {
    position: fixed;
    inset: 62px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 13px 10px;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .scene h2 {
    font-size: 2.65rem;
  }

  .hero-copy p:not(.eyebrow),
  .scene-copy p:not(.eyebrow),
  .contact-panel p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .product-device,
  .ticket,
  .tracking-card {
    width: min(100%, 360px);
  }

  .ticket {
    padding: 22px;
  }

  .box-a {
    left: 4%;
  }

  .box-b {
    right: 3%;
  }

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

  .contact-panel {
    padding: 26px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 0;
  }

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

  .trip-card,
  .section-head,
  .booking-summary {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .trip-card button {
    width: 100%;
  }

  .tracking-timeline li {
    grid-template-columns: 18px 1fr;
  }

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

  .company-hero {
    padding-top: 104px;
  }

  .company-copy h1 {
    font-size: 3.05rem;
  }

  .company-booking {
    min-height: auto;
    border-radius: 22px;
  }

  .company-window,
  .company-times {
    grid-template-columns: 1fr;
  }

  .company-window i {
    width: 3px;
    height: 48px;
    margin: 0 auto;
  }

  .saramaya-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .saramaya-hero::before {
    inset: 92px -30px auto auto;
    width: 82vw;
    height: 330px;
    opacity: 0.36;
  }

  .saramaya-copy h1 {
    font-size: 3.7rem;
  }

  .saramaya-section-copy h2 {
    font-size: 2.8rem;
  }

  .saramaya-search {
    grid-template-columns: 1fr;
  }

  .saramaya-console {
    padding: 12px;
  }

  .saramaya-metrics {
    margin-bottom: 72px;
  }

  .saramaya-section,
  .saramaya-showcase {
    margin-bottom: 82px;
  }

  .saramaya-phone {
    min-height: 420px;
  }

  .carrier-hero {
    min-height: 680px;
  }

  .carrier-hero-content {
    padding: 120px 0 146px;
  }

  .carrier-hero h1 {
    font-size: 3.8rem;
  }

  .carrier-hero p:not(.carrier-kicker) {
    font-size: 1.05rem;
  }

  .carrier-booking-shell {
    margin-top: -86px;
    margin-bottom: 72px;
  }

  .carrier-booking {
    padding: 12px;
  }

  .carrier-routes {
    grid-template-columns: 1fr;
  }

  .carrier-section,
  .carrier-split {
    margin-bottom: 82px;
  }

  .carrier-section-head h2 {
    font-size: 2.9rem;
  }

  .carrier-parcel-visual {
    min-height: 380px;
  }
}

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