:root {
  --bg: #f4f6f7;
  --paper: #ffffff;
  --ink: #151719;
  --muted: #5f6972;
  --line: rgba(21, 23, 25, 0.12);
  --red: #e1352f;
  --red-dark: #ba2925;
  --green: #16a06c;
  --steel: #202a33;
  --steel-soft: #edf2f4;
  --gold: #f3b533;
  --blue: #2087d8;
  --shadow: 0 24px 80px rgba(16, 24, 32, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: white;
  background: rgba(13, 17, 20, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--red);
  border-radius: 8px;
  font-weight: 800;
}

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

.brand strong {
  font-family: Onest, Manrope, sans-serif;
  font-size: 16px;
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover,
.header-cta:hover {
  color: white;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: white;
  background: var(--red);
  border-radius: 8px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 91vh;
  overflow: hidden;
  color: white;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-logistics.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 11, 14, 0.88) 0%, rgba(8, 11, 14, 0.66) 42%, rgba(8, 11, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 11, 14, 0.62) 0%, rgba(8, 11, 14, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Onest, Manrope, sans-serif;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.1vw, 22px);
}

.hero-actions,
.hero-stats,
.quick-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.quick-contacts {
  flex-wrap: nowrap;
  margin-top: 0;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.btn.primary {
  color: white;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(199, 51, 47, 0.32);
}

.btn.primary:hover {
  background: var(--red-dark);
}

.btn.ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  gap: 0;
  width: min(760px, 100%);
  margin-top: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 13, 16, 0.5);
  border-radius: 12px;
  backdrop-filter: blur(16px);
}

.hero-stats div {
  flex: 1 1 180px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  font-family: Onest, Manrope, sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.intro-band {
  background: #182129;
  color: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  padding: 54px 0 24px;
}

.intro-grid h2,
.section h2 {
  margin: 0;
  font-family: Onest, Manrope, sans-serif;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.owner-strip {
  padding: 26px 0;
  background: linear-gradient(180deg, #182129 0%, var(--bg) 100%);
}

.owner-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.owner-card img {
  width: 150px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 14px;
  background: var(--steel-soft);
}

.owner-card h2 {
  margin: 0;
  font-family: Onest, Manrope, sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
}

.owner-card p:not(.section-kicker) {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.owner-actions {
  display: grid;
  gap: 10px;
  min-width: 220px;
}

.owner-actions .contact-chip.phone {
  width: auto;
  min-width: 250px;
  height: 66px;
  justify-content: flex-start;
  gap: 14px;
  padding: 7px 20px 7px 7px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(21, 23, 25, 0.06);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 900;
}

.intro-grid p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 54px;
}

.proof-grid div {
  min-height: 128px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-family: Onest, Manrope, sans-serif;
  color: white;
  font-size: 22px;
  line-height: 1.1;
}

.proof-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding: clamp(70px, 9vw, 112px) 0;
}

.muted {
  background: #e8e5dc;
}

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

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

.section-head p:not(.section-kicker),
.geography p,
.request-grid > div p,
.footer p {
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  min-height: 265px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(30, 34, 38, 0.05);
}

.icon {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3,
.steps h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.service-card p,
.steps p,
.fleet-item span {
  margin: 0;
  color: var(--muted);
}

.work-layout,
.request-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}

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

.fleet-item {
  min-height: 132px;
  padding: 24px;
  background: var(--steel);
  color: white;
  border-radius: 14px;
}

.fleet-item strong,
.fleet-item span {
  display: block;
}

.fleet-item strong {
  margin-bottom: 12px;
  font-size: 22px;
}

.fleet-item span {
  color: rgba(255, 255, 255, 0.74);
}

.geography {
  color: white;
  background: #161b1f;
}

.geography p {
  color: rgba(255, 255, 255, 0.74);
}

.route-panel {
  display: grid;
  gap: 12px;
}

.route-panel span {
  padding: 18px 20px;
  color: white;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-weight: 700;
}

.request-section {
  background: var(--paper);
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 23, 25, 0.16);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(215, 168, 69, 0.32);
  border-color: var(--gold);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note a {
  color: var(--blue);
  font-weight: 800;
}

.footer {
  padding: 38px 0;
  color: white;
  background: #101315;
}

.footer-grid {
  align-items: center;
}

.footer-brand {
  margin-bottom: 16px;
}

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

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  color: white;
  background: transparent;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  font-weight: 800;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.contact-chip svg {
  box-sizing: content-box;
  width: 28px;
  height: 28px;
  padding: 14px;
  fill: currentColor;
  flex: 0 0 auto;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 10px 20px rgba(0, 0, 0, 0.18);
}

.contact-chip:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.contact-chip.whatsapp {
  color: white;
}

.contact-chip.telegram {
  color: white;
}

.contact-chip.max {
  color: white;
}

.contact-chip.phone {
  color: white;
}

.contact-chip.whatsapp svg {
  color: white;
  background: #18a85f;
}

.contact-chip.telegram svg {
  color: white;
  background: #229ed9;
}

.contact-chip.max svg {
  color: white;
  background: linear-gradient(135deg, #17b6ff 0%, #5d55ff 48%, #a735e9 100%);
}

.contact-chip.phone svg {
  color: white;
  background: var(--red);
  width: 24px;
  height: 24px;
  padding: 14px;
  border-radius: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 22px rgba(225, 53, 47, 0.3);
}

.quick-contacts .contact-chip {
  width: 52px;
  height: 52px;
  padding: 0;
  color: white;
  background: transparent;
  border: 0;
}

.quick-contacts .contact-chip svg {
  width: 26px;
  height: 26px;
  padding: 13px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-note strong {
  color: white;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .service-grid,
  .intro-grid,
  .proof-grid,
  .owner-card,
  .work-layout,
  .request-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .owner-card {
    align-items: start;
  }

  .owner-actions {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-media {
    background-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 11, 14, 0.92) 0%, rgba(8, 11, 14, 0.7) 68%, rgba(8, 11, 14, 0.38) 100%),
      linear-gradient(0deg, rgba(8, 11, 14, 0.7) 0%, rgba(8, 11, 14, 0.08) 54%);
  }

  .hero-content {
    width: 100%;
    max-width: 1120px;
    padding: 118px 14px 34px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.04;
    max-width: 340px;
  }

  .hero-lead {
    max-width: 340px;
    font-size: 17px;
  }

  .hero-actions,
  .quick-contacts,
  .hero-stats {
    max-width: 340px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-contacts {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 0;
  }

  .quick-contacts .contact-chip {
    width: 50px;
    flex: 0 0 50px;
  }

  .hero-stats {
    margin-top: 30px;
  }

  .hero-stats div {
    flex-basis: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .service-grid,
  .proof-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    padding-bottom: 42px;
  }

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

  .owner-card {
    padding: 14px;
  }

  .owner-card img {
    width: 118px;
  }

  .owner-actions {
    display: grid;
  }

  .owner-actions .contact-chip.phone {
    width: 100%;
    min-width: 0;
  }

  .icon {
    margin-bottom: 34px;
  }

  .request-form {
    padding: 18px;
  }
}
