:root {
  --yellow: #f2cb16;
  --yellow-light: #fff3a6;
  --yellow-pale: #fff9d9;
  --green: #719c24;
  --green-dark: #4f7417;
  --green-deep: #31480f;
  --green-pale: #eef5df;
  --ink: #192018;
  --ink-soft: #303a2d;
  --muted: #667062;
  --line: #d9dfd1;
  --paper: #ffffff;
  --surface: #f7f8f2;
  --surface-dark: #1d251b;
  --danger: #a72828;
  --success: #3d7016;
  --warning: #755d00;
  --shadow-sm: 0 10px 28px rgba(24, 35, 20, 0.08);
  --shadow-md: 0 24px 60px rgba(24, 35, 20, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --header-height: 82px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 3.8vw, 4rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 2.55vw, 2.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.12rem, 1.35vw, 1.35rem);
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.section {
  padding-block: 104px;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 203, 22, 0.14), transparent 28%),
    var(--surface);
}

.section-dark {
  color: #eef4e7;
  background: var(--surface-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.eyebrow-green {
  color: var(--green-dark);
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  line-height: 1.62;
}

.small-note,
.legal-note {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

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

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

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 14px 34px rgba(242, 203, 22, 0.22);
}

.button-primary:hover {
  background: #ffdd2f;
  box-shadow: 0 18px 42px rgba(242, 203, 22, 0.3);
}

.button-secondary {
  color: #ffffff;
  background: var(--green-dark);
}

.button-secondary:hover {
  background: var(--green-deep);
}

.button-ghost {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.button-ghost:hover {
  color: var(--ink);
  background: #ffffff;
  border-color: #ffffff;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.92rem;
}

.button-large {
  min-height: 58px;
  padding: 16px 28px;
}

.button-full {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 223, 209, 0.86);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(24, 35, 20, 0.1);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 88px;
  height: 66px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.75rem;
}

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

.site-nav a {
  position: relative;
  padding-block: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

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

.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: right;
}

.header-phone span {
  color: var(--muted);
  font-size: 0.7rem;
}

.header-phone strong {
  margin-top: 4px;
  font-size: 0.93rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: var(--green-pale);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before {
  top: -7px;
}

.menu-toggle-lines::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-block: 88px 94px;
}

.hero::before {
  position: absolute;
  top: -240px;
  right: -160px;
  width: 700px;
  height: 700px;
  content: "";
  background: radial-gradient(circle, rgba(113, 156, 36, 0.34), transparent 68%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  bottom: -210px;
  left: -170px;
  width: 500px;
  height: 500px;
  content: "";
  background: radial-gradient(circle, rgba(242, 203, 22, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 15%, transparent 95%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
  gap: clamp(36px, 5vw, 76px);
}

.hero-content h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 4vw, 3.65rem);
}

.hero-content h1 span {
  display: block;
  color: var(--yellow);
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: #cbd6c7;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.62;
}

.slogan-card {
  display: flex;
  max-width: 680px;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 17px 20px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), #ffe75b);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.slogan-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--green-dark);
  border-radius: 50%;
  font-weight: 900;
}

.slogan-card div {
  display: flex;
  flex-direction: column;
}

.slogan-card strong {
  font-size: 1.08rem;
}

.slogan-card span:last-child {
  margin-top: 3px;
  color: #3d431f;
  font-size: 0.9rem;
}

.hero-points {
  display: grid;
  max-width: 720px;
  margin: 0 0 28px;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: #edf4e9;
  font-weight: 700;
}

.hero-points li::before {
  position: absolute;
  top: 0.44em;
  left: 0;
  width: 15px;
  height: 15px;
  content: "";
  background: var(--green);
  border: 4px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(113, 156, 36, 0.16);
}

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

.hero-brand-panel {
  position: relative;
  display: flex;
  min-height: 470px;
  align-items: center;
  justify-content: center;
  padding: 58px 34px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 43%, rgba(242, 203, 22, 0.18), transparent 52%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  isolation: isolate;
  flex-direction: column;
}

.hero-brand-panel::before,
.hero-brand-panel::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero-brand-panel::before {
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(242, 203, 22, 0.18);
  transform: translate(-50%, -48%);
}

.hero-brand-panel::after {
  top: -160px;
  right: -110px;
  width: 330px;
  height: 330px;
  background: rgba(113, 156, 36, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-brand-label {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 8px 13px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-logo-frame {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 390px);
  min-height: 290px;
  place-items: center;
}

.hero-logo-frame::before {
  position: absolute;
  inset: 11% 8%;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
  border-radius: 50%;
  filter: blur(4px);
}

.hero-main-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.34));
}

.hero-brand-facts {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: -4px;
}

.hero-brand-facts span {
  padding: 7px 11px;
  color: #ffffff;
  background: rgba(15, 24, 14, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.hero-brand-caption {
  position: relative;
  z-index: 2;
  margin: 13px 0 0;
  color: #dbe7d6;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
  text-align: center;
}

.quick-form {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin-left: auto;
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.hero-quick-form {
  width: 100%;
  max-width: none;
  align-items: end;
  margin: 2px 0 0;
  padding: 22px 24px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.9fr) minmax(210px, 0.78fr);
  gap: 22px;
}

.hero-quick-form .form-heading {
  margin: 0;
}

.hero-quick-form .form-heading h2 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.hero-quick-form .quick-form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-quick-form .field-wide {
  grid-column: auto;
}

.quick-form-action {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-quick-form .consent {
  margin: 0 0 9px;
}

.hero-quick-form .form-status {
  min-height: 1.25em;
  margin-top: 6px;
}

.quick-form h2 {
  color: var(--ink);
}

.form-heading {
  margin-bottom: 20px;
}

.form-kicker {
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 6px 0 8px;
  font-size: 1.55rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.field > span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
}

.field-wide {
  grid-column: 1 / -1;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #98a092;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(113, 156, 36, 0.13);
}

.field input.is-invalid,
.field textarea.is-invalid,
.field select.is-invalid {
  background: #fff8f8;
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(167, 40, 40, 0.1);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--green-dark);
}

.consent a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent.is-invalid {
  color: var(--danger);
}

.form-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.is-success {
  color: var(--success);
}

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

.form-status.is-warning {
  color: var(--warning);
}

/* Route ticker */
.route-ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border-block: 1px solid rgba(25, 32, 24, 0.1);
}

.route-ticker__viewport {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.route-ticker__viewport::before,
.route-ticker__viewport::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(22px, 4vw, 76px);
  content: "";
  pointer-events: none;
}

.route-ticker__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--yellow) 10%, rgba(242, 203, 22, 0));
}

.route-ticker__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--yellow) 10%, rgba(242, 203, 22, 0));
}

.route-ticker__track {
  display: flex;
  width: max-content;
  flex: 0 0 auto;
  will-change: transform;
  animation: routeTicker 110s linear infinite;
  user-select: none;
}

.route-ticker__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding-right: 38px;
  gap: 38px;
}

.route-city {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #252909;
  font-size: clamp(0.96rem, 1.2vw, 1.12rem);
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.route-city::after {
  position: absolute;
  right: -22px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--green-dark);
  border-radius: 50%;
  opacity: 0.65;
}

@keyframes routeTicker {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Generic section heading */
.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.heading-row {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 48px;
}

.heading-row h2,
.centered-heading h2 {
  margin-bottom: 0;
}

.heading-row > p,
.centered-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.centered-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

/* Services */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::after {
  position: absolute;
  right: -44px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  content: "";
  background: var(--green-pale);
  border-radius: 50%;
  transition: transform 240ms ease, background var(--transition);
}

.service-card:hover {
  border-color: rgba(113, 156, 36, 0.6);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card:hover::after {
  background: var(--yellow-light);
  transform: scale(1.18);
}

.card-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: #ffffff;
  background: var(--green-dark);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 900;
}

.service-card h3,
.service-card p,
.service-card a {
  position: relative;
  z-index: 1;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 800;
}

.service-card a span {
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.service-card a:hover span {
  transform: translateX(4px);
}

/* Business */
.business-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: clamp(42px, 7vw, 88px);
}

.business-copy {
  align-self: center;
}

.check-list {
  display: grid;
  margin: 30px 0 34px;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--ink-soft);
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  content: "✓";
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.business-panel {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    var(--green-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.business-panel::before,
.business-panel::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.business-panel::before {
  top: -80px;
  right: -40px;
  width: 250px;
  height: 250px;
}

.business-panel::after {
  right: 80px;
  bottom: -130px;
  width: 320px;
  height: 320px;
}

.panel-label,
.client-tags,
.business-panel .legal-note {
  position: relative;
  z-index: 1;
}

.panel-label {
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-tags span {
  padding: 11px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
}

.business-panel .legal-note {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
}

/* Fleet */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.fleet-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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


.fleet-gallery {
  background: #e9eee4;
  border-bottom: 1px solid var(--line);
}

.fleet-gallery-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(242, 203, 22, 0.13), rgba(113, 156, 36, 0.12)),
    #edf1e8;
}

.fleet-slide {
  display: none;
  width: 100%;
  height: 100%;
  margin: 0;
}

.fleet-slide.is-active {
  display: block;
  animation: fleet-photo-in 220ms ease;
}

.fleet-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.fleet-slide figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 7px 11px;
  overflow: hidden;
  color: #ffffff;
  background: rgba(24, 34, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.gallery-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  color: #ffffff;
  background: rgba(24, 34, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  line-height: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
}

.gallery-arrow-icon {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.gallery-prev .gallery-arrow-icon {
  transform: translateX(-1px);
}

.gallery-next .gallery-arrow-icon {
  transform: translateX(1px);
}

.gallery-arrow:hover {
  background: var(--green-dark);
  transform: translateY(-50%) scale(1.05);
}

.gallery-arrow:focus-visible,
.fleet-gallery-thumbs button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.gallery-counter {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(24, 34, 17, 0.78);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.fleet-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  background: #ffffff;
}

.fleet-gallery-thumbs.two-thumbs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fleet-gallery-thumbs button {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 6px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.fleet-gallery-thumbs button:hover,
.fleet-gallery-thumbs button.is-active {
  color: var(--green-dark);
  background: var(--yellow-pale);
  border-color: #d6c140;
}

.fleet-gallery-thumbs img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  border-radius: 7px;
}

.fleet-gallery-single .fleet-gallery-stage {
  border-bottom: 0;
}

.fleet-volume-note {
  margin: 18px 2px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

@keyframes fleet-photo-in {
  from {
    opacity: 0.45;
    transform: scale(1.01);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fleet-image {
  position: relative;
  min-height: 225px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(242, 203, 22, 0.18), rgba(113, 156, 36, 0.16)),
    var(--surface);
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.025);
}

.fleet-badge {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(49, 72, 15, 0.92);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.fleet-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.fleet-heading {
  min-height: 72px;
}

.fleet-heading h3 {
  margin-bottom: 5px;
}

.fleet-heading span {
  color: var(--muted);
  font-size: 0.8rem;
}

.spec-list {
  margin: 18px 0 22px;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  padding-block: 9px;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: 0.8rem;
}

.spec-list dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: right;
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 850;
}

.text-link span {
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(4px);
}

.fleet-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--yellow-pale);
  border: 1px solid #ead870;
  border-radius: 16px;
}

.fleet-note div {
  display: flex;
  flex-direction: column;
}

.fleet-note strong {
  font-size: 1.06rem;
}

.fleet-note span {
  margin-top: 3px;
  color: #676122;
  font-size: 0.88rem;
}


.experience-tag {
  display: inline-flex;
  width: fit-content;
  margin: 4px 0 18px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.price-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 24px 0 28px;
  padding: 18px 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid var(--yellow);
  border-radius: 14px;
}

.price-note strong {
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-note span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Responsibility */
.responsibility {
  position: relative;
  overflow: hidden;
}

.responsibility::before {
  position: absolute;
  top: -330px;
  left: 50%;
  width: 780px;
  height: 780px;
  content: "";
  background: radial-gradient(circle, rgba(113, 156, 36, 0.24), transparent 67%);
  transform: translateX(-20%);
  pointer-events: none;
}

.responsibility > .container {
  position: relative;
}

.responsibility-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 46px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 7vw, 88px);
}

.responsibility-title h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.responsibility-intro .experience-tag {
  margin-top: 0;
}

.responsibility-intro .lead {
  margin-bottom: 14px;
  color: #e2ebdd;
}

.responsibility-intro > p:not(.experience-tag):not(.lead) {
  margin-bottom: 0;
  color: #b7c4b2;
}

.responsibility-media {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #111810;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(18px, 2.4vw, 30px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
  aspect-ratio: 1672 / 941;
  isolation: isolate;
}

.responsibility-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 58%, rgba(12, 18, 11, 0.64) 100%),
    linear-gradient(90deg, rgba(20, 30, 18, 0.12), transparent 34%);
  pointer-events: none;
}

.responsibility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.weather-labels {
  position: absolute;
  right: auto;
  bottom: clamp(16px, 2.4vw, 28px);
  left: clamp(16px, 2.4vw, 28px);
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.weather-labels span {
  padding: 8px 13px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-list {
  display: grid;
  margin-block: 32px;
  gap: 12px;
}

.responsibility-features {
  margin-block: clamp(24px, 3vw, 34px) 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-list article {
  display: grid;
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  gap: 7px;
}

.feature-list strong {
  color: var(--yellow);
}

.feature-list span {
  color: #c7d2c3;
  font-size: 0.9rem;
}

.responsibility-quote {
  max-width: 920px;
  margin: clamp(20px, 3vw, 30px) auto 0;
  padding: 20px 24px;
  color: #ffffff;
  background: rgba(242, 203, 22, 0.08);
  border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0;
}

.responsibility-quote p {
  margin: 0;
  font-weight: 700;
  text-align: center;
}

/* Geography */
.geography-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr);
  gap: clamp(46px, 8vw, 100px);
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 30px 24px;
}

.route-tags span {
  padding: 9px 13px;
  color: var(--green-deep);
  background: var(--green-pale);
  border: 1px solid #d4e3b9;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 750;
}

.map-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 45%, rgba(242, 203, 22, 0.23), transparent 25%),
    var(--surface-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  padding: 14px 17px;
  color: var(--ink);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.map-caption strong {
  font-size: 0.83rem;
}

.map-caption span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Process */
.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  counter-reset: steps;
}

.process-grid li {
  position: relative;
  min-height: 250px;
  padding: 27px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.process-grid li::after {
  position: absolute;
  top: 42px;
  right: -19px;
  z-index: 2;
  width: 38px;
  height: 2px;
  content: "";
  background: var(--yellow);
}

.process-grid li:last-child::after {
  display: none;
}

.process-grid li > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(46px, 8vw, 96px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-intro .button {
  margin-top: 18px;
}

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

.faq-list details {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-list details[open] {
  border-color: rgba(113, 156, 36, 0.55);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 22px 62px 22px 22px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--green-dark);
  border-radius: 999px;
  transition: transform var(--transition);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details > div {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-list details > div p {
  margin: 0;
}

/* Calculator */
.calculator-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(130deg, rgba(49, 72, 15, 0.97), rgba(25, 32, 24, 0.98)),
    var(--surface-dark);
}

.calculator-section::before {
  position: absolute;
  top: -180px;
  left: -120px;
  width: 500px;
  height: 500px;
  content: "";
  background: radial-gradient(circle, rgba(242, 203, 22, 0.2), transparent 67%);
}

.calculator-layout {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.1fr);
  gap: clamp(48px, 8vw, 100px);
}

.calculator-copy {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.calculator-copy h2 {
  color: #ffffff;
}

.calculator-copy .lead {
  color: #ccd8c8;
}

.calculator-benefits {
  display: grid;
  margin-top: 32px;
  gap: 12px;
}

.calculator-benefits span {
  position: relative;
  padding-left: 30px;
  color: #ecf2e9;
  font-weight: 700;
}

.calculator-benefits span::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  content: "✓";
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.calculator-form {
  padding: clamp(26px, 4vw, 42px);
  color: var(--ink);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.calculator-form .button {
  margin-top: 4px;
}

/* Contacts */
.contacts {
  padding-block: 84px;
  background: var(--yellow);
}

.contacts-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 60px;
}

.contacts h2 {
  margin-bottom: 14px;
}

.contacts-layout > div:first-child > p:last-child {
  color: #5b5725;
}

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

.contact-cards article {
  display: flex;
  min-height: 146px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(25, 32, 24, 0.12);
  border-radius: 14px;
}

.contact-cards article > span:first-child {
  margin-bottom: 5px;
  color: #6f6a2c;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-cards strong {
  font-size: 1.05rem;
}

.contact-cards article > span:last-child:not(:first-child),
.contact-cards a {
  margin-top: 6px;
  color: var(--green-deep);
  font-size: 0.82rem;
}

.contact-cards a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  color: #cbd4c7;
  background: #151b14;
}

.footer-top {
  display: grid;
  padding-block: 60px;
  grid-template-columns: minmax(0, 1.3fr) minmax(160px, 0.5fr) minmax(220px, 0.65fr);
  gap: 60px;
}

.footer-brand .brand-mark {
  width: 96px;
  height: 72px;
}

.footer-brand .brand-copy strong {
  color: #ffffff;
}

.footer-brand .brand-copy span {
  color: var(--yellow);
}

.footer-brand > p {
  max-width: 430px;
  margin: 18px 0 0;
  color: #98a494;
}

.footer-nav,
.footer-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav strong,
.footer-details strong {
  margin-bottom: 7px;
  color: #ffffff;
}

.footer-nav a,
.footer-details span {
  color: #98a494;
  font-size: 0.88rem;
}

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

.privacy-placeholder {
  padding-block: 20px;
  color: #8f9a8b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-placeholder strong {
  color: #ffffff;
  font-size: 0.86rem;
}

.privacy-placeholder p {
  max-width: 900px;
  margin: 6px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  color: #7f8a7b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

.mobile-actions {
  display: none;
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(390px, 100%);
    align-items: stretch;
    justify-content: flex-start;
    padding: 28px;
    background: #ffffff;
    box-shadow: -20px 30px 60px rgba(24, 35, 20, 0.18);
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    visibility: hidden;
    pointer-events: none;
    transition: clip-path 240ms ease, opacity 180ms ease, visibility 240ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    clip-path: inset(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    order: 2;
    justify-self: end;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 38px;
  }

  .hero-brand-panel {
    min-height: 440px;
    padding-inline: 26px;
  }

  .hero-logo-frame {
    width: min(100%, 350px);
  }

  .hero-quick-form {
    grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.85fr) minmax(195px, 0.72fr);
    gap: 16px;
  }

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


  .business-layout,
  .geography-layout {
    gap: 54px;
  }

  .responsibility-heading {
    grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
    gap: 42px;
  }

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

  .process-grid li:nth-child(2)::after {
    display: none;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .section {
    padding-block: 82px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    padding-block: 72px 82px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-brand-panel {
    width: min(100%, 650px);
    min-height: 440px;
    margin-inline: auto;
  }

  .hero-quick-form {
    width: min(100%, 760px);
    margin-inline: auto;
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .quick-form {
    margin: 0;
  }

  .heading-row,
  .business-layout,
  .geography-layout,
  .faq-layout,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .responsibility-heading {
    align-items: start;
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .responsibility-title h2 {
    max-width: 18ch;
  }

  .responsibility-intro {
    max-width: 760px;
  }

  .heading-row {
    align-items: start;
    gap: 18px;
  }

  .business-panel {
    min-height: auto;
  }


  .geography-copy {
    max-width: 760px;
  }

  .map-card {
    min-height: 420px;
  }

  .faq-intro,
  .calculator-copy {
    position: static;
  }

  .faq-intro {
    max-width: 620px;
  }

  .calculator-copy {
    max-width: 760px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 64px;
  }

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

  .section {
    padding-block: 68px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-mark {
    width: 64px;
    height: 48px;
  }

  .brand-copy strong {
    max-width: 155px;
    overflow: hidden;
    font-size: 0.84rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy span {
    font-size: 0.66rem;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .hero {
    min-height: 0;
    padding-block: 30px 70px;
  }

  .hero-layout {
    gap: 30px;
  }

  .hero-content {
    order: 0;
  }

  .hero-quick-form {
    order: 1;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-brand-panel {
    min-height: 294px;
    order: -1;
    padding: 40px 14px 18px;
    border-radius: 24px;
  }

  .hero-brand-panel::before {
    width: 270px;
    height: 270px;
  }

  .hero-logo-frame {
    width: min(100%, 245px);
    min-height: 182px;
  }

  .hero-brand-label {
    top: 12px;
    font-size: 0.58rem;
  }

  .hero-brand-facts {
    gap: 6px;
    margin-top: -5px;
  }

  .hero-brand-facts span {
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .hero-brand-caption {
    margin-top: 8px;
    font-size: 0.7rem;
  }

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

  .quick-form {
    padding: 22px;
    border-radius: 19px;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .card-grid,
  .fleet-grid,
  .process-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 275px;
  }


  .fleet-gallery-stage {
    min-height: 245px;
  }

  .fleet-gallery-thumbs button {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .fleet-gallery-thumbs img {
    width: 48px;
    height: 38px;
  }

  .fleet-note {
    align-items: stretch;
    flex-direction: column;
  }

  .responsibility-heading {
    margin-bottom: 24px;
    gap: 16px;
  }

  .responsibility-title h2 {
    max-width: none;
  }

  .responsibility-media {
    border-radius: 18px;
  }

  .responsibility-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-list article {
    min-height: auto;
    padding: 18px;
    gap: 5px;
  }

  .weather-labels {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .weather-labels span {
    padding: 6px 9px;
    font-size: 0.66rem;
  }

  .responsibility-quote {
    padding: 18px;
  }

  .responsibility-quote p {
    text-align: left;
  }

  .map-card {
    min-height: 340px;
  }

  .process-grid li::after {
    display: none;
  }

  .calculator-form {
    padding: 22px;
    border-radius: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

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

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: grid;
    height: 64px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(24, 35, 20, 0.12);
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 850;
  }

  .mobile-actions a:last-child {
    color: var(--ink);
    background: var(--yellow);
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 58px;
    height: 44px;
  }

  .brand-copy strong {
    max-width: 118px;
    font-size: 0.78rem;
  }

  .brand-copy span {
    display: none;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .slogan-card {
    align-items: flex-start;
  }

  .hero-brand-panel {
    min-height: 278px;
    padding: 38px 10px 16px;
  }

  .hero-logo-frame {
    width: min(100%, 225px);
    min-height: 168px;
  }

  .hero-brand-label {
    max-width: calc(100% - 24px);
    padding: 6px 9px;
    font-size: 0.53rem;
  }

  .hero-brand-facts span {
    padding: 5px 7px;
    font-size: 0.58rem;
  }

  .hero-brand-caption {
    display: none;
  }

  .button-large {
    padding-inline: 18px;
  }

  .route-ticker__viewport {
    min-height: 66px;
  }

  .route-ticker__group {
    padding-right: 28px;
    gap: 28px;
  }

  .route-city {
    font-size: 0.88rem;
  }

  .route-city::after {
    right: -17px;
    width: 5px;
    height: 5px;
  }

  .fleet-gallery-stage {
    min-height: 220px;
  }

  .fleet-gallery-thumbs {
    gap: 5px;
    padding: 7px;
  }

  .fleet-gallery-thumbs button {
    display: block;
    padding: 4px;
    text-align: center;
  }

  .fleet-gallery-thumbs img {
    width: 100%;
    height: 48px;
    margin-bottom: 4px;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .gallery-arrow-icon {
    width: 18px;
    height: 18px;
  }

  .service-card,
  .fleet-content {
    padding: 23px;
  }

  .business-panel {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .map-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .contact-cards article {
    min-height: 125px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .route-ticker__viewport {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .route-ticker__track {
    animation: none !important;
  }

  .route-ticker__group[aria-hidden="true"] {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
