:root {
  --red: #d71920;
  --red-dark: #aa1117;
  --black: #111214;
  --ink: #20242a;
  --muted: #66707a;
  --line: #dde3e8;
  --paper: #ffffff;
  --soft: #f5f6f4;
  --ice: #eaf1f4;
  --teal: #0b5b66;
  --teal-dark: #073d45;
  --shadow: 0 18px 50px rgba(17, 18, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 227, 232, 0.86);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 238px;
  height: 58px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #3d454d;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  padding: 8px 0;
}

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

.primary-btn,
.secondary-btn,
.quote-form button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: #f1f3f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-switcher button {
  min-width: 42px;
  min-height: 36px;
  padding: 0 12px;
  color: #4a535c;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: #fff;
  background: var(--black);
}

.language-switcher button:disabled {
  color: #9aa2aa;
  cursor: not-allowed;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.92) 0%, rgba(17, 18, 20, 0.72) 42%, rgba(17, 18, 20, 0.26) 78%),
    linear-gradient(180deg, rgba(17, 18, 20, 0.08) 0%, rgba(17, 18, 20, 0.42) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 64px;
  padding: 76px 0 56px;
}

.hero-copy {
  max-width: 730px;
}

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

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 76px);
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn {
  padding: 0 22px;
}

.primary-btn {
  color: #fff;
  background: var(--red);
}

.primary-btn:hover,
.quote-form button:hover {
  background: var(--red-dark);
}

.secondary-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.quote-form {
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: 24px;
  line-height: 1.2;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

label span {
  color: #38404a;
  font-size: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  color: var(--ink);
  background: #f0f2f4;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(215, 25, 32, 0.45);
  background: #fff;
}

.quote-form button {
  width: 100%;
  margin-top: 2px;
  color: #fff;
  border: 0;
  background: var(--red);
  font: inherit;
}

.quick-points {
  background: var(--black);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.quick-grid article {
  min-height: 178px;
  padding: 28px 24px;
  color: #fff;
  background: var(--black);
}

.point-mark {
  color: var(--red);
  font-weight: 800;
}

.quick-grid h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.quick-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.section h2,
.contact-section h2 {
  color: var(--black);
  font-size: clamp(32px, 4vw, 48px);
}

.section p,
.contact-section p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 76px;
  align-items: center;
}

.split p {
  max-width: 700px;
  font-size: 17px;
}

.about-section {
  background: var(--soft);
}

.about-panel {
  padding: 34px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 8px;
}

.company-name {
  font-size: 21px;
  font-weight: 800;
}

.company-brand {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  text-transform: uppercase;
}

.about-panel ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-panel li {
  padding-left: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.about-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 340px;
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 24px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 18, 20, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
}

.service-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: var(--red);
  background: rgba(215, 25, 32, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h3,
.offer-grid h3,
.process-list h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.25;
}

.service-card p,
.offer-grid p,
.process-list p {
  margin: 0;
  color: var(--muted);
}

.service-details {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-details li {
  position: relative;
  padding-left: 20px;
  color: #34404b;
  font-size: 14px;
  font-weight: 700;
}

.service-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--red);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.service-tags span {
  padding: 7px 9px;
  color: var(--teal-dark);
  background: var(--ice);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.service-visual {
  display: grid;
  place-items: center;
}

.service-visual::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 32px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
  opacity: 0.88;
}

.service-ship span,
.service-plane span,
.service-truck span,
.service-warehouse span,
.service-docs span,
.service-network span {
  position: absolute;
  z-index: 1;
}

.service-ship span:nth-child(1) {
  left: 50%;
  top: 50%;
  width: 110px;
  height: 34px;
  background: var(--black);
  border-radius: 4px 4px 18px 18px;
  transform: translate(-50%, 18px);
}

.service-ship span:nth-child(2) {
  left: 50%;
  top: 50%;
  width: 88px;
  height: 48px;
  background:
    linear-gradient(90deg, var(--red) 0 30%, var(--teal) 30% 65%, #fff 65% 68%, var(--black) 68%);
  border: 4px solid #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 3px var(--black);
  transform: translate(-50%, -34px);
}

.service-ship span:nth-child(3) {
  left: 50%;
  top: 50%;
  width: 82px;
  height: 4px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 14px 0 rgba(11, 91, 102, 0.32);
  transform: translate(-50%, 70px);
}

.service-plane span:nth-child(1) {
  left: 50%;
  top: 50%;
  width: 118px;
  height: 18px;
  background: var(--black);
  border-radius: 999px;
  transform: translate(-50%, -4px) rotate(-18deg);
}

.service-plane span:nth-child(2) {
  left: 50%;
  top: 50%;
  width: 62px;
  height: 82px;
  background: var(--red);
  clip-path: polygon(50% 0, 66% 40%, 100% 100%, 50% 82%, 0 100%, 34% 40%);
  transform: translate(-48%, -48%) rotate(-18deg);
}

.service-plane span:nth-child(3) {
  left: 50%;
  top: 50%;
  width: 84px;
  height: 4px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: -28px 16px 0 rgba(11, 91, 102, 0.3), 28px -18px 0 rgba(11, 91, 102, 0.22);
  transform: translate(-50%, 64px);
}

.service-truck span:nth-child(1) {
  left: 50%;
  top: 50%;
  width: 92px;
  height: 48px;
  background: var(--black);
  border-radius: 6px;
  transform: translate(-60%, -14px);
}

.service-truck span:nth-child(2) {
  left: 50%;
  top: 50%;
  width: 44px;
  height: 38px;
  background: var(--red);
  border-radius: 5px 5px 12px 5px;
  transform: translate(40px, -4px);
}

.service-truck span:nth-child(3) {
  left: 50%;
  top: 50%;
  width: 21px;
  height: 21px;
  background: #fff;
  border: 5px solid var(--teal-dark);
  border-radius: 50%;
  box-shadow: 72px 0 0 -5px #fff, 72px 0 0 0 var(--teal-dark);
  transform: translate(-62px, 38px);
}

.service-warehouse span:nth-child(1) {
  left: 50%;
  top: 50%;
  width: 112px;
  height: 90px;
  background: var(--black);
  clip-path: polygon(0 34%, 50% 0, 100% 34%, 100% 100%, 0 100%);
  transform: translate(-50%, -22px);
}

.service-warehouse span:nth-child(2) {
  left: 50%;
  top: 50%;
  width: 30px;
  height: 52px;
  background: var(--red);
  box-shadow: 40px 0 0 var(--teal);
  transform: translate(-36px, 16px);
}

.service-warehouse span:nth-child(3) {
  left: 50%;
  top: 50%;
  width: 94px;
  height: 4px;
  background: #fff;
  opacity: 0.62;
  transform: translate(-47px, -2px);
}

.service-docs span:nth-child(1) {
  left: 50%;
  top: 50%;
  width: 78px;
  height: 104px;
  background: #fff;
  border: 4px solid var(--black);
  border-radius: 7px;
  box-shadow: 16px 14px 0 var(--ice);
  transform: translate(-58%, -58%);
}

.service-docs span:nth-child(2) {
  left: 50%;
  top: 50%;
  width: 48px;
  height: 5px;
  background: var(--red);
  box-shadow: 0 18px 0 var(--teal), 0 36px 0 var(--black);
  transform: translate(-68%, -44px);
}

.service-docs span:nth-child(3) {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 42px;
  background: rgba(215, 25, 32, 0.08);
  border: 4px solid var(--red);
  border-radius: 5px;
  transform: translate(10px, 26px);
}

.service-docs span:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 24px;
  height: 13px;
  border-left: 5px solid var(--red);
  border-bottom: 5px solid var(--red);
  transform: rotate(-45deg);
}

.service-network span:nth-child(1) {
  left: 50%;
  top: 50%;
  width: 68px;
  height: 82px;
  background: #fff;
  border: 4px solid var(--black);
  border-radius: 7px;
  box-shadow: 12px 12px 0 var(--ice);
  transform: translate(-78%, -62%);
}

.service-network span:nth-child(1)::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 20px;
  width: 38px;
  height: 5px;
  background: var(--red);
  box-shadow: 0 18px 0 var(--teal), 0 36px 0 var(--black);
}

.service-network span:nth-child(2) {
  left: 50%;
  top: 50%;
  width: 66px;
  height: 44px;
  background: var(--black);
  border-radius: 5px;
  transform: translate(-22px, 22px);
}

.service-network span:nth-child(3) {
  left: 50%;
  top: 50%;
  width: 42px;
  height: 32px;
  background: var(--red);
  border-radius: 5px 5px 12px 5px;
  transform: translate(34px, 28px);
}

.service-network span:nth-child(3)::before,
.service-network span:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 5px solid var(--teal-dark);
  border-radius: 50%;
}

.service-network span:nth-child(3)::before {
  left: -46px;
}

.service-network span:nth-child(3)::after {
  right: 3px;
}

.service-network::after {
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  width: 96px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
  opacity: 0.9;
  transform: translate(-36%, 4px);
  box-shadow: 0 22px 0 rgba(11, 91, 102, 0.28);
}

.offer-section {
  color: #fff;
  background: var(--black);
}

.offer-section h2,
.offer-section .section-kicker {
  color: #fff;
}

.offer-section .section-kicker {
  color: #ff565d;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.offer-grid article {
  min-height: 190px;
  padding: 26px;
  background: #1b1d21;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.offer-grid h3 {
  margin-top: 0;
  color: #fff;
}

.offer-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.process-section {
  background: var(--soft);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-list article {
  min-height: 210px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span {
  color: var(--red);
  font-size: 26px;
  font-weight: 800;
}

.why-section {
  background: #fff;
}

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

.why-grid article {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(234, 241, 244, 0.68), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 8px;
}

.why-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--black);
  border-radius: 6px;
  font-weight: 800;
}

.why-grid h3 {
  margin: 4px 0 0;
  color: var(--black);
  font-size: 22px;
  line-height: 1.25;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
}

.why-grid strong {
  margin-top: 4px;
  padding-top: 16px;
  color: var(--teal-dark);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.contact-section {
  padding: 84px 0;
  color: #fff;
  background: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 70px;
  align-items: center;
}

.contact-section h2,
.contact-section p,
.contact-section .section-kicker {
  color: #fff;
}

.contact-details {
  display: grid;
  gap: 10px;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
}

.contact-details strong {
  color: var(--black);
  font-size: 22px;
}

.contact-details span {
  color: var(--muted);
}

.contact-details a {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  padding: 26px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner img {
  width: 210px;
  height: 52px;
  object-fit: contain;
}

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

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    max-width: 620px;
  }

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

  .service-grid,
  .process-list,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }
}

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

  .header-inner {
    width: min(100% - 24px, 1240px);
    min-height: 68px;
    gap: 12px;
  }

  .brand img {
    width: 182px;
    height: 48px;
  }

  .language-switcher button {
    min-width: 38px;
    min-height: 34px;
    padding: 0 9px;
  }

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

  .hero-grid {
    gap: 30px;
    padding: 58px 0 44px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .form-grid,
  .quick-grid,
  .service-grid,
  .offer-grid,
  .process-list,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding: 68px 0;
  }

  .about-panel,
  .quote-form,
  .service-card,
  .process-list article,
  .contact-details {
    padding: 22px;
  }

  .service-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 180px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
