:root {
  --bg: #f6f9fc;
  --paper: #ffffff;
  --ink: #071c35;
  --muted: #587089;
  --line: #dce6ef;
  --blue: #0b4f86;
  --blue-2: #08385f;
  --graphite: #102332;
  --steel: #eef4f7;
  --green: #158746;
  --yellow: #ffc328;
  --amber: #f4a51c;
  --shadow: 0 24px 70px rgba(7, 28, 53, 0.12);
  --radius: 9px;
  --card-radius: 14px;
  --panel-radius: 18px;
  --surface-line: rgba(11, 79, 134, 0.14);
  --surface-shadow: 0 14px 34px rgba(7, 28, 53, 0.065);
  --panel-shadow: 0 20px 54px rgba(7, 28, 53, 0.095);
  --font-main: "Manrope", "Segoe UI", Arial, sans-serif;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-main);
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
}

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

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

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

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

.section {
  position: relative;
  padding: 56px 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 12px;
  right: 0;
  left: 0;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(7, 28, 53, 0.12);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition:
    transform 0.34s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
  will-change: transform;
}

.brand,
.header-actions,
.nav,
.hero-actions,
.hero-proof,
.hero-points,
.form-actions,
.cta-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 300px;
}

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

.brand strong {
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10.8px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 40px;
  border-radius: 56% 44% 54% 46% / 66% 64% 36% 34%;
  background: linear-gradient(150deg, #08385f 10%, #0b4f86 54%, #ffc328 55%, #f49b14 100%);
  transform: rotate(4deg);
}

.brand-mark::after {
  position: absolute;
  inset: 8px 9px 10px;
  border-radius: inherit;
  background: #fff;
  content: "";
  opacity: 0.92;
}

.nav {
  justify-content: center;
  gap: 13px;
  color: #173350;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.nav a {
  white-space: nowrap;
  transition: color 0.2s ease;
}

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

.header-actions,
.cta-actions {
  gap: 10px;
}

.phone-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(16, 35, 50, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  color: var(--graphite);
  font-size: 14.5px;
  font-weight: 700;
  white-space: nowrap;
}

.contact-menu {
  position: relative;
}

.support-button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(11, 79, 134, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--blue-2);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: none;
}

.support-button:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  transform: none;
}

.support-button::after {
  margin-left: 8px;
  content: "▾";
  font-size: 11px;
  opacity: 0.76;
}

.contact-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  display: grid;
  min-width: 148px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7, 28, 53, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.contact-menu.is-open .contact-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.contact-panel a {
  padding: 10px 11px;
  border-radius: 9px;
  color: #071c35;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.contact-panel a:hover {
  background: rgba(11, 79, 134, 0.08);
}

.messenger {
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
  line-height: 1.05;
  box-shadow: 0 12px 24px rgba(7, 28, 53, 0.12);
}

.messenger span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.88;
}

.messenger-wa {
  background: linear-gradient(135deg, #168648, #0f6c39);
}

.messenger-tg {
  background: linear-gradient(135deg, #2e9ce8, #0870b6);
}

.hero {
  isolation: isolate;
  min-height: 670px;
  padding-top: 96px;
  padding-bottom: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 249, 252, 0.98) 0%, rgba(246, 249, 252, 0.9) 42%, rgba(246, 249, 252, 0.18) 74%),
    var(--steel);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  position: absolute;
  inset: 0 0 0 44%;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(246, 249, 252, 0.08), rgba(8, 31, 49, 0.18) 48%, rgba(8, 31, 49, 0.38)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(8, 31, 49, 0.28));
  content: "";
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(246, 249, 252, 0), rgba(246, 249, 252, 0.62) 92%),
    linear-gradient(90deg, rgba(246, 249, 252, 0.99) 0%, rgba(246, 249, 252, 0.9) 39%, rgba(246, 249, 252, 0.36) 58%, rgba(246, 249, 252, 0.08) 78%);
  content: "";
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(1.12) contrast(1.14) brightness(0.92);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 430px);
  gap: clamp(54px, 5.2vw, 76px);
  min-height: calc(100vh - 120px);
  align-items: start;
}

.hero-copy {
  display: flex;
  min-height: 0;
  flex-direction: column;
  max-width: 660px;
  padding-top: clamp(6px, 1.2vw, 18px);
  padding-bottom: 0;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(11, 79, 134, 0.1);
  color: var(--blue-2);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(44px, 3.95vw, 60px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 18.5px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 585px;
  margin-bottom: 0;
  color: #24415e;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.44;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button-light {
  border: 1px solid rgba(11, 79, 134, 0.18);
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue-2);
}

.hero-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  min-width: 142px;
  padding: 10px 13px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.72);
  color: #496278;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(7, 28, 53, 0.06);
}

.hero-proof strong {
  display: block;
  color: var(--graphite);
  font-size: 19px;
  line-height: 1.08;
}

.hero-points {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding-top: 0;
}

.hero-points span {
  padding: 12px 16px;
  border: 1px solid rgba(11, 79, 134, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #12314f;
  font-size: 15.5px;
  font-weight: 700;
}

.hero-points span:first-child {
  border-color: rgba(255, 195, 40, 0.42);
  background: rgba(255, 255, 255, 0.76);
}

.order-card {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 18% 0%, rgba(24, 91, 137, 0.52), transparent 44%),
    linear-gradient(145deg, rgba(13, 57, 86, 0.96), rgba(9, 34, 52, 0.98));
  color: #fff;
  box-shadow: 0 20px 48px rgba(7, 28, 53, 0.14);
}

.form-head,
.fuel-volume-row,
.delivery-time-row,
.optional-comment,
.form-actions,
.privacy {
  grid-column: 1 / -1;
}

.fuel-volume-row,
.delivery-time-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.form-head p {
  margin-bottom: 3px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.form-head span,
.privacy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

label {
  display: grid;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
}

textarea {
  min-height: 54px;
  padding-top: 10px;
  padding-bottom: 10px;
  resize: vertical;
}

.optional-comment {
  padding: 0;
  border: 0;
  background: transparent;
}

.optional-comment summary {
  justify-content: flex-start;
  min-height: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.optional-comment summary::after {
  margin-left: 8px;
  color: var(--yellow);
  content: "+";
  font-size: 16px;
}

.optional-comment[open] summary {
  margin-bottom: 8px;
}

.optional-comment[open] summary::after {
  content: "−";
}

input::placeholder,
textarea::placeholder {
  color: rgba(7, 28, 53, 0.48);
  font-weight: 500;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 195, 40, 0.22);
}

.form-actions {
  gap: 9px;
  align-items: stretch;
}

.form-actions button {
  flex: 1;
  white-space: nowrap;
  font-size: 14.5px;
  font-weight: 800;
}

.form-actions button:first-child {
  flex: 1.25;
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--yellow);
  color: #082139;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

button:hover,
.button:hover {
  box-shadow: 0 12px 24px rgba(255, 195, 40, 0.24);
  transform: translateY(-1px);
}

button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}

.privacy {
  margin: 0;
  opacity: 0.82;
  text-align: center;
}

.trust {
  padding-top: 38px;
  padding-bottom: 42px;
}

.process,
.products,
.fleet,
.delivery,
.clients,
.faq {
  padding-top: 52px;
  padding-bottom: 56px;
}

.trust-grid,
.process-steps,
.product-grid,
.delivery-grid,
.faq-grid {
  align-items: start;
  display: grid;
  gap: 20px;
}

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

.trust article,
.product-card,
details,
.delivery-stats span {
  border: 1px solid var(--surface-line);
  border-radius: var(--card-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 254, 0.88)),
    var(--paper);
  box-shadow: var(--surface-shadow);
}

.trust article {
  padding: 24px 24px 22px;
}

.trust article:nth-child(2) {
  border-color: rgba(244, 165, 28, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 239, 0.9)),
    var(--paper);
}

.trust h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 2.25vw, 32px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.trust p,
.product-card p,
.delivery p,
details p {
  color: var(--muted);
  line-height: 1.55;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border: 1px solid rgba(11, 79, 134, 0.18);
  border-radius: 50%;
  background: rgba(11, 79, 134, 0.06);
  color: var(--blue);
}

.icon svg,
.product-icon svg {
  width: 30px;
  height: 30px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon .accent,
.product-icon .accent {
  stroke: var(--amber);
}

.process {
  padding-top: 30px;
}

.process-card {
  padding: 38px 38px 36px;
  border: 1px solid var(--surface-line);
  border-radius: calc(var(--panel-radius) + 2px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(235, 244, 250, 0.72)),
    #fff;
  box-shadow: var(--panel-shadow);
}

.process-head {
  position: relative;
  min-height: 40px;
  margin-bottom: 32px;
}

.process-head .eyebrow {
  position: absolute;
  top: 4px;
  left: 0;
  margin-bottom: 0;
}

.process-head h2 {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(30px, 2.6vw, 42px);
}

.process-steps {
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 24px;
  padding-top: 74px;
}

.process-steps::before {
  position: absolute;
  top: 21px;
  right: 12%;
  left: 12%;
  height: 0;
  border-top: 2px dashed rgba(56, 121, 183, 0.38);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  padding: 24px 24px 22px;
  border: 1px solid rgba(11, 79, 134, 0.12);
  border-radius: calc(var(--card-radius) + 2px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(7, 28, 53, 0.04);
}

.process-step span {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(11, 79, 134, 0.9);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(7, 28, 53, 0.06);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.2;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
  font-size: 16px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.product-card {
  min-height: 188px;
  padding: 22px 20px 20px;
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(11, 79, 134, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
}

.product-icon svg {
  width: 31px;
  height: 31px;
}

.product-card.green {
  color: #14734a;
}

.product-card.blue {
  color: #0b5f8f;
}

.product-card.orange {
  color: #d98a12;
}

.product-card.red {
  color: #b85a46;
}

.product-card.dark {
  color: #0c2035;
}

.product-card h3 {
  color: var(--ink);
}

.product-card p {
  color: var(--muted);
}

.clients {
  background: #fff;
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) 1fr;
  gap: 34px;
  align-items: start;
}

.clients .section-head {
  position: static;
  margin-bottom: 0;
}

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

.client-grid article {
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--surface-line);
  border-radius: var(--card-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 254, 0.88)),
    var(--paper);
  box-shadow: var(--surface-shadow);
}

.client-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.client-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.fleet-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid var(--surface-line);
  border-radius: var(--panel-radius);
  background: #fff;
  box-shadow: var(--panel-shadow);
}

.fleet-copy {
  z-index: 1;
  display: grid;
  align-content: center;
  padding: 48px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 76%, rgba(255, 255, 255, 0.45) 100%);
}

.fleet-copy h2 {
  max-width: 540px;
  margin-bottom: 24px;
}

.fleet-copy ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: #24415e;
}

.fleet-copy li::before {
  margin-right: 10px;
  color: var(--blue);
  content: "✓";
  font-weight: 800;
}

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

.delivery-grid {
  grid-template-columns: 0.86fr 0.94fr;
  align-items: center;
  gap: 34px;
}

.delivery-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.delivery-stats span {
  padding: 18px;
  color: var(--muted);
}

.delivery-stats strong {
  display: block;
  color: var(--blue-2);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.route-list {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 3px solid var(--amber);
  color: #24415e;
  font-weight: 600;
}

.map-card {
  width: min(100%, 720px);
  margin-top: 0;
  justify-self: center;
  align-self: center;
  overflow: hidden;
  border: 1px solid var(--surface-line);
  border-radius: var(--panel-radius);
  background: #fff;
  box-shadow: var(--panel-shadow);
}

.map-card iframe {
  width: 100%;
  height: 350px;
  border: 0;
  background: #dfeaf2;
  filter: saturate(0.92) contrast(0.98);
}

.map-caption {
  padding: 14px 18px 16px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: #24415e;
  font-size: 13px;
  line-height: 1.35;
}

.map-caption strong {
  color: var(--ink);
}


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

details {
  padding: 0 20px;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  letter-spacing: -0.02em;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--blue);
  content: "+";
  font-size: 24px;
  font-weight: 700;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -4px 0 18px;
}

.final-cta {
  padding-top: 32px;
  padding-bottom: 34px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(7, 28, 53, 0.92), rgba(7, 53, 88, 0.95)),
    var(--blue-2);
  color: #fff;
  box-shadow: var(--panel-shadow);
}

.cta-card .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cta-card h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 2.55vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.cta-note {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.46;
}

.cta-card .button-light {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cta-phone {
  white-space: nowrap;
}

.footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(11, 79, 134, 0.1);
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-size: 14px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-grid,
  .delivery-grid,
  .fleet-card,
  .cta-card,
  .clients-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .order-card {
    align-self: start;
  }

  .map-card {
    margin-top: 0;
  }

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

  .hero-copy {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-points {
    margin-top: 22px;
    padding-top: 0;
  }

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

  .clients .section-head {
    position: static;
  }

  .fleet-card img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 54px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 7px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .support-button {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .phone-link {
    min-width: 78px;
    min-height: 40px;
    justify-content: center;
    padding: 0 10px;
    font-size: 0;
  }

  .phone-link::before {
    content: "Звонок";
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 36px;
    background: #0b263a;
  }

  .hero-bg img {
    object-position: 70% top;
    filter: saturate(1.12) contrast(1.12) brightness(0.74);
  }

  .hero-bg::before {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(7, 24, 38, 0.78) 0%, rgba(8, 31, 49, 0.62) 42%, rgba(246, 249, 252, 0.92) 78%, rgba(246, 249, 252, 1) 100%),
      linear-gradient(90deg, rgba(7, 24, 38, 0.86) 0%, rgba(7, 24, 38, 0.42) 58%, rgba(7, 24, 38, 0.12) 100%);
  }

  .hero-bg::after {
    background:
      radial-gradient(circle at 82% 20%, rgba(255, 195, 40, 0.18), transparent 34%),
      linear-gradient(180deg, rgba(7, 24, 38, 0.12), rgba(246, 249, 252, 1) 82%);
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 6px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  }

  .hero-copy .eyebrow {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
  }

  h1 {
    max-width: 350px;
    font-size: 35px;
    line-height: 1.05;
    color: #fff;
  }

  .lead {
    max-width: 340px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15.5px;
    line-height: 1.48;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-proof {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-proof span {
    width: 100%;
  }

  .hero-proof {
    gap: 9px;
    margin-top: 18px;
    text-shadow: none;
  }

  .hero-proof span {
    border-left-width: 4px;
    background: rgba(255, 255, 255, 0.92);
  }

  .hero-points {
    gap: 8px;
    margin-top: 14px;
    text-shadow: none;
  }

  .hero-points span {
    background: rgba(255, 255, 255, 0.9);
  }

  .order-card,
  .fleet-copy,
  .cta-card,
  .process-card {
    padding: 24px;
  }

  .order-card {
    grid-template-columns: 1fr;
  }

  .fuel-volume-row,
  .delivery-time-row {
    grid-template-columns: 1fr;
  }

  .form-actions,
  .footer .container,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-grid,
  .process-head,
  .process-steps,
  .product-grid,
  .client-grid,
  .faq-grid,
  .delivery-stats {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 26px 20px 24px;
  }

  .process-head {
    min-height: 0;
    padding-top: 0;
    margin-bottom: 22px;
  }

  .process-head .eyebrow {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }

  .process-head h2 {
    margin: 0;
    text-align: left;
    font-size: clamp(28px, 7.2vw, 34px);
  }

  .process-steps {
    gap: 14px;
    padding-top: 0;
  }

  .process-steps::before {
    top: 26px;
    bottom: 26px;
    left: 22px;
    width: 2px;
    height: auto;
    border-top: 0;
    background: linear-gradient(180deg, rgba(11, 79, 134, 0.16), rgba(11, 79, 134, 0.34), rgba(244, 165, 28, 0.48));
  }

  .process-step {
    min-height: 0;
    padding: 18px 18px 18px 64px;
  }

  .process-step span {
    position: absolute;
    top: 18px;
    left: 0;
    transform: none;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
  }


  .map-card {
    margin-top: 0;
  }

  .map-card iframe {
    height: 320px;
  }

}


/* Strong typography pass */
.site-header, .order-card {
  font-family: var(--font-main);
}

.nav a,
.phone-link,
.support-button,
.contact-panel a,
.button,
button {
  font-weight: 800;
}

.section-head p:not(.eyebrow),
.trust p,
.product-card p,
.client-grid p,
.delivery p:not(.eyebrow),
details p,
.process-step p {
  font-weight: 500;
}

.product-card h3,
.client-grid h3,
.process-step h3,
summary {
  font-weight: 800;
}

.hero-proof strong,
.delivery-stats strong {
  font-weight: 800;
}

@media (max-width: 720px) {
  h1 {
    font-size: 38px;
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .lead {
    font-size: 16px;
    font-weight: 500;
  }
}

.delivery .eyebrow {
  color: var(--blue-2);
  font-weight: 800;
}

.products-head {
  max-width: 820px;
}

.products-head p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

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

.product-card {
  min-height: 218px;
  padding: 24px 22px 22px;
}

/* Product section refinement responsive safety */

@media (max-width: 1040px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 720px) {
  .products-head p:not(.eyebrow) {
    font-size: 16px;
  }

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

}

/* Mobile UX polish pass */
@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }

  main {
    overflow: clip;
  }

  .section {
    padding: 46px 0;
  }

  .process,
  .products,
  .fleet,
  .delivery,
  .clients,
  .faq {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .hero {
    padding-top: 94px;
    padding-bottom: 34px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 16px;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(31px, 9vw, 39px);
    line-height: 1.06;
  }

  .lead {
    max-width: 355px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .hero-proof span {
    width: auto;
    min-width: 0;
    padding: 10px 11px;
    font-size: 12.5px;
  }

  .hero-proof span:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-proof strong {
    font-size: 18px;
  }

  .hero-points {
    gap: 8px;
    margin-top: 12px;
  }

  .hero-points span {
    padding: 9px 11px;
    font-size: 13.5px;
  }

  .order-card {
    overflow: hidden;
    padding: 22px 18px 24px;
    border-radius: 18px;
  }

  label,
  input,
  select,
  textarea,
  button {
    min-width: 0;
    box-sizing: border-box;
  }

  input,
  select,
  textarea {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  input[type="date"],
  input[type="time"] {
    -webkit-appearance: none;
    appearance: none;
  }

  .form-actions {
    gap: 10px;
  }

  .form-actions button {
    min-height: 52px;
  }

  .privacy {
    max-width: 280px;
    justify-self: center;
  }

  .process-card {
    padding: 24px 18px 22px;
  }

  .process-head h2 {
    font-size: clamp(30px, 8.8vw, 38px);
  }

  .process-step {
    padding: 18px 16px 18px 62px;
  }

  .process-step p {
    font-size: 16px;
    line-height: 1.46;
  }

  .products-head p:not(.eyebrow) {
    font-size: 16.5px;
    line-height: 1.48;
  }

  .product-card {
    min-height: 0;
    padding: 22px 20px 22px;
  }

  .product-card h3 {
    font-size: 22px;
    line-height: 1.16;
  }

  .product-card p {
    font-size: 16.5px;
    line-height: 1.48;
  }

  .clients-layout {
    gap: 24px;
  }

  .clients .section-head {
    margin-bottom: 0;
  }

  .client-grid article {
    min-height: 0;
    padding: 20px;
  }

  .fleet-card {
    min-height: 0;
  }

  .fleet-copy {
    padding: 28px 22px 24px;
  }

  .fleet-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(31px, 8.8vw, 38px);
  }

  .fleet-copy ul {
    gap: 10px;
    margin-bottom: 22px;
  }

  .fleet-card img {
    min-height: 250px;
    max-height: 330px;
    object-fit: cover;
  }

  .delivery-grid {
    gap: 24px;
  }

  .delivery-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .delivery-stats span {
    padding: 16px 14px;
  }

  .delivery-stats strong {
    font-size: 23px;
  }

  .map-card iframe {
    height: 280px;
  }

  .faq {
    padding-bottom: 72px;
  }

  details {
    padding: 0 16px;
  }

  summary {
    min-height: 64px;
    font-size: 19px;
    line-height: 1.22;
  }

  details p {
    margin: -2px 0 18px;
    font-size: 16px;
    line-height: 1.48;
  }

  .final-cta {
    padding-top: 30px;
    padding-bottom: calc(98px + env(safe-area-inset-bottom));
  }

  .cta-card {
    padding: 28px 22px 24px;
  }

  .cta-card h2 {
    font-size: clamp(31px, 8.8vw, 38px);
    line-height: 1.08;
  }

  .cta-note {
    font-size: 16px;
  }

}

/* Focused cleanup pass: calmer hero, lighter form, less visual repetition */
.hero-grid {
  gap: clamp(46px, 4.6vw, 66px);
}

.hero-copy {
  padding-top: clamp(2px, 0.9vw, 12px);
}

.lead {
  max-width: 575px;
}

.hero-proof {
  gap: 9px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(7, 28, 53, 0.045);
}

.hero-proof strong {
  font-size: 18px;
}

.hero-points {
  gap: 8px;
  margin-top: 16px;
}

.hero-points span {
  padding: 8px 11px;
  border-color: rgba(11, 79, 134, 0.1);
  background: rgba(255, 255, 255, 0.54);
  color: #496278;
  font-size: 13px;
  font-weight: 800;
  box-shadow: none;
}

.hero-points span:first-child {
  border-color: rgba(11, 79, 134, 0.12);
  background: rgba(255, 255, 255, 0.58);
}

.order-card {
  gap: 9px;
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 142, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(15, 61, 91, 0.94), rgba(12, 42, 63, 0.96));
  box-shadow: 0 18px 42px rgba(7, 28, 53, 0.12);
}

.form-head p {
  font-size: 21px;
}

input,
select,
textarea {
  min-height: 39px;
}

.optional-comment summary {
  color: rgba(255, 255, 255, 0.72);
}

.form-actions {
  margin-top: 2px;
}

.delivery-stats strong {
  font-size: 21px;
}

@media (max-width: 1040px) {
  .hero-grid {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 92px;
    padding-bottom: 32px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 14px;
  }

  h1 {
    margin-bottom: 16px;
  }

  .hero-proof {
    gap: 7px;
    margin-top: 16px;
  }

  .hero-proof span {
    padding: 9px 10px;
  }

  .hero-points {
    margin-top: 10px;
  }

  .hero-points span {
    padding: 7px 10px;
    font-size: 12.8px;
  }

  .order-card {
    padding: 20px 17px 22px;
  }

  input,
  select,
  textarea {
    min-height: 48px;
  }

  .delivery-stats strong {
    font-size: 20px;
  }
}

/* Mobile color system final: stronger commercial rhythm, less cold clinical tint */
@media (max-width: 720px) {
  body {
    background:
      linear-gradient(180deg, #f7f9fc 0%, #ffffff 46%, #f4f7fb 100%);
  }

  .hero {
    background:
      radial-gradient(circle at 96% 20%, rgba(255, 195, 40, 0.16), transparent 25%),
      radial-gradient(circle at 100% 52%, rgba(11, 79, 134, 0.13), transparent 34%),
      linear-gradient(180deg, #f9fbfd 0%, #f2f6fa 100%);
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(246, 249, 252, 0.9) 100%),
      linear-gradient(135deg, transparent 0 58%, rgba(11, 79, 134, 0.08) 58.2% 70%, transparent 70.2%),
      linear-gradient(135deg, transparent 0 80%, rgba(244, 165, 28, 0.34) 80.1% 80.55%, transparent 80.8%);
  }

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

  .process {
    background:
      radial-gradient(circle at 100% 0%, rgba(244, 165, 28, 0.16), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
  }

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

  .clients {
    background:
      radial-gradient(circle at 100% 4%, rgba(11, 79, 134, 0.09), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  }

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

  .delivery {
    background:
      radial-gradient(circle at 0% 0%, rgba(244, 165, 28, 0.12), transparent 32%),
      linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  }

  .faq,
  .final-cta {
    background:
      linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
  }

  .trust article,
  .process-step,
  .product-card,
  .client-grid article,
  .delivery-stats span,
  details {
    border-color: rgba(7, 28, 53, 0.11);
    background:
      linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    box-shadow: 0 12px 28px rgba(7, 28, 53, 0.07);
  }

  .trust article:nth-child(1),
  .process-step:nth-child(1),
  .product-card.blue,
  .client-grid article:nth-child(1),
  .delivery-stats span:nth-child(1) {
    background:
      linear-gradient(145deg, #ffffff 0%, #f2f7fb 100%);
  }

  .trust article:nth-child(2),
  .process-step:nth-child(2),
  .product-card.orange,
  .client-grid article:nth-child(2),
  .delivery-stats span:nth-child(2) {
    background:
      linear-gradient(145deg, #ffffff 0%, #fff8e8 100%);
  }

  .trust article:nth-child(3),
  .process-step:nth-child(3),
  .product-card.green,
  .client-grid article:nth-child(3),
  .delivery-stats span:nth-child(3) {
    background:
      linear-gradient(145deg, #ffffff 0%, #f2faf6 100%);
  }

  .process-step:nth-child(4),
  .product-card.red,
  .client-grid article:nth-child(4),
  .delivery-stats span:nth-child(4) {
    background:
      linear-gradient(145deg, #ffffff 0%, #fff6f2 100%);
  }

  .process-card,
  .fleet-card,
  .map-card {
    border-color: rgba(7, 28, 53, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 254, 0.96));
    box-shadow: 0 16px 34px rgba(7, 28, 53, 0.08);
  }

  .process-step span,
  .client-grid span {
    border-color: rgba(11, 79, 134, 0.22);
    background:
      linear-gradient(145deg, #ffffff, #f0f6fb);
    color: #0b4f86;
  }

  .client-grid span {
    border-color: rgba(244, 165, 28, 0.28);
    background:
      linear-gradient(145deg, #fffdf7, #fff3c8);
    color: #8a5a05;
  }

  .icon,
  .product-icon {
    border-color: rgba(11, 79, 134, 0.14);
    background:
      linear-gradient(145deg, #ffffff, #edf5fb);
    box-shadow: 0 8px 18px rgba(7, 28, 53, 0.06);
  }

  .product-card::before {
    opacity: 0.95;
  }

  .route-list {
    border-color: rgba(244, 165, 28, 0.34);
    border-left-color: #f4a51c;
    background:
      linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
  }

  .cta-card {
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 195, 40, 0.28), transparent 34%),
      linear-gradient(145deg, #0b4f86 0%, #082f52 100%);
    box-shadow: 0 18px 42px rgba(7, 28, 53, 0.18);
  }
}

/* Final density pass for lower sections */
.trust {
  padding-top: 32px;
  padding-bottom: 34px;
}

.process,
.products,
.fleet,
.delivery,
.clients,
.faq {
  padding-top: 42px;
  padding-bottom: 46px;
}

.process {
  padding-top: 24px;
}

.section-head {
  margin-bottom: 24px;
}

.process-card {
  padding: 30px 30px 28px;
}

.process-head {
  margin-bottom: 24px;
}

.process-head h2 {
  font-size: clamp(29px, 2.35vw, 38px);
}

.process-steps {
  gap: 18px;
  padding-top: 58px;
}

.process-steps::before {
  top: 19px;
  right: 13%;
  left: 13%;
}

.process-step {
  padding: 20px 20px 18px;
}

.process-step span {
  top: -51px;
  width: 42px;
  height: 42px;
}

.process-step h3 {
  font-size: clamp(17px, 1.22vw, 20px);
}

.process-step p {
  font-size: 15.5px;
  line-height: 1.46;
}

.products {
  padding-top: 40px;
}

.products-head p:not(.eyebrow) {
  font-size: 17px;
}

.product-grid {
  gap: 16px;
}

.product-card {
  min-height: 190px;
  padding: 21px 20px 20px;
}

.product-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}

.product-icon svg {
  width: 28px;
  height: 28px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 17.5px;
}

.product-card p {
  font-size: 15.5px;
  line-height: 1.46;
}

.clients-layout {
  gap: 28px;
}

.clients .section-head h2 {
  font-size: clamp(30px, 2.65vw, 40px);
}

.clients .section-head p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.48;
}

.client-grid {
  gap: 14px;
}

.client-grid article {
  min-height: 150px;
  padding: 19px 20px;
}

.client-grid span {
  margin-bottom: 14px;
}

.client-grid h3 {
  margin-bottom: 8px;
  font-size: 17.5px;
}

.client-grid p {
  font-size: 15.5px;
  line-height: 1.45;
}

.fleet-card {
  min-height: 470px;
}

.fleet-copy {
  padding: 42px;
}

.fleet-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 2.55vw, 40px);
}

.fleet-copy ul {
  gap: 10px;
  margin-bottom: 24px;
}

.delivery-grid {
  gap: 30px;
}

.delivery h2 {
  font-size: clamp(30px, 2.45vw, 38px);
  line-height: 1.05;
}

.delivery p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.48;
}

.delivery-stats {
  gap: 10px;
  margin-top: 18px;
}

.delivery-stats span {
  padding: 15px 16px;
}

.delivery-stats strong {
  font-size: 19px;
}

.route-list {
  margin-top: 16px;
}

.map-card iframe {
  height: 330px;
}

.faq {
  padding-top: 40px;
  padding-bottom: 26px;
}

.faq .section-head {
  margin-bottom: 22px;
}

.faq-grid {
  gap: 16px 18px;
}

details {
  padding: 0 18px;
}

summary {
  min-height: 56px;
}

details p {
  margin: -2px 0 16px;
}

.final-cta {
  padding-top: 18px;
  padding-bottom: 30px;
}

.cta-card {
  padding: 30px 34px;
}

.cta-card h2 {
  font-size: clamp(28px, 2.25vw, 36px);
}

.cta-note {
  margin-top: 12px;
}

@media (max-width: 1040px) {
  .process-steps {
    gap: 16px;
  }

  .fleet-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .process,
  .products,
  .fleet,
  .delivery,
  .clients,
  .faq {
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .process-card {
    padding: 22px 18px 20px;
  }

  .process-head {
    margin-bottom: 18px;
  }

  .process-steps {
    gap: 12px;
    padding-top: 0;
  }

  .process-step {
    padding: 16px 15px 16px 58px;
  }

  .product-card {
    padding: 20px 18px;
  }

  .clients .section-head h2,
  .delivery h2,
  .fleet-copy h2,
  .cta-card h2 {
    font-size: clamp(29px, 8vw, 36px);
  }

  .client-grid article {
    padding: 18px;
  }

  .delivery-stats span {
    padding: 14px 12px;
  }

  .faq {
    padding-bottom: 50px;
  }

  summary {
    min-height: 58px;
    font-size: 18px;
  }

  .final-cta {
    padding-top: 20px;
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
}

/* Mobile hero background pass: keep one scene, place the fuel truck to the right */
@media (max-width: 720px) {
  .hero {
    background: var(--bg);
  }

  .hero-bg {
    inset: 0;
  }

  .hero-bg img {
    object-position: 68% 6%;
    filter: saturate(1.08) contrast(1.08) brightness(1.02);
  }

  .hero-bg::before {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(246, 249, 252, 0.99) 0%, rgba(246, 249, 252, 0.96) 46%, rgba(246, 249, 252, 0.62) 67%, rgba(246, 249, 252, 0.14) 100%),
      linear-gradient(180deg, rgba(246, 249, 252, 0.78) 0%, rgba(246, 249, 252, 0.38) 42%, rgba(246, 249, 252, 0.86) 78%, rgba(246, 249, 252, 1) 100%);
  }

  .hero-bg::after {
    background:
      radial-gradient(circle at 88% 23%, rgba(255, 255, 255, 0), rgba(246, 249, 252, 0.24) 46%, rgba(246, 249, 252, 0.72) 78%),
      linear-gradient(180deg, rgba(246, 249, 252, 0.04) 0%, rgba(246, 249, 252, 0.18) 52%, rgba(246, 249, 252, 0.94) 88%, rgba(246, 249, 252, 1) 100%);
  }

  .hero-copy {
    color: var(--ink);
    text-shadow: none;
  }

  .hero-copy .eyebrow {
    border-color: rgba(11, 79, 134, 0.14);
    background: rgba(11, 79, 134, 0.1);
    color: var(--blue-2);
  }

  h1 {
    color: var(--ink);
  }

  .lead {
    color: #24415e;
  }

  .hero-proof span {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(7, 28, 53, 0.055);
  }

  .hero-points span {
    background: rgba(255, 255, 255, 0.78);
  }
}

@media (max-width: 430px) {
  .hero-bg img {
    object-position: 71% 5%;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(246, 249, 252, 1) 0%, rgba(246, 249, 252, 0.98) 50%, rgba(246, 249, 252, 0.66) 72%, rgba(246, 249, 252, 0.18) 100%),
      linear-gradient(180deg, rgba(246, 249, 252, 0.82) 0%, rgba(246, 249, 252, 0.42) 42%, rgba(246, 249, 252, 0.88) 78%, rgba(246, 249, 252, 1) 100%);
  }
}

/* Mobile hero placement correction from visual QA */
@media (max-width: 720px) {
  .hero-bg img {
    object-position: 45% top;
    filter: saturate(1.06) contrast(1.06) brightness(1.05);
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(246, 249, 252, 1) 0%, rgba(246, 249, 252, 0.99) 48%, rgba(246, 249, 252, 0.72) 68%, rgba(246, 249, 252, 0.16) 100%),
      linear-gradient(180deg, rgba(246, 249, 252, 0.88) 0%, rgba(246, 249, 252, 0.42) 38%, rgba(246, 249, 252, 0.72) 66%, rgba(246, 249, 252, 1) 94%);
  }

  .hero-bg::after {
    background:
      radial-gradient(circle at 82% 31%, rgba(255, 255, 255, 0), rgba(246, 249, 252, 0.18) 36%, rgba(246, 249, 252, 0.72) 74%),
      linear-gradient(180deg, rgba(246, 249, 252, 0.02) 0%, rgba(246, 249, 252, 0.12) 48%, rgba(246, 249, 252, 0.84) 80%, rgba(246, 249, 252, 1) 100%);
  }
}

@media (max-width: 430px) {
  .hero-bg img {
    object-position: 43% top;
  }
}

/* Mobile process step fix: keep numbers inside the timeline, away from the heading */
@media (max-width: 720px) {
  .process-head {
    margin-bottom: 20px;
  }

  .process-head h2 {
    max-width: 330px;
    font-size: clamp(29px, 8.2vw, 36px);
  }

  .process-steps::before {
    top: 20px;
    bottom: 24px;
    left: 22px;
  }

  .process-step {
    padding-left: 60px;
  }

  .process-step span {
    top: 16px;
    left: 0;
    width: 42px;
    height: 42px;
    transform: none;
  }
}

/* Mobile hero actual truck layer: position the tanker as a controlled background object */
@media (max-width: 720px) {
  .hero-bg {
    background:
      linear-gradient(180deg, #f6f9fc 0%, #eef5fa 46%, #f6f9fc 100%);
  }

  .hero-bg img {
    position: absolute;
    top: 126px;
    right: -190px;
    width: 740px;
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.68;
    filter: saturate(1.06) contrast(1.04) brightness(1.04);
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(246, 249, 252, 1) 0%, rgba(246, 249, 252, 0.99) 48%, rgba(246, 249, 252, 0.8) 66%, rgba(246, 249, 252, 0.24) 100%),
      linear-gradient(180deg, rgba(246, 249, 252, 0.94) 0%, rgba(246, 249, 252, 0.56) 42%, rgba(246, 249, 252, 0.78) 66%, rgba(246, 249, 252, 1) 91%);
  }

  .hero-bg::after {
    background:
      radial-gradient(ellipse at 88% 35%, rgba(246, 249, 252, 0.02) 0%, rgba(246, 249, 252, 0.12) 34%, rgba(246, 249, 252, 0.64) 78%),
      linear-gradient(180deg, rgba(246, 249, 252, 0) 0%, rgba(246, 249, 252, 0.08) 48%, rgba(246, 249, 252, 0.92) 84%, rgba(246, 249, 252, 1) 100%);
  }

  .hero-copy,
  .order-card {
    position: relative;
    z-index: 3;
  }
}

@media (max-width: 430px) {
  .hero-bg img {
    top: 132px;
    right: -205px;
    width: 720px;
  }
}

/* Mobile cleanup final pass: controlled tanker scene and calmer commercial surfaces */
.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card.green {
  background:
    linear-gradient(145deg, rgba(239, 250, 244, 0.98), rgba(255, 255, 255, 0.94)),
    var(--paper);
}

.product-card.blue {
  background:
    linear-gradient(145deg, rgba(236, 247, 253, 0.98), rgba(255, 255, 255, 0.94)),
    var(--paper);
}

.product-card.orange {
  background:
    linear-gradient(145deg, rgba(255, 248, 232, 0.98), rgba(255, 255, 255, 0.94)),
    var(--paper);
}

.product-card.red {
  background:
    linear-gradient(145deg, rgba(255, 243, 238, 0.98), rgba(255, 255, 255, 0.94)),
    var(--paper);
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 6px 7px;
    border-color: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 38px rgba(7, 28, 53, 0.12);
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 30px;
    height: 38px;
    flex: 0 0 auto;
  }

  .brand strong {
    font-size: 14px;
    letter-spacing: -0.02em;
  }

  .phone-link {
    min-height: 38px;
    padding: 0 11px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.82);
  }

  .hero {
    min-height: 0;
    padding-top: 88px;
    padding-bottom: 28px;
    background:
      linear-gradient(180deg, #f7fafc 0%, #f1f7fb 54%, #f6f9fc 100%);
  }

  .hero-bg {
    inset: 0;
    overflow: hidden;
    background: #f6f9fc;
  }

  .hero-bg picture {
    position: absolute;
    inset: 0;
  }

  .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
    filter: saturate(1.08) contrast(1.04) brightness(1.03);
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(246, 249, 252, 0.96) 0%, rgba(246, 249, 252, 0.9) 45%, rgba(246, 249, 252, 0.36) 69%, rgba(246, 249, 252, 0.04) 100%),
      linear-gradient(180deg, rgba(246, 249, 252, 0.08) 0%, rgba(246, 249, 252, 0.18) 48%, rgba(246, 249, 252, 0.9) 88%, #f6f9fc 100%);
  }

  .hero-bg::after {
    background:
      radial-gradient(ellipse at 88% 32%, rgba(246, 249, 252, 0) 0%, rgba(246, 249, 252, 0.06) 38%, rgba(246, 249, 252, 0.46) 74%),
      linear-gradient(180deg, rgba(246, 249, 252, 0) 0%, rgba(246, 249, 252, 0.04) 48%, rgba(246, 249, 252, 0.8) 82%, #f6f9fc 100%);
  }

  .hero-grid {
    min-height: 0;
    gap: 24px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy .eyebrow {
    margin-bottom: 13px;
    border: 1px solid rgba(11, 79, 134, 0.12);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 20px rgba(7, 28, 53, 0.04);
  }

  h1 {
    max-width: 342px;
    margin-bottom: 15px;
    font-size: clamp(32px, 8.8vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .lead {
    max-width: 340px;
    color: #254561;
    font-size: 15.6px;
    line-height: 1.5;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 17px;
  }

  .hero-proof span {
    min-height: 68px;
    padding: 10px 11px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-left: 0;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(7, 28, 53, 0.08);
    backdrop-filter: blur(14px);
  }

  .hero-proof span:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-proof strong {
    margin-bottom: 2px;
    color: #082139;
    font-size: 17px;
  }

  .hero-points {
    gap: 7px;
    margin-top: 11px;
  }

  .hero-points span {
    padding: 8px 10px;
    border: 1px solid rgba(11, 79, 134, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #23445f;
    box-shadow: 0 8px 18px rgba(7, 28, 53, 0.045);
    backdrop-filter: blur(12px);
  }

  .order-card {
    gap: 10px;
    padding: 20px 17px 21px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 19px;
    background:
      radial-gradient(circle at 10% 0%, rgba(255, 195, 40, 0.16), transparent 34%),
      linear-gradient(150deg, rgba(12, 75, 116, 0.95), rgba(10, 47, 73, 0.97));
    box-shadow: 0 18px 42px rgba(7, 28, 53, 0.16);
  }

  .form-head p {
    font-size: 20px;
  }

  .form-head span,
  .privacy {
    color: rgba(255, 255, 255, 0.76);
  }

  input,
  select,
  textarea {
    border-color: rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(7, 28, 53, 0.04);
  }

  .trust {
    padding-top: 26px;
  }

  .trust article,
  .product-card,
  .client-grid article,
  details,
  .delivery-stats span {
    border-color: rgba(11, 79, 134, 0.12);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(7, 28, 53, 0.07);
  }

  .trust article {
    padding: 20px 18px 18px;
  }

  .trust h2 {
    font-size: clamp(25px, 7vw, 30px);
  }

  .icon,
  .product-icon {
    border-radius: 14px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(236, 247, 253, 0.92));
    box-shadow: 0 8px 18px rgba(11, 79, 134, 0.08);
  }

  .process-card {
    overflow: hidden;
    padding: 22px 17px 20px;
    border-radius: 18px;
    background:
      radial-gradient(circle at 0% 0%, rgba(255, 195, 40, 0.14), transparent 34%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 250, 0.82));
  }

  .process-head {
    margin-bottom: 18px;
  }

  .process-head h2 {
    max-width: 320px;
    font-size: clamp(28px, 7.8vw, 34px);
  }

  .process-steps {
    gap: 12px;
  }

  .process-steps::before {
    top: 20px;
    bottom: 22px;
    left: 21px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(11, 79, 134, 0.24), rgba(21, 135, 70, 0.28), rgba(255, 195, 40, 0.52));
  }

  .process-step {
    padding: 16px 15px 16px 58px;
    border-color: rgba(11, 79, 134, 0.11);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 9px 22px rgba(7, 28, 53, 0.055);
  }

  .process-step span {
    top: 16px;
    left: 0;
    width: 42px;
    height: 42px;
    border-color: rgba(11, 79, 134, 0.62);
    background: #fff;
    box-shadow: 0 8px 18px rgba(7, 28, 53, 0.09);
  }

  .products,
  .delivery,
  .faq {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(238, 246, 251, 0.54) 42%, rgba(255, 255, 255, 0));
  }

  .products-head p:not(.eyebrow),
  .clients .section-head p:not(.eyebrow),
  .delivery p:not(.eyebrow) {
    font-size: 16px;
  }

  .product-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 14px;
    align-items: start;
    padding: 18px;
  }

  .product-icon {
    grid-row: span 2;
    width: 46px;
    height: 46px;
    margin-bottom: 0;
  }

  .product-card h3 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .product-card p {
    grid-column: 2;
    font-size: 15.5px;
  }

  .clients {
    background:
      linear-gradient(180deg, #fff 0%, rgba(246, 249, 252, 0.82) 100%);
  }

  .client-grid span {
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 11px;
    background: rgba(255, 195, 40, 0.16);
    color: #a96a06;
  }

  .fleet-card {
    border-radius: 18px;
  }

  .fleet-copy {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 252, 0.96));
  }

  .fleet-copy li::before {
    display: inline-flex;
    width: 19px;
    height: 19px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(21, 135, 70, 0.12);
    color: var(--green);
    font-size: 12px;
  }

  .delivery-grid {
    gap: 22px;
  }

  .delivery-stats {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 18px;
  }

  .delivery-stats span {
    min-height: 92px;
    padding: 13px 12px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 252, 0.9));
  }

  .delivery-stats strong {
    margin-bottom: 3px;
    font-size: 18px;
    line-height: 1.08;
  }

  .route-list {
    margin-top: 15px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 195, 40, 0.32);
    border-left: 3px solid var(--amber);
    border-radius: 14px;
    background: rgba(255, 250, 239, 0.72);
  }

  .map-card {
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(7, 28, 53, 0.1);
  }

  .map-card iframe {
    height: 250px;
  }

  .map-caption {
    padding: 13px 15px 15px;
    background: rgba(255, 255, 255, 0.98);
  }

  .faq-grid {
    gap: 12px;
  }

  details {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(242, 248, 252, 0.9));
  }

  summary {
    min-height: 58px;
    font-size: 17px;
  }

  summary::after {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(11, 79, 134, 0.08);
    font-size: 20px;
  }

  .cta-card {
    border-radius: 18px;
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 195, 40, 0.22), transparent 36%),
      linear-gradient(145deg, #0b4f86, #093757);
    box-shadow: 0 18px 42px rgba(7, 28, 53, 0.16);
  }

}

@media (max-width: 430px) {
  .hero-bg img {
    object-position: center top;
  }

  h1 {
    max-width: 330px;
  }

  .lead {
    max-width: 326px;
  }
}

@media (max-width: 720px) {
  .hero-bg img {
    object-position: 63% top;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(246, 249, 252, 0.98) 0%, rgba(246, 249, 252, 0.94) 45%, rgba(246, 249, 252, 0.62) 63%, rgba(246, 249, 252, 0.16) 80%, rgba(246, 249, 252, 0) 100%),
      linear-gradient(180deg, rgba(246, 249, 252, 0.04) 0%, rgba(246, 249, 252, 0.08) 50%, rgba(246, 249, 252, 0.72) 86%, #f6f9fc 100%);
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(246, 249, 252, 0) 0%, rgba(246, 249, 252, 0.02) 52%, rgba(246, 249, 252, 0.76) 86%, #f6f9fc 100%);
  }
}

@media (max-width: 430px) {
  .hero-bg img {
    object-position: 65% top;
  }
}

/* Mobile recovery pass: calm commercial system after the failed truck-heavy version */
@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-bottom: 0;
    background:
      linear-gradient(180deg, #f7fafc 0%, #f4f8fb 48%, #f7fafc 100%);
  }

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

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

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 6px 7px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 32px rgba(7, 28, 53, 0.12);
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 30px;
    height: 38px;
    flex: 0 0 auto;
  }

  .brand strong {
    font-size: 13.8px;
    letter-spacing: -0.01em;
  }

  .phone-link {
    min-height: 38px;
    padding: 0 11px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.82);
  }

  .section {
    padding: 38px 0;
  }

  .process,
  .products,
  .fleet,
  .delivery,
  .clients,
  .faq {
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .hero {
    min-height: 0;
    padding-top: 86px;
    padding-bottom: 28px;
    background:
      radial-gradient(circle at 100% 18%, rgba(11, 79, 134, 0.055), transparent 38%),
      linear-gradient(180deg, #f8fbfd 0%, #f2f7fb 58%, #f6f9fc 100%);
  }

  .hero-bg {
    inset: 0;
    overflow: hidden;
    background: #f7fafc;
  }

  .hero-bg picture {
    position: absolute;
    inset: 0;
  }

  .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.62;
    filter: saturate(0.58) contrast(0.92) brightness(1.08);
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(248, 251, 253, 0.98) 0%, rgba(248, 251, 253, 0.96) 56%, rgba(248, 251, 253, 0.76) 78%, rgba(248, 251, 253, 0.62) 100%),
      linear-gradient(180deg, rgba(248, 251, 253, 0.32) 0%, rgba(248, 251, 253, 0.18) 48%, rgba(246, 249, 252, 0.92) 88%, #f6f9fc 100%);
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(246, 249, 252, 0) 0%, rgba(246, 249, 252, 0.08) 52%, rgba(246, 249, 252, 0.84) 86%, #f6f9fc 100%);
  }

  .hero-grid {
    min-height: 0;
    gap: 22px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-copy .eyebrow,
  .eyebrow {
    border: 1px solid rgba(11, 79, 134, 0.1);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.76);
    color: #0b4f86;
    box-shadow: 0 8px 18px rgba(7, 28, 53, 0.035);
  }

  h1 {
    max-width: 350px;
    margin-bottom: 15px;
    color: #071c35;
    font-size: clamp(32px, 8.65vw, 36px);
    line-height: 1.06;
    letter-spacing: -0.032em;
  }

  h2 {
    font-size: clamp(28px, 7.7vw, 35px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  h3 {
    letter-spacing: -0.025em;
  }

  .lead {
    max-width: 346px;
    color: #294b66;
    font-size: 15.6px;
    line-height: 1.5;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 17px;
  }

  .hero-proof span {
    min-height: 66px;
    padding: 10px 11px;
    border: 1px solid rgba(11, 79, 134, 0.09);
    border-left: 0;
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 252, 254, 0.84));
    color: #526c83;
    box-shadow: 0 10px 24px rgba(7, 28, 53, 0.06);
    backdrop-filter: blur(12px);
  }

  .hero-proof span:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-proof strong {
    margin-bottom: 2px;
    color: #082139;
    font-size: 17px;
  }

  .hero-points {
    gap: 7px;
    margin-top: 11px;
  }

  .hero-points span,
  .hero-points span:first-child {
    padding: 8px 10px;
    border: 1px solid rgba(11, 79, 134, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #294b66;
    box-shadow: none;
  }

  .order-card {
    gap: 10px;
    padding: 19px 17px 20px;
    border: 1px solid rgba(11, 79, 134, 0.12);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(11, 79, 134, 0.94), rgba(8, 56, 95, 0.96));
    box-shadow: 0 16px 34px rgba(7, 28, 53, 0.16);
  }

  .form-head p {
    font-size: 20px;
  }

  .form-head span,
  .privacy {
    color: rgba(255, 255, 255, 0.76);
  }

  input,
  select,
  textarea {
    min-height: 47px;
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.28);
  }

  .trust {
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .trust article,
  .trust article:nth-child(2),
  .product-card,
  .product-card.green,
  .product-card.blue,
  .product-card.orange,
  .product-card.red,
  .client-grid article,
  details,
  .delivery-stats span {
    border: 1px solid rgba(11, 79, 134, 0.11);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 254, 0.92));
    box-shadow: 0 10px 26px rgba(7, 28, 53, 0.058);
  }

  .trust article {
    padding: 19px 18px 18px;
  }

  .trust h2 {
    font-size: clamp(24px, 6.7vw, 29px);
  }

  .icon,
  .product-icon {
    border: 1px solid rgba(11, 79, 134, 0.13);
    border-radius: 13px;
    background: rgba(239, 247, 252, 0.82);
    color: #0b4f86;
    box-shadow: none;
  }

  .icon .accent,
  .product-icon .accent {
    stroke: #f4a51c;
  }

  .process-card {
    padding: 21px 17px 20px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 248, 252, 0.9));
    box-shadow: 0 12px 30px rgba(7, 28, 53, 0.07);
  }

  .process-head {
    margin-bottom: 18px;
  }

  .process-head h2 {
    max-width: 320px;
    font-size: clamp(28px, 7.7vw, 34px);
  }

  .process-steps {
    gap: 11px;
  }

  .process-steps::before {
    top: 19px;
    bottom: 22px;
    left: 21px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(11, 79, 134, 0.22), rgba(11, 79, 134, 0.13));
  }

  .process-step {
    padding: 15px 15px 15px 58px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 20px rgba(7, 28, 53, 0.045);
  }

  .process-step span {
    top: 15px;
    left: 0;
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(11, 79, 134, 0.56);
    background: #fff;
    color: #0b4f86;
    box-shadow: 0 6px 15px rgba(7, 28, 53, 0.07);
  }

  .process-step p {
    font-size: 15.5px;
  }

  .products,
  .delivery,
  .faq {
    background: transparent;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .products-head p:not(.eyebrow),
  .clients .section-head p:not(.eyebrow),
  .delivery p:not(.eyebrow) {
    color: #587089;
    font-size: 15.8px;
    line-height: 1.5;
  }

  .product-grid {
    gap: 11px;
  }

  .product-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 13px;
    min-height: 0;
    align-items: start;
    padding: 16px;
    color: #0b4f86;
  }

  .product-card.green,
  .product-card.blue,
  .product-card.orange,
  .product-card.red {
    color: #0b4f86;
  }

  .product-card::before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: rgba(244, 165, 28, 0.72);
    content: "";
  }

  .product-icon {
    grid-row: span 2;
    width: 43px;
    height: 43px;
    margin-bottom: 0;
  }

  .product-icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 2.15;
  }

  .product-card h3 {
    margin-bottom: 5px;
    color: #071c35;
    font-size: 19px;
  }

  .product-card p {
    grid-column: 2;
    margin-bottom: 0;
    color: #587089;
    font-size: 15px;
    line-height: 1.45;
  }

  .clients {
    background: #fff;
  }

  .clients-layout {
    gap: 20px;
  }

  .client-grid {
    gap: 11px;
  }

  .client-grid article {
    min-height: 0;
    padding: 17px;
  }

  .client-grid span {
    width: auto;
    height: auto;
    justify-content: flex-start;
    margin-bottom: 10px;
    border-radius: 0;
    background: transparent;
    color: #0b4f86;
  }

  .fleet-card {
    border-radius: 18px;
  }

  .fleet-copy {
    padding: 24px 20px 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 253, 0.96));
  }

  .fleet-copy li::before {
    background: rgba(11, 79, 134, 0.08);
    color: #0b4f86;
  }

  .fleet-card img {
    min-height: 220px;
    max-height: 280px;
  }

  .delivery-grid {
    gap: 20px;
  }

  .delivery-stats {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 16px;
  }

  .delivery-stats span {
    min-height: 86px;
    padding: 13px 12px;
    color: #587089;
  }

  .delivery-stats strong {
    margin-bottom: 3px;
    color: #0b4f86;
    font-size: 18px;
    line-height: 1.08;
  }

  .route-list {
    margin-top: 14px;
    padding: 12px 13px;
    border: 1px solid rgba(11, 79, 134, 0.1);
    border-left: 3px solid rgba(244, 165, 28, 0.72);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.82);
  }

  .map-card {
    border-radius: 17px;
    box-shadow: 0 12px 30px rgba(7, 28, 53, 0.08);
  }

  .map-card iframe {
    height: 238px;
  }

  .faq {
    padding-bottom: 34px;
  }

  .faq-grid {
    gap: 10px;
  }

  details {
    padding: 0 15px;
  }

  summary {
    min-height: 54px;
    gap: 12px;
    font-size: 16.5px;
    line-height: 1.2;
  }

  summary::after {
    width: 28px;
    height: 28px;
    background: rgba(11, 79, 134, 0.07);
    font-size: 19px;
  }

  details p {
    margin-bottom: 15px;
    font-size: 15.5px;
  }

  .final-cta {
    padding-top: 18px;
    padding-bottom: 32px;
  }

  .cta-card {
    padding: 24px 20px 22px;
    border-radius: 18px;
    background:
      linear-gradient(145deg, #0b4f86, #08385f);
    box-shadow: 0 16px 34px rgba(7, 28, 53, 0.14);
  }

  .cta-card h2 {
    font-size: clamp(27px, 7.5vw, 34px);
  }

  .footer {
    padding-bottom: 24px;
  }
}

@media (max-width: 430px) {
  h1 {
    max-width: 338px;
  }

  .lead {
    max-width: 332px;
  }
}

@media (max-width: 720px) {
  .order-card {
    border-color: rgba(11, 79, 134, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.95));
    color: #071c35;
    box-shadow: 0 16px 34px rgba(7, 28, 53, 0.11);
  }

  .form-head p {
    color: #071c35;
  }

  .form-head span,
  .privacy,
  .optional-comment summary {
    color: #587089;
  }

  label {
    color: #173350;
  }

  input,
  select,
  textarea {
    border-color: #dce6ef;
    background: #fff;
    color: #071c35;
  }

  .form-actions button:first-child {
    background: #ffc328;
    color: #082139;
  }

  button.secondary {
    border: 1px solid rgba(11, 79, 134, 0.16);
    background: rgba(11, 79, 134, 0.08);
    color: #0b4f86;
  }

  .optional-comment summary::after {
    color: #0b4f86;
  }
}

/* Final mobile polish: clean tanker hero, no sticky CTA, unified commercial cards */
@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: 0 !important;
    background: #f6f9fc;
  }

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

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

  .site-header {
    width: calc(100% - 20px);
    min-height: 58px;
    border: 1px solid rgba(11, 79, 134, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(7, 28, 53, 0.12);
    backdrop-filter: blur(18px);
  }

  .hero {
    isolation: isolate;
    min-height: 0;
    padding-top: 86px;
    padding-bottom: 30px;
    background:
      radial-gradient(circle at 94% 30%, rgba(11, 79, 134, 0.11), transparent 34%),
      linear-gradient(180deg, #f8fbfd 0%, #edf5fa 58%, #f6f9fc 100%);
  }

  .hero-bg {
    inset: 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 90% 24%, rgba(255, 195, 40, 0.1), transparent 24%),
      radial-gradient(ellipse at 100% 42%, rgba(11, 79, 134, 0.1), transparent 40%),
      linear-gradient(180deg, #f8fbfd 0%, #eef6fb 56%, #f6f9fc 100%);
  }

  .hero-bg picture {
    position: absolute;
    inset: 0;
    display: block;
  }

  .hero-bg img {
    position: absolute;
    top: 54px;
    right: -184px;
    bottom: auto;
    left: auto;
    width: 720px;
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: center top;
    opacity: 1;
    filter: saturate(0.82) contrast(1.34) brightness(0.98);
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, #f8fbfd 0%, rgba(248, 251, 253, 0.98) 47%, rgba(248, 251, 253, 0.72) 68%, rgba(248, 251, 253, 0.22) 100%),
      linear-gradient(180deg, rgba(248, 251, 253, 0.74) 0%, rgba(248, 251, 253, 0.22) 42%, rgba(246, 249, 252, 0.52) 76%, #f6f9fc 100%);
  }

  .hero-bg::after {
    background:
      radial-gradient(ellipse at 92% 38%, rgba(248, 251, 253, 0) 0%, rgba(248, 251, 253, 0.08) 34%, rgba(246, 249, 252, 0.46) 76%),
      linear-gradient(180deg, rgba(246, 249, 252, 0) 0%, rgba(246, 249, 252, 0.06) 56%, #f6f9fc 94%, #f6f9fc 100%);
  }

  .hero-copy,
  .order-card {
    position: relative;
    z-index: 2;
  }

  h1 {
    max-width: 352px;
    color: #071c35;
    font-size: clamp(32px, 8.5vw, 36px);
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  .lead {
    max-width: 350px;
    color: #294b66;
    font-size: 15.8px;
    line-height: 1.5;
  }

  .hero-proof span {
    border: 1px solid rgba(11, 79, 134, 0.08);
    border-left: 3px solid rgba(244, 165, 28, 0.82);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(7, 28, 53, 0.06);
    backdrop-filter: blur(12px);
  }

  .hero-points span {
    border-color: rgba(11, 79, 134, 0.08);
    background: rgba(255, 255, 255, 0.78);
  }

  .section {
    padding: 36px 0;
  }

  .trust,
  .process,
  .products,
  .clients,
  .fleet,
  .delivery,
  .faq {
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .section-head {
    margin-bottom: 18px;
  }

  h2 {
    font-size: clamp(27px, 7.4vw, 34px);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .trust article,
  .product-card,
  .client-grid article,
  details,
  .delivery-stats span {
    border: 1px solid rgba(11, 79, 134, 0.11);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 254, 0.94));
    box-shadow: 0 10px 24px rgba(7, 28, 53, 0.055);
  }

  .icon,
  .product-icon {
    border: 1px solid rgba(11, 79, 134, 0.12);
    border-radius: 13px;
    background: linear-gradient(145deg, #ffffff, #eef7fc);
    color: #0b4f86;
    box-shadow: 0 8px 18px rgba(11, 79, 134, 0.06);
  }

  .icon .accent,
  .product-icon .accent {
    stroke: #f4a51c;
  }

  .process-card {
    padding: 20px 17px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 248, 252, 0.92));
    box-shadow: 0 12px 28px rgba(7, 28, 53, 0.07);
  }

  .process-head {
    margin-bottom: 16px;
  }

  .process-head h2 {
    max-width: 328px;
    font-size: clamp(28px, 7.6vw, 34px);
  }

  .process-steps {
    gap: 10px;
  }

  .process-steps::before {
    top: 19px;
    bottom: 22px;
    left: 21px;
    width: 2px;
    background: linear-gradient(180deg, rgba(11, 79, 134, 0.22), rgba(11, 79, 134, 0.12));
  }

  .process-step {
    padding: 14px 15px 14px 58px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
  }

  .process-step span {
    top: 14px;
    left: 0;
    width: 42px;
    height: 42px;
    transform: none;
    border: 1.5px solid rgba(11, 79, 134, 0.56);
    background: #fff;
    color: #0b4f86;
  }

  .process-step h3 {
    font-size: 18.5px;
  }

  .process-step p {
    font-size: 15.2px;
    line-height: 1.48;
  }

  .products {
    background: linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
  }

  .product-grid {
    gap: 10px;
  }

  .product-card,
  .product-card.green,
  .product-card.blue,
  .product-card.orange,
  .product-card.red {
    --card-accent: #0b4f86;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 13px;
    min-height: 0;
    align-items: start;
    padding: 16px;
    overflow: hidden;
    color: #0b4f86;
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
  }

  .product-card.green {
    --card-accent: #158746;
  }

  .product-card.blue {
    --card-accent: #0b4f86;
  }

  .product-card.orange {
    --card-accent: #d88a08;
  }

  .product-card.red {
    --card-accent: #bd4d3d;
  }

  .product-card::before {
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--card-accent);
    opacity: 0.8;
  }

  .product-icon {
    grid-row: span 2;
    width: 43px;
    height: 43px;
    margin: 0;
    color: var(--card-accent);
  }

  .product-card h3 {
    margin-bottom: 5px;
    color: #071c35;
    font-size: 19px;
  }

  .product-card p {
    grid-column: 2;
    color: #587089;
    font-size: 15px;
    line-height: 1.45;
  }

  .clients {
    background: #fff;
  }

  .clients-layout {
    gap: 19px;
  }

  .client-grid {
    gap: 10px;
  }

  .client-grid article {
    padding: 16px;
  }

  .client-grid span {
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid rgba(244, 165, 28, 0.2);
    border-radius: 11px;
    background: rgba(255, 195, 40, 0.13);
    color: #9b6408;
  }

  .client-grid h3 {
    font-size: 19px;
  }

  .client-grid p {
    font-size: 15.2px;
    line-height: 1.48;
  }

  .final-cta {
    padding-bottom: 32px;
  }
}

@media (max-width: 430px) {
  .hero-bg img {
    top: 58px;
    right: -164px;
    width: 680px;
  }

  h1 {
    max-width: 342px;
  }

  .lead {
    max-width: 336px;
  }
}

/* Mobile rhythm tint pass: cleaner process cards and less draft-like white stacking */
@media (max-width: 720px) {
  .trust {
    background:
      linear-gradient(180deg, #f6f9fc 0%, #eef6fb 100%);
  }

  .process {
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 195, 40, 0.12), transparent 32%),
      linear-gradient(180deg, #eef6fb 0%, #f6f9fc 100%);
  }

  .products {
    background:
      radial-gradient(circle at 0% 8%, rgba(21, 135, 70, 0.06), transparent 32%),
      linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
  }

  .clients {
    background:
      radial-gradient(circle at 100% 8%, rgba(11, 79, 134, 0.06), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
  }

  .delivery,
  .faq {
    background:
      linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
  }

  .process-card {
    padding: 20px 16px;
    border: 1px solid rgba(11, 79, 134, 0.1);
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 195, 40, 0.13), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 251, 0.9));
  }

  .process-steps {
    gap: 11px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 0 14px;
    align-items: start;
    padding: 16px;
    overflow: hidden;
    border: 1px solid rgba(11, 79, 134, 0.1);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 253, 0.95));
    box-shadow: 0 10px 24px rgba(7, 28, 53, 0.055);
  }

  .process-step:nth-child(2) {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(240, 248, 252, 0.95));
  }

  .process-step:nth-child(3) {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 235, 0.78));
  }

  .process-step:nth-child(4) {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(241, 249, 245, 0.88));
  }

  .process-step span {
    position: static;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transform: none;
    border: 1.5px solid rgba(11, 79, 134, 0.42);
    border-radius: 50%;
    background: #fff;
    color: #0b4f86;
    font-size: 13px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(7, 28, 53, 0.065);
  }

  .process-step h3,
  .process-step p {
    grid-column: 2;
  }

  .process-step h3 {
    margin-top: 1px;
  }

  .trust article:nth-child(1),
  .client-grid article:nth-child(1) {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(239, 247, 252, 0.92));
  }

  .trust article:nth-child(2),
  .client-grid article:nth-child(2) {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 235, 0.82));
  }

  .trust article:nth-child(3),
  .client-grid article:nth-child(3),
  .client-grid article:nth-child(4) {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(241, 249, 245, 0.86));
  }
}

/* Mobile hero scene final: use a real composed truck image instead of a washed overlay */
@media (max-width: 720px) {
  .hero {
    background:
      radial-gradient(circle at 100% 34%, rgba(11, 79, 134, 0.1), transparent 36%),
      linear-gradient(180deg, #f8fbfd 0%, #eef6fb 56%, #f6f9fc 100%);
  }

  .hero-bg {
    background: #f7fbfd;
  }

  .hero-bg img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
    filter: saturate(0.96) contrast(1.03) brightness(1.02);
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(248, 251, 253, 0.99) 0%, rgba(248, 251, 253, 0.96) 44%, rgba(248, 251, 253, 0.55) 66%, rgba(248, 251, 253, 0.08) 100%),
      linear-gradient(180deg, rgba(248, 251, 253, 0.74) 0%, rgba(248, 251, 253, 0.2) 34%, rgba(248, 251, 253, 0.04) 58%, rgba(246, 249, 252, 0.6) 88%, #f6f9fc 100%);
  }

  .hero-bg::after {
    background:
      radial-gradient(ellipse at 82% 38%, rgba(248, 251, 253, 0) 0%, rgba(248, 251, 253, 0.04) 38%, rgba(246, 249, 252, 0.28) 82%),
      linear-gradient(180deg, rgba(246, 249, 252, 0) 0%, rgba(246, 249, 252, 0) 56%, rgba(246, 249, 252, 0.52) 88%, #f6f9fc 100%);
  }
}

@media (max-width: 430px) {
  .hero-bg img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center top;
  }
}

/* Mobile hero code background: no truck image, just a clean commercial scene */
@media (max-width: 720px) {
  .hero {
    background:
      linear-gradient(180deg, #f8fbfd 0%, #eef6fb 58%, #f6f9fc 100%);
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(248, 251, 253, 0.96) 0%, rgba(238, 246, 251, 0.94) 100%),
      linear-gradient(132deg, transparent 0 56%, rgba(11, 79, 134, 0.055) 56.2% 73%, transparent 73.2%),
      linear-gradient(132deg, transparent 0 77%, rgba(244, 165, 28, 0.2) 77.1% 77.55%, transparent 77.7%);
  }

  .hero-bg picture {
    display: none !important;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(248, 251, 253, 1) 0%, rgba(248, 251, 253, 0.98) 54%, rgba(248, 251, 253, 0.78) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.22) 42%, rgba(246, 249, 252, 0.7) 88%, #f6f9fc 100%);
  }

  .hero-bg::after {
    opacity: 1;
    background:
      linear-gradient(148deg, transparent 0 62%, rgba(11, 79, 134, 0.065) 62.2% 63%, transparent 63.2%),
      linear-gradient(148deg, transparent 0 70%, rgba(11, 79, 134, 0.04) 70.2% 71%, transparent 71.2%),
      linear-gradient(148deg, transparent 0 83%, rgba(244, 165, 28, 0.22) 83.1% 83.55%, transparent 83.75%),
      repeating-linear-gradient(170deg, rgba(11, 79, 134, 0.045) 0 1px, transparent 1px 18px);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 46%, #000 72%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 46%, #000 72%, #000 100%);
  }
}
