:root {
  --bg: #eef1f4;
  --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: #eef1f4;
}

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 {
  display: inline-flex;
  width: 28px;
  height: 34px;
  flex: 0 0 auto;
  transform: rotate(5deg);
  filter: drop-shadow(0 2px 4px rgba(7, 21, 31, 0.16));
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.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-accent {
  color: var(--amber);
}

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

.hero-region {
  width: fit-content;
  margin: 16px 0 0;
  padding: 7px 12px;
  border: 1px solid rgba(11, 79, 134, 0.14);
  border-radius: 999px;
  background: rgba(11, 79, 134, 0.06);
  color: #2b465a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  margin-top: 20px;
}

.hero-cta {
  min-height: 46px;
  padding: 0 22px;
  box-shadow: 0 12px 28px rgba(255, 195, 40, 0.26);
}

.order-card {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  padding: 18px 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(11, 30, 43, 0.16);
  border-top: 3px solid var(--yellow);
  background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
  color: #071c35;
  box-shadow: 0 18px 42px rgba(7, 21, 31, 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 {
  padding: 12px 14px 10px;
  margin-bottom: 2px;
  border: 1px solid rgba(11, 30, 43, 0.1);
  border-radius: 10px;
  background: #eef1f4;
}

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

.form-head span,
.privacy {
  color: #586675;
  font-size: 13px;
}

.order-card label {
  display: grid;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #173350;
}

.order-card input,
.order-card select,
.order-card textarea {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(11, 30, 43, 0.18);
  border-radius: 9px;
  background: #f7f9fb;
  color: #071c35;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: inset 0 1px 2px rgba(7, 21, 31, 0.04);
}

.order-card select {
  padding-right: 34px;
  background-color: #f7f9fb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1.5 1.5L6 6L10.5 1.5' stroke='%23516274' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  -webkit-appearance: none;
  appearance: none;
}

.order-card textarea {
  min-height: 64px;
  padding-top: 9px;
  padding-bottom: 9px;
  line-height: 1.35;
}

.order-card input:focus,
.order-card select:focus,
.order-card textarea:focus {
  border-color: rgba(11, 79, 134, 0.48);
  background-color: #fff;
  box-shadow:
    inset 0 1px 2px rgba(7, 21, 31, 0.03),
    0 0 0 2px rgba(255, 195, 40, 0.22);
}

.order-card .optional-comment summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(11, 30, 43, 0.18);
  border-radius: 9px;
  background: #f7f9fb;
  color: #173350;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(7, 21, 31, 0.04);
}

.order-card .optional-comment summary::-webkit-details-marker {
  display: none;
}

.order-card .optional-comment summary::after {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  border: 1px solid rgba(11, 79, 134, 0.16);
  border-radius: 6px;
  background: rgba(11, 79, 134, 0.06);
  color: #0b4f86;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.order-card .optional-comment[open] summary {
  margin-bottom: 8px;
  border-color: rgba(11, 79, 134, 0.24);
  background: rgba(11, 79, 134, 0.04);
}

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: space-between;
  min-height: 22px;
  color: #586675;
  font-size: 13px;
  font-weight: 700;
}

.optional-comment summary::after {
  margin-left: 8px;
  color: #0b4f86;
  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: 4px;
  padding-top: 11px;
  border-top: 1px solid rgba(11, 30, 43, 0.1);
}

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

.form-submit {
  width: 100%;
  min-height: 48px;
  box-shadow: 0 10px 24px rgba(255, 195, 40, 0.28);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.form-status--success {
  border: 1px solid rgba(21, 135, 70, 0.22);
  background: rgba(21, 135, 70, 0.08);
  color: #0f5f34;
}

.form-status--error {
  border: 1px solid rgba(184, 90, 70, 0.22);
  background: rgba(184, 90, 70, 0.08);
  color: #8f3f30;
}

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(11, 79, 134, 0.18);
  background: rgba(11, 79, 134, 0.06);
  color: #0b4f86;
}

.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(238, 241, 244, 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(247, 249, 251, 0.95));
  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: #fff;
}

.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: env(safe-area-inset-bottom, 0px);
    background: #eef1f4;
  }

  .section-head h2,
  .process-head h2,
  .cta-card h2,
  h1 {
    text-wrap: balance;
  }

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

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

  .section {
    padding: 38px 0;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    padding: 5px 6px;
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 22px rgba(7, 21, 31, 0.12);
    backdrop-filter: blur(10px);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

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

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

  .brand small {
    display: none;
  }

  .header-actions {
    gap: 8px;
    align-items: center;
  }

  .phone-link {
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #173350;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-decoration: underline;
    text-decoration-color: rgba(11, 79, 134, 0.28);
    text-underline-offset: 2px;
  }

  .phone-link::before {
    content: none;
  }

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

  .support-button::after {
    margin-left: 4px;
    width: 4px;
    height: 4px;
  }

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

  .hero {
    min-height: 0;
    padding-top: 72px;
    padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
    background:
      radial-gradient(ellipse 130% 70% at 50% -18%, rgba(255, 195, 40, 0.16), transparent 58%),
      radial-gradient(ellipse 55% 42% at 100% 0%, rgba(11, 79, 134, 0.28), transparent 52%),
      linear-gradient(180deg, #071722 0%, #0a2436 58%, #0d1b28 100%);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-bg {
    background: radial-gradient(ellipse 70% 45% at 88% 6%, rgba(255, 195, 40, 0.09), transparent 62%);
  }

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

  .hero-bg::before {
    display: block;
    position: absolute;
    top: 42px;
    right: -34px;
    z-index: 0;
    width: 168px;
    height: 210px;
    border-radius: 46% 54% 52% 48%;
    background:
      radial-gradient(circle at 34% 26%, rgba(255, 195, 40, 0.24), transparent 44%),
      radial-gradient(circle at 64% 72%, rgba(11, 79, 134, 0.34), transparent 50%);
    opacity: 0.8;
    filter: blur(0.5px);
    pointer-events: none;
    content: "";
  }

  .hero-bg::after {
    background: linear-gradient(180deg, transparent 0%, transparent 58%, rgba(8, 20, 30, 0.72) 100%);
  }

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

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

  .hero-copy .eyebrow {
    margin-bottom: 14px;
    padding: 7px 11px 7px 10px;
    border: 1px solid rgba(255, 195, 40, 0.22);
    border-left: 3px solid var(--yellow);
    border-radius: 8px;
    background: rgba(255, 195, 40, 0.08);
    color: rgba(255, 255, 255, 0.95);
    box-shadow: none;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(30px, 8.2vw, 36px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero-copy .hero-accent {
    color: var(--yellow);
  }

  h2 {
    font-size: clamp(24px, 6.4vw, 30px);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .section-head h2,
  .products-head h2,
  .clients .section-head h2,
  .delivery h2,
  .process-head h2,
  .fleet-copy h2,
  .faq .section-head h2 {
    font-size: clamp(22px, 5.8vw, 27px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.028em;
  }

  .cta-card h2 {
    font-size: clamp(23px, 6.2vw, 28px);
    font-weight: 800;
  }

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

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
    margin-top: 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .hero-proof span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-height: 0;
    padding: 10px 7px;
    border: 1px solid rgba(255, 195, 40, 0.2);
    border-top: 2px solid var(--yellow);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .hero-proof span:first-child {
    border-left: 1px solid rgba(255, 195, 40, 0.2);
  }

  .hero-proof strong {
    display: block;
    color: #fff;
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
  }

  .hero-points span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12.5px;
    font-weight: 700;
    box-shadow: none;
  }

  .hero-region {
    margin-top: 12px;
    padding: 7px 11px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
    font-size: 10.5px;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-cta {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
    box-shadow: 0 10px 26px rgba(255, 195, 40, 0.32);
  }

  .order-card {
    gap: 8px;
    padding: 0 14px max(26px, calc(18px + env(safe-area-inset-bottom, 0px)));
    border: 1px solid rgba(255, 195, 40, 0.22);
    border-top: 3px solid var(--yellow);
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
    color: #071c35;
    box-shadow:
      0 0 0 1px rgba(7, 21, 31, 0.08),
      0 18px 42px rgba(7, 21, 31, 0.28);
  }

  .form-head {
    margin: 0 -14px 8px;
    padding: 14px 14px 12px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px 11px 0 0;
    background: linear-gradient(135deg, #0f2433 0%, #0b2f47 100%);
  }

  .form-head p {
    margin-bottom: 2px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.032em;
  }

  .form-head span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
  }

  .privacy {
    color: #586675;
  }

  .order-card label {
    gap: 3px;
    color: #173350;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .order-card input,
  .order-card select,
  .order-card textarea {
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    padding: 0 11px;
    border: 1px solid rgba(11, 30, 43, 0.18);
    border-radius: 9px;
    background: #f7f9fb;
    color: #071c35;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    box-shadow: inset 0 1px 2px rgba(7, 21, 31, 0.04);
    -webkit-appearance: none;
    appearance: none;
  }

  .order-card textarea {
    height: auto;
    min-height: 64px;
    max-height: none;
    padding: 9px 11px;
    line-height: 1.35;
  }

  .order-card input:focus,
  .order-card select:focus,
  .order-card textarea:focus {
    border-color: rgba(11, 79, 134, 0.48);
    background: #fff;
    box-shadow:
      inset 0 1px 2px rgba(7, 21, 31, 0.03),
      0 0 0 2px rgba(255, 195, 40, 0.2);
  }

  .optional-comment {
    margin-top: 1px;
  }

  .optional-comment summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 11px;
    border: 1px solid rgba(11, 30, 43, 0.18);
    border-radius: 9px;
    background: #f7f9fb;
    color: #173350;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    list-style: none;
  }

  .optional-comment summary::-webkit-details-marker {
    display: none;
  }

  .optional-comment summary::after {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    border: 1px solid rgba(11, 79, 134, 0.16);
    border-radius: 6px;
    background: rgba(11, 79, 134, 0.06);
    color: #0b4f86;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
  }

  .optional-comment[open] summary {
    margin-bottom: 7px;
    border-color: rgba(11, 79, 134, 0.22);
    background: rgba(11, 79, 134, 0.04);
  }

  .optional-comment[open] summary::after {
    background: rgba(255, 195, 40, 0.22);
    border-color: rgba(255, 195, 40, 0.45);
    color: #071923;
  }

  .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 {
    gap: 7px;
    margin-top: 4px;
    padding-top: 10px;
    padding-bottom: max(6px, env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(11, 30, 43, 0.1);
  }

  .form-actions button {
    min-height: 48px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 800;
  }

  .form-submit {
    min-height: 48px;
    box-shadow: 0 6px 18px rgba(255, 195, 40, 0.3);
  }

  .form-status {
    font-size: 13px;
  }

  button.secondary {
    min-height: 42px;
    border: 1px solid rgba(11, 79, 134, 0.2);
    background: rgba(255, 255, 255, 0.82);
    color: #0b4f86;
    font-size: 14px;
    font-weight: 700;
    box-shadow: none;
  }

  button.secondary:hover {
    box-shadow: none;
    transform: none;
    background: rgba(11, 79, 134, 0.06);
  }

  .privacy {
    margin-top: 1px;
    font-size: 11.5px;
    line-height: 1.32;
  }

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

  .trust {
    padding-top: 24px;
    padding-bottom: 26px;
    background: linear-gradient(135deg, #0f2433 0%, #0b2f47 100%);
    border-bottom: 3px solid var(--yellow);
  }

  .trust-grid {
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(7, 21, 31, 0.18);
  }

  .trust article,
  .trust article:nth-child(2) {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    box-shadow: none;
  }

  .trust article:last-child {
    border-bottom: 0;
  }

  .trust article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 12px;
    align-items: start;
    padding: 15px 14px;
  }

  .trust .icon {
    grid-row: span 2;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--yellow);
  }

  .trust .icon svg {
    width: 24px;
    height: 24px;
  }

  .trust h2 {
    grid-column: 2;
    margin-bottom: 4px;
    color: #fff;
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.2;
  }

  .trust p {
    grid-column: 2;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14.5px;
    line-height: 1.44;
  }

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

  .process-card {
    padding: 18px 15px 16px;
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-top: 3px solid var(--yellow);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(7, 21, 31, 0.07);
  }

  .process-head {
    min-height: 0;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(11, 30, 43, 0.08);
  }

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

  .process-head h2 {
    max-width: none;
    margin: 0;
    text-align: left;
  }

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

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

  .process-step {
    padding: 13px 13px 13px 12px;
    border-radius: 12px;
    background: #f7f9fb;
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-left: 3px solid rgba(11, 79, 134, 0.45);
    box-shadow: none;
  }

  .process-step span {
    width: 38px;
    height: 38px;
    font-size: 13px;
    border: 0;
    border-radius: 9px;
    background: #0b4f86;
    color: #fff;
    box-shadow: none;
  }

  .process-step h3 {
    font-size: 16px;
    font-weight: 700;
  }

  .process-step p {
    font-size: 14.5px;
    line-height: 1.42;
  }

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

  .section-head .eyebrow,
  .products-head .eyebrow,
  .process-head .eyebrow,
  .delivery .eyebrow,
  .faq .section-head .eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border: 1px solid rgba(11, 79, 134, 0.14);
    border-radius: 6px;
    background: rgba(11, 79, 134, 0.07);
    color: #0b4f86;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

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

  .products {
    background: #fff;
    border-top: 1px solid rgba(11, 30, 43, 0.06);
    border-bottom: 1px solid rgba(11, 30, 43, 0.06);
  }

  .product-grid {
    gap: 10px;
  }

  .product-card,
  .product-card.green,
  .product-card.blue,
  .product-card.orange,
  .product-card.red {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 12px;
    min-height: 0;
    align-items: start;
    padding: 14px 14px 14px 16px;
    overflow: hidden;
    color: #0b4f86;
    border: 1px solid rgba(11, 30, 43, 0.12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(7, 21, 31, 0.05);
  }

  .product-card::before {
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--amber);
    content: "";
  }

  .product-card.green::before { background: #158746; }
  .product-card.blue::before { background: #0b5f8f; }
  .product-card.orange::before { background: #d98a12; }
  .product-card.red::before { background: #b85a46; }

  .product-icon {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    border-radius: 10px;
    background: rgba(11, 79, 134, 0.08);
    border-color: rgba(11, 79, 134, 0.16);
  }

  .product-card.green .product-icon {
    background: rgba(21, 135, 70, 0.1);
    border-color: rgba(21, 135, 70, 0.2);
    color: #158746;
  }

  .product-card.blue .product-icon {
    background: rgba(11, 95, 143, 0.1);
    border-color: rgba(11, 95, 143, 0.2);
    color: #0b5f8f;
  }

  .product-card.orange .product-icon {
    background: rgba(217, 138, 18, 0.12);
    border-color: rgba(217, 138, 18, 0.22);
    color: #d98a12;
  }

  .product-card.red .product-icon {
    background: rgba(184, 90, 70, 0.12);
    border-color: rgba(184, 90, 70, 0.22);
    color: #b85a46;
  }

  .product-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.1;
  }

  .product-card h3 {
    margin-bottom: 3px;
    color: #071c35;
    font-size: 16.5px;
    font-weight: 700;
  }

  .product-card p {
    grid-column: 2;
    margin-bottom: 0;
    font-size: 14.5px;
    line-height: 1.42;
  }

  .clients {
    background: #102332;
    color: #fff;
  }

  .clients .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
  }

  .clients .section-head h2 {
    color: #fff;
  }

  .clients .section-head p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
  }

  .clients-layout {
    gap: 20px;
  }

  .client-grid {
    gap: 8px;
  }

  .client-grid article {
    min-height: 0;
    padding: 14px 14px 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }

  .client-grid span {
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 12px;
  }

  .client-grid h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
  }

  .client-grid p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14.5px;
  }

  .fleet {
    background: #fff;
  }

  .fleet-card {
    border-radius: 14px;
    border-color: rgba(11, 30, 43, 0.1);
    box-shadow: none;
    overflow: hidden;
  }

  .fleet-copy {
    padding: 20px 16px 18px;
    background: linear-gradient(180deg, #102332, #0b2f47);
    color: #fff;
  }

  .fleet-copy .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
  }

  .fleet-copy h2 {
    color: #fff;
  }

  .fleet-copy ul {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
  }

  .fleet-copy li::before {
    color: var(--yellow);
  }

  .fleet-card img {
    min-height: 200px;
    max-height: 260px;
  }

  .delivery-grid {
    gap: 20px;
  }

  .delivery {
    background: #eef1f4;
  }

  .delivery-grid > div:first-child {
    padding: 18px 16px 16px;
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-top: 3px solid var(--yellow);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(7, 21, 31, 0.07);
  }

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

  .delivery-stats span {
    min-height: 0;
    padding: 11px 11px 11px 13px;
    color: #586675;
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-radius: 10px;
    background: #f7f9fb;
    box-shadow: none;
    border-left: 3px solid rgba(11, 79, 134, 0.45);
  }

  .delivery-stats strong {
    margin-bottom: 2px;
    color: #0b4f86;
    font-size: 15.5px;
    line-height: 1.1;
  }

  .route-list {
    margin-top: 12px;
    padding: 11px 12px;
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-left: 3px solid var(--amber);
    border-radius: 10px;
    background: #f7f9fb;
    font-size: 14.5px;
    line-height: 1.44;
  }

  .map-card {
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(7, 21, 31, 0.07);
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-top: 3px solid var(--yellow);
    overflow: hidden;
  }

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

  .faq {
    padding-bottom: 30px;
    background: #eef1f4;
  }

  .faq-grid {
    gap: 10px;
  }

  details {
    padding: 0 14px;
    border: 1px solid rgba(11, 30, 43, 0.12);
    border-left: 3px solid rgba(11, 79, 134, 0.42);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(7, 21, 31, 0.05);
  }

  details[open] {
    border-left-color: var(--yellow);
  }

  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: 1px solid rgba(11, 79, 134, 0.16);
    border-radius: 8px;
    background: rgba(11, 79, 134, 0.06);
    color: #0b4f86;
    font-size: 17px;
    font-weight: 800;
  }

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

  .final-cta {
    padding-top: 12px;
    padding-bottom: 20px;
    background: #eef1f4;
  }

  .cta-card {
    padding: 22px 18px 20px;
    border-radius: 14px;
    gap: 18px;
    box-shadow: 0 14px 34px rgba(7, 21, 31, 0.2);
  }

  .cta-actions {
    gap: 8px;
  }

  .cta-actions .button:first-child {
    min-height: 50px;
    font-size: 15.5px;
    box-shadow: 0 10px 24px rgba(255, 195, 40, 0.28);
  }

  .cta-phone {
    min-height: 44px;
    font-size: 14.5px;
    font-weight: 700;
    opacity: 0.92;
  }

  .footer {
    padding: 20px 0 max(28px, calc(16px + env(safe-area-inset-bottom, 0px)));
    border-top: 1px solid rgba(11, 30, 43, 0.08);
    background: #eef1f4;
  }

  .footer .container {
    gap: 6px;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
  }

  .footer .container span:first-child {
    color: var(--ink);
    font-weight: 700;
  }
}

@media (max-width: 430px) {
  .site-header {
    width: calc(100% - 14px);
    padding: 4px 5px;
  }

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

  .phone-link {
    font-size: 11px;
  }

  .support-button {
    min-height: 32px;
    padding: 0 8px;
    font-size: 11.5px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(27px, 7.2vw, 31px);
  }

  .lead {
    max-width: 100%;
    font-size: 15px;
  }

  .order-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .delivery-time-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 7px;
  }

  .delivery-stats {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

@media (max-width: 720px) {
  .order-card {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    overflow: hidden;
    box-sizing: border-box;
  }

  .order-card > *,
  .order-card label,
  .fuel-volume-row,
  .delivery-time-row,
  .optional-comment,
  .form-actions,
  .privacy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

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

  .order-card input,
  .order-card select,
  .order-card textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .optional-comment textarea {
    min-height: 64px;
    max-height: none;
    height: auto;
  }

  .form-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    align-items: stretch;
  }

  .form-actions button {
    width: 100%;
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
    white-space: normal;
  }

  .process-card {
    overflow: hidden;
  }

  .process-steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding-top: 0;
  }

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

  .process-step {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 2px 11px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 13px 13px 13px 12px;
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-left: 3px solid rgba(11, 79, 134, 0.45);
    border-radius: 12px;
    background: #f7f9fb;
    box-shadow: none;
    box-sizing: border-box;
  }

  .process-step span {
    position: static;
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    transform: none;
    border: 0;
    border-radius: 9px;
    background: #0b4f86;
    color: #fff;
    box-shadow: none;
    font-size: 13px;
  }

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

  .process-step h3 {
    margin: 0;
    color: #071c35;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.16;
  }

  .process-step p {
    margin: 0;
    color: #586675;
    font-size: 14.5px;
    line-height: 1.42;
  }
}

@media (min-width: 721px) {
  body {
    background: #eef1f4;
  }

  body::before {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .trust.section {
    padding-top: 26px;
    padding-bottom: 26px;
    background: linear-gradient(135deg, #0f2433 0%, #0b2f47 100%);
    border-bottom: 3px solid var(--yellow);
  }

  .trust-grid {
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
  }

  .trust article,
  .trust article:nth-child(2) {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 13px;
    align-items: start;
    padding: 18px 20px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .trust article:last-child {
    border-right: 0;
  }

  .trust .icon {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    border-radius: 10px;
    border-color: rgba(255, 195, 40, 0.28);
    background: rgba(255, 195, 40, 0.1);
    color: var(--yellow);
  }

  .trust h2 {
    grid-column: 2;
    margin-bottom: 4px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
  }

  .trust p {
    grid-column: 2;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    line-height: 1.42;
  }

  .process {
    padding-top: 40px;
    padding-bottom: 46px;
    background: #fff;
  }

  .process-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

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

  .process-head .eyebrow {
    position: static;
    margin-bottom: 11px;
  }

  .process-head h2 {
    max-width: 620px;
    margin: 0;
    text-align: left;
    font-size: clamp(28px, 2.4vw, 36px);
    font-weight: 800;
    line-height: 1.08;
  }

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

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

  .process-steps {
    position: relative;
    gap: 12px;
  }

  .process-steps::after {
    position: absolute;
    top: 18px;
    right: 8%;
    left: 8%;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(11, 79, 134, 0.12), rgba(255, 195, 40, 0.35), rgba(11, 79, 134, 0.12));
    content: "";
  }

  .process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 16px 14px;
    border: 1px solid rgba(11, 30, 43, 0.08);
    border-top: 3px solid var(--yellow);
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
  }

  .process-step span {
    position: static;
    transform: none;
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    border: 0;
    border-radius: 8px;
    background: #0b4f86;
    color: #fff;
    font-size: 12px;
    box-shadow: none;
  }

  .process-step h3 {
    margin-bottom: 5px;
    font-size: 16.5px;
    font-weight: 700;
  }

  .process-step p {
    font-size: 14.5px;
    line-height: 1.44;
  }

  .products {
    background: #fff;
    border-bottom: 1px solid rgba(11, 30, 43, 0.06);
  }

  .product-grid {
    gap: 12px;
  }

  .product-card,
  .product-card.green,
  .product-card.blue,
  .product-card.orange,
  .product-card.red {
    position: relative;
    min-height: 0;
    padding: 18px 18px 17px 20px;
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
    color: var(--ink);
    overflow: hidden;
  }

  .product-card::before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--amber);
    content: "";
  }

  .product-card.green::before {
    background: #158746;
  }

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

  .product-card.orange::before {
    background: #d98a12;
  }

  .product-card.red::before {
    background: #b85a46;
  }

  .product-icon {
    margin-bottom: 12px;
    border-radius: 11px;
    background: rgba(11, 79, 134, 0.06);
  }

  .product-card h3 {
    font-size: 17px;
    font-weight: 700;
  }

  .clients {
    background: linear-gradient(145deg, #102332 0%, #0b2f47 100%);
  }

  .clients .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.94);
  }

  .clients .section-head h2 {
    color: #fff;
  }

  .clients .section-head p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
  }

  .client-grid article {
    min-height: 0;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }

  .client-grid span {
    margin-bottom: 10px;
    color: var(--yellow);
    font-size: 12px;
  }

  .client-grid h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
  }

  .client-grid p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
  }

  .fleet {
    background: #fff;
  }

  .fleet-card {
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-radius: 14px;
    box-shadow: none;
    min-height: 420px;
  }

  .fleet-copy {
    padding: 38px 36px;
    background: linear-gradient(145deg, #102332 0%, #0b2f47 100%);
    color: #fff;
  }

  .fleet-copy .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.94);
  }

  .fleet-copy h2 {
    color: #fff;
  }

  .fleet-copy ul {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15.5px;
  }

  .fleet-copy li::before {
    color: var(--yellow);
  }

  .delivery {
    background: #fff;
  }

  .delivery-stats span {
    padding: 14px 15px 14px 17px;
    border: 1px solid rgba(11, 30, 43, 0.09);
    border-left: 3px solid rgba(11, 79, 134, 0.45);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: none;
  }

  .route-list {
    padding: 12px 14px;
    border: 1px solid rgba(11, 30, 43, 0.09);
    border-left: 3px solid var(--amber);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 15px;
  }

  .map-card {
    border-radius: 12px;
    box-shadow: none;
    border-color: rgba(11, 30, 43, 0.1);
  }

  .faq {
    background: #fff;
    border-top: 1px solid rgba(11, 30, 43, 0.06);
  }

  .final-cta {
    background: #f7f9fb;
    padding-top: 24px;
  }

  .section-head h2,
  .process-head h2,
  .products-head h2,
  .clients .section-head h2,
  .delivery h2,
  .fleet-copy h2 {
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 800;
    letter-spacing: -0.035em;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .faq-grid {
    gap: 10px 12px;
  }

  details {
    border: 1px solid rgba(11, 30, 43, 0.1);
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
  }

  .footer {
    background: #eef1f4;
    border-top-color: rgba(11, 30, 43, 0.08);
  }
}

@media (min-width: 721px) and (max-width: 1040px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0;
  }

  .process-step span {
    position: static;
    transform: none;
  }
}
