: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.gray {
  color: #6f7f8d;
}

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

.mobile-cta {
  display: none;
}

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

  .product-card-request {
    grid-column: 1 / -1;
  }

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

  body {
    padding-bottom: 74px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 40;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 0.9fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(16, 35, 50, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(7, 28, 53, 0.2);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--steel);
    color: var(--graphite);
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-cta a:nth-child(2) {
    background: var(--green);
    color: #fff;
  }
}


/* Strong typography pass */
.site-header, .order-card, .mobile-cta {
  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-card-request {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 0;
  padding: 22px 24px;
  border-color: rgba(244, 165, 28, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 235, 0.72)),
    var(--paper);
}

.product-card-request .product-icon {
  margin-bottom: 0;
}

.product-card-request h3 {
  margin-bottom: 6px;
}


/* Product section refinement responsive safety */

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

  .product-card-request {
    grid-column: 1 / -1;
  }
}

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

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

  .product-card-request {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card-request .product-icon {
    margin-bottom: 0;
  }
}

/* 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;
  }

  .product-card-request {
    padding: 22px 20px;
  }

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

  .mobile-cta {
    right: 12px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 12px;
    gap: 6px;
    padding: 6px;
    border-radius: 18px;
    transition:
      transform 0.24s ease,
      opacity 0.24s ease;
  }

  .mobile-cta a {
    min-height: 44px;
    border-radius: 13px;
    font-size: 13.5px;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }
}

/* 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;
  }
}

/* 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;
}

.product-card-request {
  padding: 18px 22px;
}

.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%);
  }
}
