:root {
  --bg: #ffffff;
  --page: #f7fafb;
  --panel: #ffffff;
  --panel-soft: #fbfdfd;
  --text: #161d24;
  --muted: #70808a;
  --muted-strong: #56646d;
  --line: rgba(20, 34, 42, 0.09);
  --line-strong: rgba(20, 34, 42, 0.14);
  --accent: #0d807c;
  --accent-strong: #076864;
  --accent-soft: #e8f7f5;
  --success: #46a574;
  --warning: #f1b14b;
  --danger: #df7066;
  --shadow-sm: 0 12px 28px rgba(15, 37, 46, 0.05);
  --shadow-md: 0 24px 60px rgba(15, 37, 46, 0.08);
  --shadow-lg: 0 36px 80px rgba(12, 29, 36, 0.1);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(13, 128, 124, 0.05), transparent 24%),
    radial-gradient(circle at top right, rgba(31, 89, 141, 0.04), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(13, 128, 124, 0.12);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0d807c 0%, #0b6c68 100%);
}

.button.secondary {
  color: var(--accent-strong);
  background: #ffffff;
  border-color: var(--line-strong);
}

.button.ghost {
  min-height: 40px;
  padding: 0 16px;
  color: var(--text);
  background: #ffffff;
  border-color: rgba(20, 34, 42, 0.08);
}

.button.outline-light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.button-sm {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
}

.button-xs {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 0.95rem;
}

.button-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(20, 34, 42, 0.05);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
}

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

.brand--araf {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--accent);
}

.brand-text {
  line-height: 1;
}

.brand-mark svg,
.metric-icon svg,
.route-card-icon svg,
.benefit-icon svg,
.tender-route-icon svg,
.section-link svg {
  width: 20px;
  height: 20px;
}

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

.metric-icon svg,
.route-card-icon svg,
.benefit-icon svg,
.tender-route-icon svg,
.section-link svg,
.mini-card-head svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted-strong);
  font-size: 0.98rem;
}

.site-nav a:hover,
.header-link:hover,
.footer-column a:hover,
.footer-bottom-links a:hover,
.section-link:hover {
  color: var(--accent-strong);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.header-link {
  color: var(--text);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.home-page {
  padding-bottom: 48px;
}

.hero-section {
  padding: 26px 0 0;
}

.hero-surface {
  padding: 42px 40px 30px;
  border: 1px solid rgba(20, 34, 42, 0.06);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 26%, rgba(13, 128, 124, 0.06), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(53, 95, 140, 0.06), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: var(--shadow-lg);
}

.hero-columns,
.metric-strip,
.search-grid,
.route-grid,
.benefits-grid,
.footer-grid,
.list-grid,
.cards-grid,
.feature-grid,
.corridor-grid,
.admin-list-grid {
  display: grid;
  gap: 18px;
}

.hero-columns {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 28px;
}

.hero-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-heading h1,
.section-top h2,
.auth-card h1,
.auth-wide h1,
.cta-banner h2,
.section-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 4.35vw, 4.35rem);
}

.hero-description,
.page-heading p,
.section-top p,
.route-card p,
.benefit-card p,
.auth-card p,
.section-card p,
.feature-card p,
.market-card p,
.list-card p,
.stack-item,
.footer-brand-block p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-description {
  max-width: 500px;
  margin: 18px 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.metric-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.metric-icon,
.route-card-icon,
.benefit-icon,
.tender-route-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(13, 128, 124, 0.08);
}

.metric-card strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.96rem;
}

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

.hero-truck-panel {
  position: relative;
  min-height: 520px;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.46), transparent 24%),
    linear-gradient(135deg, #dbe9ef 0%, #fcf9f4 52%, #f1e4d7 100%);
}

.hero-truck-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.94));
  pointer-events: none;
}

.hero-truck-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.06) 38%, rgba(255, 255, 255, 0) 58%);
  z-index: 1;
}

.hero-truck-image {
  position: absolute;
  top: 8px;
  right: -14px;
  width: min(99%, 760px);
  max-width: none;
  z-index: 0;
}

.hero-map-card {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  width: min(39%, 292px);
  min-width: 266px;
  padding: 16px;
  border: 1px solid rgba(20, 34, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(12, 29, 36, 0.12);
}

.mini-card-head strong {
  display: block;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.mini-card-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.mini-map {
  width: 100%;
  height: auto;
  margin: 10px 0 14px;
}

.mini-map-outline {
  fill: rgba(20, 34, 42, 0.03);
  stroke: rgba(20, 34, 42, 0.12);
  stroke-width: 3;
}

.mini-map-route {
  fill: none;
  stroke: #3ec8c2;
  stroke-width: 5;
  stroke-linecap: round;
}

.mini-map-city {
  fill: var(--accent);
  stroke: #ffffff;
  stroke-width: 3;
}

.mini-map-label {
  fill: var(--muted-strong);
  font-size: 16px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

.search-card {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.search-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.search-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  background: #f7fafb;
  color: var(--muted-strong);
  font-weight: 700;
  border: 1px solid transparent;
}

.search-tab--active {
  background: #ffffff;
  color: var(--accent-strong);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.search-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: end;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--muted);
  font-size: 0.92rem;
}

.field input,
.field select,
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-grid textarea {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(13, 128, 124, 0.4);
  box-shadow: 0 0 0 4px rgba(13, 128, 124, 0.1);
}

.search-submit {
  min-width: 122px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.chip-label {
  color: var(--muted);
  font-size: 0.94rem;
}

.quick-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f5f9fa;
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.quick-chip:hover {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.landing-section {
  padding: 34px 0 0;
}

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

.section-top h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.section-top p {
  margin: 10px 0 0;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

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

.route-card,
.benefit-card,
.section-card,
.list-card,
.market-card,
.feature-card,
.auth-card,
.auth-wide,
.contact-card,
.stack-item,
.final-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.route-card,
.benefit-card,
.section-card,
.list-card,
.market-card,
.feature-card,
.auth-card,
.auth-wide,
.contact-card,
.stack-item,
.final-box {
  padding: 22px;
}

.route-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-card strong,
.benefit-card strong,
.step-item strong,
.tender-route-cell strong,
.tender-date-cell strong,
.tender-bid-cell strong,
.tender-budget-cell strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.03em;
}

.route-price {
  margin-top: 20px;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent-strong);
}

.route-card p {
  margin: 10px 0 10px;
}

.route-count {
  font-weight: 700;
}

.sparkline {
  width: 100%;
  height: auto;
  margin: 16px 0 10px;
}

.sparkline polyline {
  fill: none;
  stroke: #55ccc6;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sparkline-fill {
  fill: rgba(85, 204, 198, 0.08);
}

.route-change {
  font-size: 0.9rem;
  font-weight: 700;
}

.route-change--positive {
  color: var(--success);
}

.route-change--negative {
  color: var(--danger);
}

.steps-panel {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.step-item {
  flex: 1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-index {
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}

.step-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.step-arrow {
  display: grid;
  place-items: center;
  color: #cad5d7;
  font-size: 1.5rem;
}

.landing-panel,
.benefits-panel {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.benefits-panel {
  padding: 26px;
  background: linear-gradient(180deg, #f8fcfd 0%, #f6fafb 100%);
}

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
}

.benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.9);
}

.benefit-card p {
  margin: 8px 0 0;
}

.tender-table {
  width: 100%;
}

.tender-table-head,
.tender-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(115px, 0.8fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr) auto;
  gap: 18px;
  align-items: center;
}

.tender-table-head {
  padding: 18px 28px;
  color: var(--muted);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}

.tender-row {
  padding: 18px 28px;
  border-bottom: 1px solid rgba(20, 34, 42, 0.06);
  transition: background 160ms ease;
}

.tender-row:last-child {
  border-bottom: none;
}

.tender-row:hover {
  background: #fbfefe;
}

.tender-route-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tender-route-cell span,
.tender-date-cell span,
.tender-bid-cell span,
.tender-budget-cell span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.tender-date-cell,
.tender-bid-cell,
.tender-budget-cell {
  min-width: 0;
}

.tender-action-cell {
  justify-self: end;
}

.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0d807c 0%, #0b6266 62%, #134249 100%);
  color: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(34%, 380px);
  background:
    linear-gradient(90deg, rgba(7, 43, 51, 0) 0%, rgba(7, 43, 51, 0.56) 40%, rgba(7, 43, 51, 0.86) 100%),
    url("../images/hero-truck-only.png") center right / cover no-repeat;
  opacity: 0.74;
}

.cta-banner-copy,
.cta-banner-actions {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.cta-banner p {
  max-width: 520px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding: 34px 0 44px;
}

.footer-surface {
  padding-top: 8px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.7fr) repeat(4, minmax(0, 1fr));
  align-items: start;
}

.footer-brand-block p {
  max-width: 320px;
  margin: 18px 0 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f8f9;
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-shell {
  padding: 42px 0 64px;
}

.page-heading {
  margin-bottom: 24px;
}

.page-heading h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.page-heading p {
  margin: 12px 0 0;
}

.section-card,
.list-card,
.market-card,
.feature-card,
.auth-card,
.auth-wide,
.contact-card,
.stack-item,
.final-box {
  padding: 24px;
}

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

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

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.split-grid-tight {
  grid-template-columns: 0.95fr 1.05fr;
}

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

.helper-line,
.form-error {
  margin-top: 16px;
}

.form-error {
  color: var(--danger);
}

.auth-shell {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  padding: 48px 16px;
}

.auth-card {
  width: min(760px, 100%);
}

.auth-large {
  width: min(920px, 100%);
}

.auth-wide {
  width: min(980px, 100%);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.compact-form {
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f4f7f8;
  color: var(--muted-strong);
  font-size: 0.83rem;
  font-weight: 700;
}

.pill-success {
  background: rgba(13, 128, 124, 0.12);
  color: var(--accent-strong);
}

.section-card.center-card {
  text-align: center;
}

.list-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.market-route {
  color: var(--accent-strong);
  font-weight: 700;
}

.feature-card .button,
.market-card .button {
  margin-top: 12px;
}

.final-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

@media (max-width: 1220px) {
  .route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1080px) {
  .hero-columns,
  .split-grid,
  .final-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-truck-image {
    width: min(92%, 640px);
  }

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

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

  .steps-panel {
    flex-wrap: wrap;
  }

  .step-arrow {
    display: none;
  }

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

@media (max-width: 920px) {
  .header-shell {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 84px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .site-nav a {
    padding: 8px 0;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .route-grid,
  .list-grid,
  .cards-grid,
  .feature-grid,
  .admin-list-grid {
    grid-template-columns: 1fr;
  }

  .tender-table-head {
    display: none;
  }

  .tender-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tender-action-cell {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-surface {
    padding: 28px 18px 22px;
    border-radius: 28px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .hero-truck-panel,
  .hero-visual {
    min-height: 360px;
  }

  .hero-truck-image {
    width: 100%;
    top: 38px;
    right: -24px;
  }

  .hero-map-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    margin: 220px 12px 12px;
  }

  .metric-strip,
  .search-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .search-tabs,
  .hero-actions,
  .cta-banner-actions,
  .footer-bottom,
  .footer-bottom-links,
  .section-top {
    flex-direction: column;
    align-items: stretch;
  }

  .search-tab {
    width: 100%;
  }

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

  .cta-banner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .cta-banner::after {
    opacity: 0.22;
    width: 100%;
  }

  .footer-grid {
    gap: 22px;
  }
}
