:root {
  --bg: #f3f5f2;
  --paper: #ffffff;
  --ink: #07151f;
  --muted: #516274;
  --line: rgba(11, 30, 43, 0.14);
  --blue: #0b4f86;
  --blue-2: #08385f;
  --graphite: #102332;
  --graphite-2: #071923;
  --steel: #e8eef1;
  --green: #158746;
  --yellow: #ffc328;
  --amber: #f4a51c;
  --radius: 9px;
  --card-radius: 14px;
  --panel-radius: 18px;
  --surface-line: rgba(11, 30, 43, 0.14);
  --surface-shadow: 0 14px 34px rgba(7, 21, 31, 0.08);
  --panel-shadow: 0 22px 58px rgba(7, 21, 31, 0.13);
  --font-main: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-main);
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 195, 40, 0.08), transparent 25%),
    linear-gradient(180deg, #f5f6f2 0%, #eef2f1 42%, #f7f7f3 100%);
}

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

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

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

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

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

.section {
  position: relative;
  padding: 54px 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.66);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 60px rgba(7, 21, 31, 0.14);
  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-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: 800;
  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,
.support-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link {
  padding: 0 12px;
  border: 1px solid rgba(16, 35, 50, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--graphite);
}

.contact-menu {
  position: relative;
}

.support-button {
  padding: 0 15px;
  border: 1px solid rgba(11, 79, 134, 0.22);
  background: var(--yellow);
  color: #082139;
  cursor: pointer;
  letter-spacing: -0.02em;
}

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

.support-button::after {
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  opacity: 0.76;
  transform: translateY(-2px) rotate(45deg);
}

.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, 21, 31, 0.16);
  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;
}

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

.hero {
  isolation: isolate;
  min-height: 670px;
  padding-top: 96px;
  padding-bottom: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 247, 242, 0.99) 0%, rgba(246, 247, 242, 0.94) 39%, rgba(246, 247, 242, 0.24) 73%),
    var(--steel);
}

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

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg::before {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(246, 247, 242, 0.04), rgba(8, 31, 49, 0.18) 48%, rgba(8, 31, 49, 0.38)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 31, 49, 0.3));
  content: "";
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(246, 247, 242, 0), rgba(246, 247, 242, 0.7) 94%),
    linear-gradient(90deg, rgba(246, 247, 242, 1) 0%, rgba(246, 247, 242, 0.9) 38%, rgba(246, 247, 242, 0.34) 58%, rgba(246, 247, 242, 0.06) 78%);
  content: "";
}

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

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

.hero-copy {
  display: flex;
  min-height: 0;
  flex-direction: column;
  max-width: 660px;
  padding-top: clamp(4px, 1vw, 16px);
}

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

.lead {
  max-width: 580px;
  margin-bottom: 0;
  color: #20384c;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.44;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.hero-proof span {
  min-width: 142px;
  padding: 10px 13px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.76);
  color: #455b6e;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(7, 21, 31, 0.07);
}

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

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

.hero-points span {
  padding: 9px 12px;
  border: 1px solid rgba(11, 79, 134, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: #2b465a;
  font-size: 13.5px;
  font-weight: 800;
}

.order-card {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  padding: 21px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 195, 40, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(13, 57, 86, 0.98), rgba(8, 32, 48, 0.99));
  color: #fff;
  box-shadow: 0 22px 54px rgba(7, 21, 31, 0.18);
}

.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: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.form-head span,
.privacy {
  color: rgba(255, 255, 255, 0.72);
  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.2);
  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;
}

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

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

.optional-comment summary {
  justify-content: flex-start;
  min-height: 22px;
  color: rgba(255, 255, 255, 0.76);
  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: "-";
}

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

.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: 800;
  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.86;
  text-align: center;
}

.trust {
  padding-top: 34px;
  padding-bottom: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(239, 243, 240, 0.42));
}

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

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

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

.trust article,
.product-card,
details,
.delivery-stats span,
.client-grid article {
  border: 1px solid var(--surface-line);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 245, 0.92));
  box-shadow: var(--surface-shadow);
}

.trust article {
  padding: 23px 23px 21px;
}

.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, 248, 229, 0.9));
}

.trust h2 {
  margin-bottom: 10px;
  font-size: clamp(25px, 2.2vw, 31px);
  line-height: 1.06;
}

.trust p,
.product-card p,
.client-grid p,
.delivery p,
details p,
.process-step p {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.52;
}

.icon,
.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 79, 134, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
}

.icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 15px;
}

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

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

.process {
  padding-top: 28px;
}

.process-card {
  padding: 32px 32px 30px;
  border: 1px solid var(--surface-line);
  border-radius: calc(var(--panel-radius) + 2px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 195, 40, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 238, 241, 0.82));
  box-shadow: var(--panel-shadow);
}

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

.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.55vw, 40px);
}

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

.process-steps::before {
  position: absolute;
  top: 20px;
  right: 13%;
  left: 13%;
  height: 0;
  border-top: 2px dashed rgba(11, 79, 134, 0.32);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  padding: 20px 20px 18px;
  border: 1px solid rgba(11, 30, 43, 0.12);
  border-radius: calc(var(--card-radius) + 1px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(7, 21, 31, 0.05);
}

.process-step span {
  position: absolute;
  top: -51px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(11, 79, 134, 0.78);
  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, 21, 31, 0.08);
}

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

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

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

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.48;
}

.products {
  background:
    radial-gradient(circle at 0% 12%, rgba(21, 135, 70, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(243, 245, 242, 0), rgba(255, 255, 255, 0.74));
}

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

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

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

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

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

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

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

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

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

.product-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17.5px;
}

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

.clients {
  background: #fff;
}

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

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

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

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

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

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

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

.fleet-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  min-height: 470px;
  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: 42px;
  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: 20px;
  font-size: clamp(30px, 2.55vw, 40px);
}

.fleet-copy ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  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: 30px;
}

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

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

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

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

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

.map-card {
  width: min(100%, 720px);
  justify-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: 330px;
  border: 0;
  background: #dfeaf2;
  filter: saturate(0.92) contrast(0.98);
}

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

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

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

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

details {
  padding: 0 18px;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 16px;
  cursor: pointer;
  font-weight: 800;
  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: -2px 0 16px;
}

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

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--panel-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 195, 40, 0.22), transparent 35%),
    linear-gradient(135deg, rgba(7, 28, 53, 0.94), rgba(7, 53, 88, 0.96));
  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(28px, 2.25vw, 36px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

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

.cta-card .button-light {
  border: 1px solid 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, 30, 43, 0.1);
  background: rgba(255, 255, 255, 0.58);
  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;
    gap: 30px;
  }

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

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

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

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

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

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: 0;
    background:
      linear-gradient(180deg, #f2f0e8 0%, #f6f4ee 44%, #f4f5f1 100%);
  }

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

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

  .section {
    padding: 38px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 6px 7px;
    border-color: rgba(255, 255, 255, 0.58);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 32px rgba(7, 21, 31, 0.18);
  }

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

  .brand-mark {
    width: 28px;
    height: 36px;
    flex: 0 0 auto;
  }

  .brand strong {
    font-size: 13px;
    letter-spacing: -0.018em;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .phone-link {
    min-width: 72px;
    min-height: 38px;
    padding: 0 9px;
    font-size: 0;
  }

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

  .support-button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12.5px;
  }

  .support-button::after {
    margin-left: 5px;
  }

  .contact-panel {
    right: 0;
    min-width: 142px;
  }

  .hero {
    min-height: 0;
    padding-top: 88px;
    padding-bottom: 28px;
    background:
      radial-gradient(circle at 96% 7%, rgba(255, 195, 40, 0.24), transparent 27%),
      radial-gradient(circle at 0% 16%, rgba(11, 79, 134, 0.22), transparent 36%),
      linear-gradient(145deg, #071923 0%, #0b2f47 52%, #102332 100%);
  }

  .hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 38px 38px;
    content: "";
    opacity: 0.35;
    pointer-events: none;
  }

  .hero-bg {
    background:
      radial-gradient(ellipse at 82% 18%, rgba(255, 195, 40, 0.18), transparent 33%),
      radial-gradient(ellipse at 45% 100%, rgba(255, 255, 255, 0.08), transparent 48%);
  }

  .hero-bg picture,
  .hero-bg img {
    display: none;
  }

  .hero-bg::before {
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(7, 25, 35, 0), rgba(7, 25, 35, 0.42));
  }

  .hero-bg::after {
    background:
      radial-gradient(ellipse at 80% 38%, rgba(255, 195, 40, 0.08), transparent 36%),
      linear-gradient(180deg, rgba(7, 25, 35, 0.06), rgba(7, 25, 35, 0.18));
  }

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

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

  .hero-copy .eyebrow {
    margin-bottom: 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: none;
  }

  h1 {
    max-width: 352px;
    margin-bottom: 15px;
    color: #fff;
    font-size: clamp(32px, 8.7vw, 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;
  }

  .lead {
    max-width: 346px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.6px;
    line-height: 1.5;
  }

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

  .hero-proof span {
    min-width: 0;
    min-height: 66px;
    padding: 10px 11px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 3px solid rgba(255, 195, 40, 0.88);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
  }

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

  .hero-proof strong {
    margin-bottom: 2px;
    color: #fff;
    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(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
  }

  .order-card {
    gap: 10px;
    padding: 19px 17px 20px;
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 248, 242, 0.96));
    color: #071c35;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  }

  .form-head p {
    color: #071c35;
    font-size: 20px;
  }

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

  label {
    color: #173350;
  }

  input,
  select,
  textarea {
    min-height: 47px;
    border-color: rgba(11, 30, 43, 0.13);
    border-radius: 12px;
    background: #fff;
    color: #071c35;
    font-size: 16px;
  }

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

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

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

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

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

  .trust {
    padding-top: 30px;
    background:
      linear-gradient(180deg, #f2f0e8 0%, #f6f4ee 100%);
  }

  .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, 30, 43, 0.12);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 248, 241, 0.92));
    box-shadow: 0 12px 28px rgba(7, 21, 31, 0.075);
  }

  .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.14);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.82);
    color: #0b4f86;
    box-shadow: none;
  }

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

  .process-card {
    padding: 21px 17px 20px;
    border-radius: 18px;
  }

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

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

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

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

  .process-steps::before {
    top: 19px;
    bottom: 22px;
    left: 21px;
    width: 2px;
    height: auto;
    border-top: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(11, 79, 134, 0.26), rgba(255, 195, 40, 0.48));
  }

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

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

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

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

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

  .product-grid {
    gap: 11px;
  }

  .product-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 13px;
    min-height: 0;
    align-items: start;
    padding: 16px;
    overflow: hidden;
    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.74);
    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;
    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 {
    margin-bottom: 10px;
    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, 246, 239, 0.96));
  }

  .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: #586675;
  }

  .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, 30, 43, 0.1);
    border-left: 3px solid rgba(244, 165, 28, 0.76);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.82);
  }

  .map-card {
    border-radius: 17px;
  }

  .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;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    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;
  }

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

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

@media (max-width: 430px) {
  .brand strong {
    font-size: 12.4px;
  }

  .phone-link {
    min-width: 66px;
    padding: 0 8px;
  }

  .support-button {
    padding: 0 9px;
  }

  h1 {
    max-width: 338px;
  }

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

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

  .brand strong {
    font-size: 12px;
  }

  .phone-link {
    min-width: 62px;
  }

  .support-button {
    padding: 0 8px;
  }
}
