:root {
  --bg: #fffaf0;
  --bg-soft: #fff4cf;
  --surface: #ffffff;
  --surface-dark: #15130f;
  --text: #171510;
  --muted: #6d675c;
  --line: rgba(23, 21, 16, 0.12);
  --primary: #ffc400;
  --primary-dark: #d99d00;
  --accent: #20201d;
  --success: #22c55e;
  --shadow: 0 24px 70px rgba(38, 31, 9, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 196, 0, 0.24), transparent 36rem),
    var(--bg);
  line-height: 1.6;
}

body.is-locked {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

main,
.site-footer {
  filter: blur(0);
  transform: scale(1);
  transform-origin: center;
  transition:
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: filter, transform;
}

body.is-loading .site-header,
body.is-loading main,
body.is-loading .site-footer {
  filter: blur(10px);
  transform: scale(1.01);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.section {
  padding: 92px 0;
}

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

.section--muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 244, 207, 0.88)),
    var(--bg-soft);
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 196, 0, 0.16), transparent 23rem),
    linear-gradient(135deg, rgba(23, 21, 16, 0.94), rgba(39, 35, 26, 0.92));
  transition:
    opacity 450ms ease,
    visibility 450ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader[hidden] {
  display: none;
}

.loader__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(72vw, 520px);
  aspect-ratio: 1;
  padding: clamp(28px, 6vw, 62px);
  border-radius: 50%;
  isolation: isolate;
}

.loader__mark::before,
.loader__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.loader__mark::before {
  padding: 5px;
  background: conic-gradient(
    from -90deg,
    var(--primary) 0deg,
    rgba(255, 196, 0, 0.72) 16deg,
    rgba(255, 196, 0, 0.28) 38deg,
    rgba(255, 196, 0, 0.08) 62deg,
    rgba(255, 196, 0, 0) 86deg,
    rgba(255, 196, 0, 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: loaderRing 1250ms linear infinite;
}

.loader__mark::after {
  inset: 0;
  background: conic-gradient(
    from -90deg,
    rgba(255, 196, 0, 0.42) 0deg,
    rgba(255, 196, 0, 0.22) 22deg,
    rgba(255, 196, 0, 0.07) 54deg,
    rgba(255, 196, 0, 0) 88deg,
    rgba(255, 196, 0, 0) 360deg
  );
  filter: blur(12px);
  opacity: 0.62;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 10px;
  animation: loaderRing 1250ms linear infinite;
  z-index: -1;
}

.loader__mark img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

@keyframes loaderRing {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  filter: blur(0);
  transform: scale(1);
  transform-origin: center;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: filter, transform;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.9);
  border-color: var(--line);
  box-shadow: 0 16px 45px rgba(30, 24, 6, 0.08);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--surface-dark);
  background:
    linear-gradient(135deg, var(--primary), #ffe27a);
  box-shadow: 0 12px 28px rgba(217, 157, 0, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 196, 0, 0.18);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: var(--surface-dark);
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(217, 157, 0, 0.22);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(30, 24, 6, 0.1);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 86px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: 12%;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.18);
  filter: blur(20px);
  z-index: -1;
}

.hero__grid {
  display: grid;
  justify-items: start;
  text-align: left;
}

.hero__content {
  width: 100%;
  max-width: 920px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 6vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero h1 {
  max-width: 900px;
  hyphens: auto;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.hero__content p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.hero__actions,
.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__actions {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button--primary {
  color: var(--surface-dark);
  background: var(--primary);
  box-shadow: 0 18px 34px rgba(217, 157, 0, 0.26);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line);
}

.payment-strip {
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: #f5f5f5;
  backdrop-filter: blur(16px);
}

.payment-strip__inner {
  display: block;
}

.payment-strip span {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.payment-strip__cards {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
}

.payment-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.payment-strip li {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 0.9rem;
}

.local-area {
  padding-top: 58px;
}

.local-area__card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 207, 0.86)),
    radial-gradient(circle at 88% 12%, rgba(255, 196, 0, 0.2), transparent 18rem);
  box-shadow: var(--shadow);
}

.local-area__card h2 {
  max-width: 760px;
}

.local-area__card p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.local-area__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.local-area__chips span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(38, 31, 9, 0.06);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: end;
}

.section-heading--left {
  margin-bottom: 0;
}

.cards,
.fleet-grid,
.pricing-grid,
.tariff-board {
  display: grid;
  gap: 18px;
  min-width: 0;
}

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

.service-card,
.pricing-card,
.tariff-card,
.fleet-card,
.review-card,
.legal-card,
.calculator,
.reviews-summary,
.cta-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(30, 24, 6, 0.08);
}

.service-card,
.pricing-card,
.tariff-card,
.fleet-card,
.review-card {
  border-radius: var(--radius-lg);
}

.service-card {
  min-height: 205px;
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(30, 24, 6, 0.12);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--surface-dark);
  background: rgba(255, 196, 0, 0.24);
  font-weight: 900;
  font-size: 1.2rem;
}

.card-icon i {
  line-height: 1;
}

.service-card p,
.pricing-card p,
.fleet-card p,
.review-card p {
  color: var(--muted);
}

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

.pricing-card {
  padding: 26px;
}

.pricing-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.pricing-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.05em;
}

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

.tariff-card {
  padding: 22px;
}

.tariff-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.tariff-table-wrap {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
}

.tariff-table {
  width: 100%;
  min-width: 360px;
  border-collapse: collapse;
}

.tariff-table th,
.tariff-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.tariff-table th {
  color: var(--text);
  font-weight: 900;
}

.tariff-table td {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.tariff-table tbody tr:nth-child(odd) {
  background: rgba(255, 196, 0, 0.08);
}

.tariff-table tbody tr:first-child td:first-child {
  border-top-left-radius: 14px;
}

.tariff-table tbody tr:first-child td:last-child {
  border-top-right-radius: 14px;
}

.tariff-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 14px;
}

.tariff-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 14px;
}

.calculator-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 196, 0, 0.2), transparent 26rem),
    var(--surface-dark);
  color: #fff;
}

.calculator-section .eyebrow {
  color: var(--primary);
}

.calculator-section p {
  color: rgba(255, 255, 255, 0.72);
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: start;
}

.calculator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.calculator label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 0.95rem;
}

.calculator label:first-child,
.calculator__result {
  grid-column: 1 / -1;
}

.calculator input,
.calculator select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.calculator select option {
  color: var(--text);
}

.calculator input:focus,
.calculator select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.15);
}

.calculator__result {
  padding: 22px;
  border-radius: var(--radius-lg);
  color: var(--surface-dark);
  background: linear-gradient(135deg, var(--primary), #ffe68c);
}

.calculator__result span,
.calculator__result strong,
.calculator__result small {
  display: block;
}

.calculator__result span,
.calculator__result small {
  font-weight: 800;
  opacity: 0.76;
}

.calculator__result strong {
  margin: 4px 0;
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

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

.fleet-card {
  padding: 18px;
}

.fleet-card h3,
.fleet-card p,
.fleet-card ul {
  padding-inline: 8px;
}

.fleet-card ul {
  display: grid;
  gap: 8px;
  padding-left: 28px;
  margin: 20px 0 8px;
  color: var(--muted);
  font-weight: 700;
}

.fleet-card__visual {
  height: 190px;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 74%, rgba(21, 19, 15, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 196, 0, 0.22), rgba(255, 255, 255, 0.78));
  position: relative;
  overflow: hidden;
}

.fleet-card__visual::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 22px;
  height: 18px;
  border-radius: 50%;
  background: rgba(21, 19, 15, 0.16);
  filter: blur(10px);
}

.fleet-card__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 18px 18px rgba(21, 19, 15, 0.18));
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.reviews-summary {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.rating-box {
  margin: 22px 0;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 196, 0, 0.16);
}

.rating-box strong {
  display: block;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -0.07em;
}

.rating-box span {
  display: block;
  margin: 8px 0;
  color: var(--primary-dark);
  letter-spacing: 0.08em;
}

.rating-box small {
  color: var(--muted);
}

.rating-box--google strong {
  font-size: clamp(3rem, 7vw, 4.6rem);
}

.rating-distribution {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.rating-distribution span {
  display: block;
  margin: 0;
  color: var(--muted);
  letter-spacing: 0;
}

.rating-distribution i {
  position: relative;
  height: 9px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(23, 21, 16, 0.18);
  overflow: hidden;
}

.rating-distribution i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: var(--primary);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reviews-note {
  margin: 18px 0 0;
  color: var(--muted);
}

.review-cards {
  display: grid;
  gap: 18px;
}

.review-cards--manual {
  align-content: start;
}

.review-card {
  padding: 22px;
}

.review-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.review-card span {
  color: var(--primary-dark);
  white-space: nowrap;
}

.review-card small {
  color: var(--muted);
  font-weight: 800;
}

.reviews-privacy-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 196, 0, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.review-card--empty {
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 244, 207, 0.7)),
    var(--surface);
}

.cta-section {
  padding: 0 0 92px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.92), rgba(255, 229, 131, 0.9)),
    var(--primary);
}

.cta-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
}

.cta-card .eyebrow {
  color: rgba(21, 19, 15, 0.72);
}

.cta-card .button--ghost {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(21, 19, 15, 0.14);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--surface-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding: 60px 0 36px;
}

.brand--footer {
  color: #fff;
}

.site-footer p {
  max-width: 320px;
  margin-top: 18px;
}

.site-footer h3 {
  color: #fff;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-admin-link {
  margin-left: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-heart {
  color: #ff4d4d;
  font-weight: 900;
}

.footer-admin-link::before {
  content: "·";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom--single span:last-child {
  display: inline-flex;
  gap: 16px;
}

.legal-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 196, 0, 0.2), transparent 32rem),
    var(--bg);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.9fr);
  gap: 34px;
  align-items: start;
}

.legal-layout > * {
  min-width: 0;
}

.legal-sidebar {
  position: sticky;
  top: 112px;
}

.legal-sidebar h1 {
  max-width: 360px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4.2vw, 3.85rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.legal-sidebar p {
  max-width: 340px;
  color: var(--muted);
  font-size: 0.98rem;
}

.legal-card {
  max-width: 860px;
  min-width: 0;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 26px;
  overflow-wrap: break-word;
}

.legal-card h2 {
  margin: 34px 0 12px;
  padding-top: 4px;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  max-width: 74ch;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: 7px;
  max-width: 74ch;
  margin: 0 0 22px;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-card li {
  padding-left: 4px;
}

.legal-card h3 {
  margin: 26px 0 10px;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.legal-card strong {
  color: var(--text);
}

.legal-toc {
  padding: 18px 20px 18px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 196, 0, 0.08);
}

.legal-card a {
  color: var(--primary-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 1020px) {
  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .hero__grid,
  .local-area__card,
  .calculator-grid,
  .reviews-grid,
  .legal-layout,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .cards--services,
  .pricing-grid,
  .tariff-board,
  .fleet-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-sidebar {
    position: static;
  }

  .legal-card {
    max-width: none;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .local-area__chips {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 84px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .navbar {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 84px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
  }

  .cards--services,
  .pricing-grid,
  .tariff-board,
  .fleet-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .payment-strip__inner {
    display: block;
  }

  .payment-strip__cards {
    width: 100%;
    max-height: 56px;
    object-position: center;
  }

  .legal-layout {
    gap: 24px;
  }

  .legal-sidebar h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .legal-card {
    border-radius: 22px;
  }

  .legal-card h2 {
    margin-top: 28px;
  }

  .review-card div,
  .footer-bottom {
    flex-direction: column;
  }

}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.25rem, 10.8vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .hero__content {
    max-width: none;
  }

  .hero__actions,
  .reviews-actions,
  .cta-card__actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

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

  .tariff-table {
    min-width: 292px;
  }

  .tariff-table th,
  .tariff-table td {
    padding: 10px 8px;
    font-size: 0.88rem;
  }

  .service-card,
  .pricing-card,
  .tariff-card,
  .reviews-summary,
  .review-card,
  .calculator,
  .legal-card,
  .cta-card {
    padding: 22px;
  }

  .legal-card p,
  .legal-card ul,
  .legal-card ol {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .legal-toc {
    padding: 16px 16px 16px 34px;
  }

}

@media (max-width: 380px) {
  .brand small {
    display: none;
  }

  .brand__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 2.55rem);
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .local-area__chips span {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
}

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