:root {
  --navy-950: #061722;
  --navy-900: #092033;
  --navy-800: #10364a;
  --navy-700: #1b4b61;
  --teal-700: #087665;
  --teal-600: #0b8c76;
  --teal-500: #12a58a;
  --amber-500: #f4b63a;
  --amber-400: #ffc85c;
  --paper: #f5f7f6;
  --white: #ffffff;
  --ink: #10232e;
  --muted: #62737c;
  --line: #dbe3e5;
  --line-soft: #e9eeef;
  --danger: #b84848;
  --shadow: 0 18px 50px rgba(7, 31, 46, 0.11);
  --shadow-heavy: 0 30px 90px rgba(0, 18, 31, 0.2);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(calc(100% - 44px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: 0.3s ease;
}

.site-header.scrolled {
  height: 70px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(14, 44, 60, 0.1);
  box-shadow: 0 8px 30px rgba(7, 31, 46, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  letter-spacing: -0.6px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--navy-950);
  background: var(--amber-500);
  box-shadow: 0 8px 20px rgba(244, 182, 58, 0.2);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.brand-mark .brand-window {
  fill: var(--amber-500);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
  opacity: 0.84;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--amber-500);
  transform: scaleX(0);
  transition: 0.2s ease;
}

.desktop-nav a:hover {
  opacity: 1;
}

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

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

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

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

.btn-primary {
  color: var(--navy-950);
  background: var(--amber-500);
  box-shadow: 0 10px 25px rgba(244, 182, 58, 0.18);
}

.btn-primary:hover,
.btn-accent:hover {
  background: var(--amber-400);
  box-shadow: 0 14px 35px rgba(244, 182, 58, 0.27);
}

.btn-ghost {
  color: inherit;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.scrolled .btn-ghost {
  color: var(--navy-900);
  border-color: rgba(9, 32, 51, 0.15);
  background: rgba(9, 32, 51, 0.04);
}

.btn-accent {
  color: var(--navy-950);
  background: var(--amber-500);
}

.btn-dark {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 10px 24px rgba(9, 32, 51, 0.15);
}

.btn-dark:hover {
  background: var(--navy-800);
}

.btn-soft {
  color: var(--navy-900);
  border-color: var(--line);
  background: #f3f6f6;
}

.btn-large {
  min-height: 54px;
  padding: 15px 22px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  padding: 132px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(19, 166, 139, 0.26), transparent 28%),
    radial-gradient(circle at 60% 58%, rgba(29, 91, 113, 0.38), transparent 34%),
    linear-gradient(125deg, #061722 0%, #09283b 56%, #0d4153 100%);
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: 170px;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 555px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.eyebrow {
  color: #a9cbd0;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--amber-500);
}

.hero h1 {
  max-width: 720px;
  margin: 22px 0 23px;
  font-size: clamp(49px, 5.5vw, 79px);
  font-weight: 750;
  letter-spacing: -3.4px;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--amber-500);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: #bdd0d5;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 750;
}

.text-link span {
  color: var(--amber-500);
  font-size: 17px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 37px;
}

.hero-proof p {
  margin: 0;
  color: #9fb8c0;
  font-size: 12px;
  line-height: 1.45;
}

.hero-proof strong {
  color: var(--white);
  font-size: 13px;
}

.avatars {
  display: flex;
  padding-left: 12px;
}

.avatars span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -12px;
  place-items: center;
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--amber-500);
  font-size: 10px;
  font-weight: 900;
}

.avatars span:nth-child(2) {
  color: var(--white);
  background: var(--teal-500);
}

.avatars span:nth-child(3) {
  background: #dae8eb;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-stage {
  position: absolute;
  inset: 20px -60px 0 -20px;
}

.visual-stage::before {
  position: absolute;
  inset: 38px 45px 74px 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 49% 51% 54% 46% / 43% 45% 55% 57%;
  content: "";
  transform: rotate(9deg);
}

.sun-orbit {
  position: absolute;
  top: 80px;
  right: 85px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 182, 58, 0.26), rgba(244, 182, 58, 0.05) 55%, transparent 70%);
}

.bus-art {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  filter: saturate(1.04);
}

.route-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-heavy);
  backdrop-filter: blur(12px);
}

.route-card-top {
  top: 44px;
  right: 0;
  min-width: 270px;
}

.route-card-bottom {
  right: 55px;
  bottom: 40px;
  min-width: 230px;
}

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

.route-card small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.route-card strong {
  font-size: 13px;
}

.route-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
}

.route-icon.green {
  background: #daf4eb;
}

.route-icon.green i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 6px rgba(18, 165, 138, 0.15);
}

.route-icon.amber {
  color: #9c6a06;
  background: #fff1ce;
}

.route-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.live-pill {
  margin-left: auto;
  padding: 4px 7px;
  border-radius: 30px;
  color: var(--teal-700);
  background: #dff5ee;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.service-selector {
  position: relative;
  z-index: 5;
  display: grid;
  margin-top: 53px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 -5px 55px rgba(0, 18, 31, 0.18);
  grid-template-columns: 1fr 1fr;
}

.selector-card {
  display: grid;
  min-height: 170px;
  padding: 32px 36px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  transition: 0.25s ease;
}

.selector-card:hover {
  background: #fbfcfc;
}

.selector-card.dark {
  color: var(--white);
  background: var(--teal-700);
}

.selector-card.dark:hover {
  background: #086f60;
}

.selector-number {
  align-self: start;
  color: #94a5ac;
  font-family: Georgia, serif;
  font-size: 17px;
}

.selector-card.dark .selector-number {
  color: #82c6ba;
}

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

.selector-card small {
  margin-bottom: 7px;
  color: var(--teal-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.selector-card.dark small {
  color: #b9e1da;
}

.selector-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.7px;
}

.selector-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.selector-card.dark p {
  color: #b9d8d2;
}

.circle-arrow {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: 0.2s ease;
}

.selector-card.dark .circle-arrow {
  border-color: rgba(255, 255, 255, 0.3);
}

.selector-card:hover .circle-arrow {
  color: var(--navy-950);
  border-color: var(--amber-500);
  background: var(--amber-500);
  transform: translateX(4px);
}

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

.trust-grid {
  display: grid;
  min-height: 126px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-grid > div {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 13px;
  padding: 0 25px;
  border-right: 1px solid var(--line-soft);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border: 0;
}

.trust-grid strong {
  color: var(--teal-700);
  font-family: Georgia, serif;
  font-size: 27px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.section {
  padding: 112px 0;
}

.section-heading h2,
.safety-copy h2,
.fleet-copy h2,
.quote-copy h2 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.03;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p,
.centered > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  margin-top: 54px;
  grid-template-columns: 1fr 1fr 0.67fr;
  gap: 18px;
}

.service-card,
.mini-service {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  padding: 31px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border: 1px solid #e4eaec;
  border-radius: 50%;
  content: "";
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8a9aa1;
  font-family: Georgia, serif;
}

.service-tag,
.mini-label {
  padding: 7px 10px;
  border-radius: 30px;
  color: var(--teal-700);
  background: #e6f4f0;
  font-family: Inter, Aptos, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.1px;
}

.service-icon-wrap {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 36px 0 27px;
  place-items: center;
  border-radius: 21px;
  color: var(--teal-700);
  background: #e9f5f2;
}

.corporate-card .service-icon-wrap {
  color: #9b6905;
  background: #fff2d4;
}

.service-icon-wrap svg {
  width: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.mini-service h3 {
  margin: 0 0 13px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.service-card p,
.mini-service p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  margin: 24px 0 32px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 650;
}

.service-card li::before {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: #e7f3f0;
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.service-card > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 800;
}

.service-card > a span {
  font-size: 18px;
}

.mini-service {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(9, 32, 51, 0.1), rgba(9, 32, 51, 0.96)),
    radial-gradient(circle at 80% 15%, #1c8d7e, transparent 34%),
    #0a3244;
}

.mini-service::before {
  position: absolute;
  top: -65px;
  right: -70px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025), 0 0 0 90px rgba(255, 255, 255, 0.018);
}

.mini-service .mini-label {
  align-self: flex-start;
  margin-bottom: 22px;
  color: var(--navy-950);
  background: var(--amber-500);
}

.mini-service h3 {
  font-size: 28px;
}

.mini-service p {
  color: #aec6cd;
}

.light {
  margin-top: 17px;
}

.safety-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.safety-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.55) 1px, transparent 0);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, black 80%);
}

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

.light-kicker {
  color: #79cbbb;
}

.safety-copy > p,
.quote-copy > p {
  max-width: 520px;
  margin: 24px 0 0;
  color: #a9c0c7;
  font-size: 15px;
  line-height: 1.7;
}

.safety-list {
  display: grid;
  margin-top: 38px;
  gap: 2px;
}

.safety-list > div {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 40px 1fr;
  gap: 15px;
}

.safety-list > div > span {
  color: var(--amber-500);
  font-family: Georgia, serif;
}

.safety-list p {
  margin: 0;
  color: #9eb5bd;
  font-size: 13px;
  line-height: 1.6;
}

.safety-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 14px;
}

.control-board {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 10, 18, 0.35);
  backdrop-filter: blur(15px);
}

.control-board::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  content: "";
  background: var(--teal-600);
  filter: blur(80px);
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.board-head small,
.board-head strong {
  display: block;
}

.board-head small {
  margin-bottom: 6px;
  color: #7fb6ae;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.board-head strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.board-head > span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #b3c8cd;
  font-size: 11px;
}

.board-score {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  padding: 26px;
  border-radius: 15px;
  background: rgba(4, 21, 31, 0.5);
}

.score-ring {
  display: grid;
  width: 90px;
  height: 90px;
  flex: 0 0 auto;
  place-items: center;
  border: 7px solid rgba(255, 255, 255, 0.09);
  border-top-color: var(--amber-500);
  border-right-color: var(--amber-500);
  border-bottom-color: var(--amber-500);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 29px;
}

.score-ring small {
  margin-left: -24px;
  margin-top: 30px;
  font-size: 11px;
}

.board-score div small,
.board-score div strong {
  display: block;
}

.board-score div small {
  margin-bottom: 5px;
  color: #8ca7af;
  font-size: 10px;
  text-transform: uppercase;
}

.board-score div strong {
  font-size: 15px;
}

.board-score div p {
  margin: 6px 0 0;
  color: #87a4ad;
  font-size: 11px;
}

.board-bars {
  display: grid;
  margin-top: 25px;
  gap: 20px;
}

.board-bars > div > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #aebfc4;
  font-size: 11px;
}

.board-bars b {
  font-weight: 650;
}

.board-bars i {
  display: block;
  overflow: hidden;
  height: 5px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
}

.board-bars em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-500), #7fd8c7);
}

.board-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 14px;
  border: 1px solid rgba(91, 212, 185, 0.14);
  border-radius: 12px;
  background: rgba(12, 118, 101, 0.15);
}

.board-alert > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #80dfcb;
  background: rgba(91, 212, 185, 0.15);
}

.board-alert p {
  margin: 0;
  color: #88aeb0;
  font-size: 10px;
  line-height: 1.5;
}

.board-alert strong {
  display: block;
  color: var(--white);
  font-size: 11px;
}

.process-section {
  background: var(--white);
}

.centered {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.centered .kicker {
  justify-content: center;
}

.centered > p {
  max-width: 540px;
  margin: 19px auto 0;
}

.process-line {
  position: relative;
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(4, 1fr);
}

.process-line::before {
  position: absolute;
  top: 58px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, #ccd7da 0 7px, transparent 7px 14px);
}

.process-line article {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.process-line article > span {
  position: absolute;
  top: -12px;
  left: calc(50% + 25px);
  color: #abb8bd;
  font-family: Georgia, serif;
  font-size: 13px;
}

.process-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 70px;
  height: 70px;
  margin: 22px auto 27px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--white);
  box-shadow: 0 9px 25px rgba(7, 31, 46, 0.06);
  font-family: Georgia, serif;
  font-size: 22px;
}

.process-line h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}

.process-line p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.fleet-section {
  background: #eef2f1;
}

.fleet-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 90px;
}

.fleet-art {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(145deg, #dce8e7, #bacfd0);
}

.fleet-art::before {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(9, 32, 51, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 120px rgba(255, 255, 255, 0.06);
}

.fleet-art > svg {
  position: absolute;
  right: 5px;
  bottom: 15px;
  left: 5px;
  width: calc(100% - 10px);
}

.fleet-card {
  position: relative;
  z-index: 2;
  max-width: 220px;
  padding: 20px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

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

.fleet-card span {
  margin-bottom: 10px;
  color: #75c7b7;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.fleet-card strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.fleet-card p {
  margin: 8px 0 0;
  color: #9db7be;
  font-size: 11px;
  line-height: 1.55;
}

.fleet-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 31px 0 32px;
}

.feature-pills span {
  padding: 10px 13px;
  border: 1px solid #d1dddd;
  border-radius: 30px;
  color: #465f69;
  background: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
}

.quote-section {
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(5, 24, 35, 0.96), rgba(8, 72, 80, 0.93)),
    var(--navy-900);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: 90px;
}

.contact-points {
  display: grid;
  margin-top: 40px;
  gap: 14px;
}

.contact-points a {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-points a > span {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  color: var(--amber-500);
  background: rgba(255, 255, 255, 0.06);
}

.contact-points a > span svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-points small,
.contact-points strong {
  display: block;
}

.contact-points small {
  margin-bottom: 3px;
  color: #80a2a9;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-points strong {
  font-size: 14px;
}

.quote-form {
  padding: 34px;
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 80px rgba(0, 13, 21, 0.35);
}

.form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 27px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}

.form-head > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: #e5f3ef;
  font-family: Georgia, serif;
}

.form-head strong,
.form-head small {
  display: block;
}

.form-head strong {
  margin-bottom: 3px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.form-head small {
  color: var(--muted);
  font-size: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label > span {
  display: block;
  margin-bottom: 7px;
  color: #4c626c;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  color: var(--ink);
  background: #fbfcfc;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  height: 47px;
  padding: 0 13px;
}

textarea {
  min-height: 85px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(18, 165, 138, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: #a0adb2;
}

.full {
  grid-column: 1 / -1;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 18px 0;
  cursor: pointer;
}

.check-row input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--teal-600);
}

.check-row span {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.full-button {
  width: 100%;
}

footer {
  padding: 75px 0 24px;
  color: #9cb2b9;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr;
  gap: 60px;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.65;
}

.footer-grid h4 {
  margin: 8px 0 22px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-link,
.footer-grid > div:not(.footer-brand) > span {
  display: block;
  margin: 0 0 13px;
  color: #8da6ae;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-link {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.footer-grid a:hover,
.footer-link:hover {
  color: var(--amber-500) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #607b84;
  font-size: 10px;
}

.floating-phone {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: flex;
  min-height: 51px;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 8px;
  border-radius: 30px;
  color: var(--white);
  background: var(--teal-600);
  box-shadow: 0 14px 35px rgba(8, 118, 101, 0.3);
}

.floating-phone span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.floating-phone small {
  font-size: 11px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  z-index: 100;
  display: grid;
  inset: 0;
  overflow: auto;
  padding: 28px;
  place-items: center;
  background: rgba(3, 18, 27, 0.72);
  backdrop-filter: blur(9px);
}

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

.modal-card {
  position: relative;
  width: min(100%, 490px);
  padding: 38px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 40px 100px rgba(0, 10, 18, 0.35);
  animation: modal-in 0.25s ease both;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.modal-close,
.icon-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #6e7e85;
  background: #f5f7f7;
  font-size: 21px;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.login-brand {
  margin-bottom: 22px;
}

.login-card h2,
.detail-modal h2 {
  margin: 8px 0 8px;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -1px;
}

.login-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.login-tabs {
  display: grid;
  margin: 25px 0;
  padding: 4px;
  border-radius: 10px;
  background: #eef2f2;
  grid-template-columns: 1fr 1fr;
}

.login-tabs button {
  height: 39px;
  border: 0;
  border-radius: 8px;
  color: #6a7b82;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.login-tabs button.active {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(7, 31, 46, 0.08);
}

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

.password-wrap,
.input-action {
  position: relative;
  display: flex;
}

.password-wrap button {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 47px;
  border: 0;
  color: #85969d;
  background: transparent;
  cursor: pointer;
}

.form-error {
  margin: -2px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--danger);
  background: #fff0f0;
  font-size: 11px;
}

.demo-hint {
  margin-top: 18px;
  padding: 11px;
  border-radius: 8px;
  color: #607178;
  background: #f1f5f4;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.detail-modal {
  width: min(100%, 620px);
}

.detail-grid {
  display: grid;
  margin-top: 24px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.detail-item {
  padding: 15px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: #fafcfc;
}

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

.detail-item small {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.detail-item strong {
  font-size: 13px;
}

.detail-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 20px;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy-900);
}

.detail-total span {
  font-size: 12px;
}

.detail-total strong {
  color: var(--amber-500);
  font-family: Georgia, serif;
  font-size: 27px;
}

/* Portal */
.portal-view {
  display: grid;
  min-height: 100vh;
  background: #f1f4f4;
  grid-template-columns: 255px 1fr;
}

.portal-view[hidden] {
  display: none;
}

.portal-sidebar {
  position: fixed;
  z-index: 30;
  display: flex;
  width: 255px;
  height: 100vh;
  flex-direction: column;
  padding: 27px 20px 22px;
  color: var(--white);
  background: var(--navy-950);
}

.portal-sidebar .brand {
  padding: 0 8px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portal-profile {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 24px 6px 18px;
}

.portal-profile > span {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: var(--navy-950);
  background: var(--amber-500);
  font-family: Georgia, serif;
  font-weight: 700;
}

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

.portal-profile strong {
  overflow: hidden;
  max-width: 155px;
  margin-bottom: 3px;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-profile small {
  color: #76939d;
  font-size: 9px;
}

.portal-sidebar nav {
  display: grid;
  margin-top: 10px;
  gap: 6px;
}

.portal-sidebar nav button {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  color: #83a0aa;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.portal-sidebar nav button span {
  display: grid;
  width: 20px;
  place-items: center;
  color: #6c8b96;
  font-size: 16px;
}

.portal-sidebar nav button.active,
.portal-sidebar nav button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.portal-sidebar nav button.active span {
  color: var(--amber-500);
}

.sidebar-help {
  display: grid;
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  gap: 5px;
}

.sidebar-help > span {
  color: var(--amber-500);
  font-size: 20px;
}

.sidebar-help strong {
  margin-top: 6px;
  font-size: 10px;
}

.sidebar-help small {
  color: #718e98;
  font-size: 9px;
  line-height: 1.45;
}

.sidebar-help a {
  margin-top: 5px;
  color: #b9ccd1;
  font-size: 10px;
  font-weight: 700;
}

.logout-button {
  display: flex;
  min-height: 40px;
  align-items: center;
  margin-top: 13px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: #78959f;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.logout-button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.portal-main {
  min-width: 0;
  margin-left: 255px;
  grid-column: 2;
}

.portal-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  height: 72px;
  align-items: center;
  padding: 0 35px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.portal-topbar > div:first-of-type small,
.portal-topbar > div:first-of-type strong {
  display: block;
}

.portal-topbar > div:first-of-type small {
  margin-bottom: 3px;
  color: var(--teal-700);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.portal-topbar > div:first-of-type strong {
  font-size: 13px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.notification {
  position: relative;
  color: var(--teal-600);
  font-size: 17px;
}

.notification::before {
  position: absolute;
  top: 3px;
  left: -3px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  content: "";
  background: var(--amber-500);
}

.mini-profile {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-900);
  font-family: Georgia, serif;
  cursor: pointer;
}

.portal-menu-toggle {
  display: none;
  margin-right: 14px;
  border: 0;
  background: transparent;
  font-size: 20px;
}

.portal-content {
  width: min(calc(100% - 56px), 1320px);
  margin: 0 auto;
  padding: 45px 0 60px;
}

.portal-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 28px;
}

.portal-title h1 {
  margin: 7px 0 5px;
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1.2px;
}

.portal-title p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.portal-title select {
  width: auto;
  min-width: 150px;
  background: var(--white);
}

.summary-grid {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.summary-card {
  position: relative;
  display: flex;
  min-height: 145px;
  align-items: center;
  gap: 17px;
  overflow: hidden;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.summary-card.featured {
  display: block;
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, var(--navy-900), #0b4b58);
}

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

.summary-card > div:not(.summary-decoration) small,
.summary-card.featured > small {
  margin-bottom: 8px;
  color: #73868d;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
}

.summary-card.featured > small {
  color: #83bcb8;
}

.summary-card > div:not(.summary-decoration) strong {
  margin-bottom: 5px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
}

.summary-card.featured > strong {
  position: relative;
  z-index: 2;
  margin: 11px 0 7px;
  color: var(--amber-500);
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 500;
}

.summary-card > div:not(.summary-decoration) span,
.summary-card.featured > span {
  color: #8a9aa0;
  font-size: 9px;
}

.summary-card.featured > span {
  color: #8baab2;
}

.summary-decoration {
  position: absolute;
  right: -10px;
  bottom: -43px;
  color: rgba(255, 255, 255, 0.05);
  font-family: Georgia, serif;
  font-size: 150px;
}

.summary-icon {
  display: grid !important;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  font-size: 17px;
}

.summary-icon.green {
  color: var(--teal-700);
  background: #e3f4ef;
}

.summary-icon.amber {
  color: #9f6d09;
  background: #fff1d1;
}

.panel-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.panel-head {
  display: flex;
  min-height: 79px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 23px;
  border-bottom: 1px solid var(--line-soft);
}

.panel-head h2 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

th,
td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 10px;
  text-align: left;
}

th {
  color: #7b8c93;
  background: #fafbfb;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

td {
  color: #4b6069;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td strong {
  color: var(--ink);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 30px;
  color: var(--teal-700);
  background: #e4f4ef;
  font-size: 8px;
  font-weight: 850;
}

.status-pill::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: currentColor;
}

.status-pill.draft,
.status-pill.passive {
  color: #7e8588;
  background: #eef1f1;
}

.table-button {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--navy-800);
  background: var(--white);
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.table-button:hover {
  border-color: var(--teal-500);
}

.empty-state {
  padding: 55px 20px;
  color: var(--muted);
  text-align: center;
}

.empty-state span {
  display: block;
  color: #b4c0c4;
  font-size: 30px;
}

.empty-state h3 {
  margin: 13px 0 6px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 500;
}

.empty-state p {
  margin: 0;
  font-size: 10px;
}

.portal-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 17px;
  padding: 16px 19px;
  border: 1px solid #d6e4e1;
  border-radius: 11px;
  background: #eaf4f1;
}

.portal-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-600);
  font-family: Georgia, serif;
}

.portal-note p {
  margin: 0;
  color: #60756f;
  font-size: 9px;
  line-height: 1.5;
}

.portal-note strong {
  display: block;
  color: #34554f;
  font-size: 10px;
}

/* Admin */
.admin-tab {
  display: none;
}

.admin-tab.active {
  display: block;
  animation: tab-in 0.22s ease both;
}

@keyframes tab-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

.form-panel {
  margin-bottom: 18px;
}

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

.admin-form-grid {
  display: grid;
  padding: 23px;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 5px;
}

.input-action input {
  padding-right: 70px;
}

.input-action button {
  position: absolute;
  top: 6px;
  right: 6px;
  height: 35px;
  padding: 0 11px;
  border: 0;
  border-radius: 6px;
  color: var(--teal-700);
  background: #e7f3f0;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.search-box {
  position: relative;
  width: 220px;
}

.search-box span {
  position: absolute;
  top: 14px;
  left: 12px;
  z-index: 1;
  margin: 0;
  color: #91a0a6;
  font-size: 15px;
}

.search-box input {
  height: 41px;
  padding-left: 35px;
  font-size: 10px;
}

.admin-two-column {
  display: grid;
  grid-template-columns: minmax(350px, 0.75fr) minmax(430px, 1.25fr);
  align-items: start;
  gap: 18px;
}

.calculation-box {
  padding: 18px;
  border-radius: 11px;
  color: var(--white);
  background: var(--navy-900);
}

.calculation-box span,
.calculation-box strong,
.calculation-box small {
  display: block;
}

.calculation-box span {
  color: #86aab3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.calculation-box strong {
  margin: 7px 0 4px;
  color: var(--amber-500);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.calculation-box small {
  color: #71909a;
  font-size: 8px;
}

.switch-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  cursor: pointer;
}

.switch-row input {
  width: 32px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--teal-600);
}

.switch-row > span {
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
}

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

.switch-row strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 10px;
}

.switch-row small {
  color: var(--muted);
  font-size: 8px;
}

.statement-cards {
  display: grid;
  max-height: 745px;
  overflow-y: auto;
  padding: 13px;
  gap: 9px;
}

.statement-card {
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: #fbfcfc;
}

.statement-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

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

.statement-card-head strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.statement-card-head small {
  color: var(--muted);
  font-size: 8px;
}

.statement-card-amount {
  color: var(--teal-700);
  font-family: Georgia, serif;
  font-size: 19px;
  white-space: nowrap;
}

.statement-card-meta {
  display: grid;
  margin-top: 14px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.statement-card-meta div {
  padding: 9px;
  border-radius: 7px;
  background: #f0f4f3;
}

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

.statement-card-meta small {
  margin-bottom: 3px;
  color: #87969b;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.statement-card-meta strong {
  font-size: 9px;
}

.statement-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--line-soft);
}

.statement-actions button {
  border: 0;
  color: var(--teal-700);
  background: transparent;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.statement-actions button:hover {
  text-decoration: underline;
}

.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 150;
  display: flex;
  min-width: 300px;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid #cde3dc;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-heavy);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: none;
}

.toast > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-600);
}

.toast p,
.toast strong,
.toast small {
  display: block;
  margin: 0;
}

.toast strong {
  margin-bottom: 3px;
  font-size: 11px;
}

.toast small {
  color: var(--muted);
  font-size: 9px;
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 12px; }
  .header-actions .btn-ghost { padding-inline: 12px; font-size: 11px; }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero h1 { font-size: 58px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .mini-service { min-height: 300px; grid-column: 1 / -1; }
  .safety-layout { gap: 45px; }
  .fleet-layout { gap: 45px; }
  .quote-layout { gap: 50px; }
  .admin-two-column { grid-template-columns: 1fr; }
  .statement-cards { max-height: none; }
}

@media (max-width: 850px) {
  .desktop-nav,
  .desktop-only { display: none; }
  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    place-content: center;
    gap: 5px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
  }
  .menu-toggle span { display: block; width: 21px; height: 2px; background: currentColor; }
  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    border-radius: 12px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-heavy);
  }
  .mobile-nav.open { display: grid; gap: 6px; }
  .mobile-nav > a:not(.btn) { padding: 12px; border-bottom: 1px solid var(--line-soft); font-size: 13px; font-weight: 700; }
  .hero { min-height: 1080px; padding-top: 126px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 470px; }
  .visual-stage { inset: 0 -10px; }
  .service-selector { margin-top: 30px; }
  .selector-card { padding: 27px; gap: 15px; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 20px 0; }
  .trust-grid > div { border-bottom: 1px solid var(--line-soft); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3), .trust-grid > div:nth-child(4) { border-bottom: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .safety-layout, .fleet-layout, .quote-layout { grid-template-columns: 1fr; gap: 50px; }
  .fleet-copy { order: -1; }
  .process-line { grid-template-columns: 1fr 1fr; gap: 50px 0; }
  .process-line::before { display: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .portal-view { display: block; }
  .portal-view[hidden] { display: none; }
  .portal-sidebar { left: -270px; transition: left .25s ease; box-shadow: 20px 0 40px rgba(0,0,0,.18); }
  .portal-sidebar.open { left: 0; }
  .portal-main { margin: 0; }
  .portal-menu-toggle { display: block; }
  .summary-grid { grid-template-columns: 1fr 1fr; }
  .summary-card.featured { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .site-header { height: 68px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 37px; height: 37px; border-radius: 11px; }
  .header-actions .btn-ghost { width: 42px; padding: 0; font-size: 0; }
  .header-actions .btn-ghost svg { width: 19px; }
  .hero { min-height: 1030px; padding-top: 105px; }
  .hero h1 { margin-top: 17px; font-size: 45px; letter-spacing: -2.3px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 17px; }
  .hero-proof { align-items: flex-start; text-align: left; }
  .hero-visual { min-height: 390px; }
  .route-card-top { top: 15px; right: 0; min-width: 220px; }
  .route-card-bottom { right: 2px; bottom: 10px; min-width: 205px; }
  .service-selector { grid-template-columns: 1fr; }
  .selector-card { min-height: 145px; padding: 23px 20px; }
  .selector-card strong { font-size: 24px; }
  .selector-card p { display: none; }
  .trust-grid > div { padding: 16px 12px; }
  .trust-grid strong { font-size: 22px; }
  .section { padding: 80px 0; }
  .section-heading h2, .safety-copy h2, .fleet-copy h2, .quote-copy h2 { font-size: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .mini-service { grid-column: auto; }
  .service-card, .mini-service { min-height: auto; padding: 25px; }
  .service-icon-wrap { margin: 27px 0 22px; }
  .safety-list > div { grid-template-columns: 32px 1fr; }
  .control-board { padding: 20px; }
  .board-score { padding: 18px; gap: 15px; }
  .score-ring { width: 75px; height: 75px; font-size: 24px; }
  .process-line { grid-template-columns: 1fr; gap: 35px; }
  .fleet-art { min-height: 390px; }
  .quote-form { padding: 23px; }
  .form-grid, .admin-form-grid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .floating-phone { width: 51px; padding: 8px; }
  .floating-phone small { display: none; }
  .modal-backdrop { padding: 14px; }
  .modal-card { padding: 29px 22px; }
  .login-card h2, .detail-modal h2 { font-size: 29px; }
  .detail-grid { grid-template-columns: 1fr; }
  .portal-content { width: min(calc(100% - 28px), 1320px); padding-top: 30px; }
  .portal-topbar { height: 64px; padding: 0 16px; }
  .portal-title { align-items: flex-start; flex-direction: column; }
  .portal-title h1 { font-size: 29px; }
  .summary-grid { grid-template-columns: 1fr; }
  .summary-card.featured { grid-column: auto; }
  .panel-head { align-items: flex-start; flex-direction: column; }
  .panel-head .btn { width: 100%; }
  .search-box { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .statement-card-meta { grid-template-columns: 1fr 1fr; }
  .toast { right: 14px; bottom: 14px; left: 14px; min-width: 0; }
}

@media print {
  .portal-sidebar, .portal-topbar, .portal-title, .portal-note, .panel-head .btn, .floating-phone { display: none !important; }
  .portal-main { margin: 0; }
  .portal-content { width: 100%; padding: 0; }
  .summary-card, .panel-card { break-inside: avoid; }
}
