:root {
  --blue: #00315e;
  --blue-2: #0eb0e7;
  --yellow: #fbf315;
  --yellow-2: #fbf315;
  --ink: #102333;
  --muted: #5e6f7c;
  --white: #ffffff;
  --soft: #f4f7f9;
  --line: #dfe7ec;
  --shadow: 0 18px 50px rgba(0, 49, 94, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 10%, rgba(242, 196, 0, 0.17), transparent 28%),
    linear-gradient(135deg, #f8fbfd 0%, #eef4f7 100%);
}

a {
  color: inherit;
}

.page {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
}

.page::before {
  position: absolute;
  bottom: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(0, 49, 94, 0.05);
  content: "";
  pointer-events: none;
}

.topbar,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 10px 10px 10px 3px;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(0, 49, 94, 0.2);
  color: var(--white);
  font-size: 25px;
  font-weight: 800;
}

.brand-mark::after {
  position: absolute;
  right: -7px;
  bottom: 7px;
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background: var(--yellow);
  content: "";
  transform: rotate(8deg);
}

.brand-text strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-text span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.country-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 49, 94, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.flag {
  position: relative;
  width: 24px;
  height: 18px;
  border-radius: 2px;
  background: #d52b1e;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.flag::before,
.flag::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.flag::before {
  width: 10px;
  height: 4px;
}

.flag::after {
  width: 4px;
  height: 10px;
}

main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
  margin-block: auto;
  padding: 42px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
}

h1 {
  max-width: 760px;
  margin: 20px 0;
  color: var(--blue);
  font-size: clamp(44px, 7vw, 82px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 span {
  display: block;
  color: var(--blue-2);
}

.lead {
  max-width: 670px;
  margin: 0;
  color: #334b5e;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
}

.location {
  display: flex;
  max-width: 560px;
  align-items: flex-start;
  gap: 14px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 49, 94, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(0, 49, 94, 0.07);
}

.pin {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--blue);
  font-size: 21px;
  font-weight: 900;
}

.location strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 17px;
}

.location span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 49, 94, 0.2);
  color: var(--white);
}

.btn-primary:hover {
  background: #00294f;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
}

.btn-secondary:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.visual {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
}

.visual-card {
  position: relative;
  display: flex;
  width: min(100%, 520px);
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(0, 49, 94, 0.08);
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(241, 247, 250, 0.95)
  );
  box-shadow: var(--shadow);
}

.visual-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0 57%,
      rgba(242, 196, 0, 0.88) 57% 72%,
      transparent 72%
    ),
    linear-gradient(150deg, rgba(0, 49, 94, 0.95) 0 37%, transparent 37%);
  content: "";
  opacity: 0.98;
}

.warehouse {
  position: absolute;
  inset: 95px 48px 125px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95),
    rgba(226, 235, 240, 0.98)
  );
  box-shadow: 0 18px 36px rgba(0, 49, 94, 0.18);
}

.warehouse::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 55px;
  background: var(--blue);
  content: "";
}

.warehouse::after {
  position: absolute;
  top: 18px;
  left: 24px;
  color: var(--white);
  content: "LANGENTHAL";
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.door {
  position: absolute;
  bottom: 0;
  width: 70px;
  height: 118px;
  border: 5px solid var(--white);
  background: linear-gradient(#d8e2e7, #b9c9d2);
}

.door.one {
  left: 32px;
}

.door.two {
  left: 119px;
}

.door.three {
  left: 206px;
}

.truck {
  position: absolute;
  right: 42px;
  bottom: 82px;
  width: 168px;
  height: 68px;
}

.truck .cab {
  position: absolute;
  right: 0;
  bottom: 14px;
  width: 55px;
  height: 43px;
  border-radius: 10px 10px 5px 4px;
  background: #79c8eb;
  box-shadow: inset -8px -6px 0 rgba(0, 49, 94, 0.09);
}

.truck .trailer {
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 116px;
  height: 43px;
  border-radius: 6px 2px 2px 6px;
  background: var(--yellow);
}

.truck .wheel {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  border: 5px solid #d5dfe4;
  border-radius: 50%;
  background: #24343f;
}

.truck .wheel.w1 {
  left: 20px;
}

.truck .wheel.w2 {
  left: 92px;
}

.truck .wheel.w3 {
  right: 12px;
}

.visual-copy {
  position: relative;
  z-index: 2;
  max-width: 310px;
  padding: 20px 22px;
  border: 1px solid rgba(0, 49, 94, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(6px);
}

.visual-copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 22px;
}

.visual-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.mini-card {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: -18px;
  max-width: 175px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--blue);
  box-shadow: 0 16px 28px rgba(0, 49, 94, 0.2);
  color: var(--white);
}

.mini-card b {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow-2);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-card span {
  font-size: 13px;
  line-height: 1.4;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(0, 49, 94, 0.08);
  color: #6c7c88;
  font-size: 12px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: var(--blue);
}

@media (max-width: 900px) {
  main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 34px;
  }

  .visual {
    min-height: auto;
  }

  .visual-card {
    min-height: 470px;
  }

  .mini-card {
    right: 14px;
  }
}

@media (max-width: 620px) {
  .topbar,
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    padding-top: 18px;
  }

  .brand-text span {
    display: none;
  }

  .country-badge span:last-child {
    display: none;
  }

  main {
    padding: 28px 0 42px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 62px);
  }

  .lead {
    font-size: 18px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .visual-card {
    min-height: 410px;
    padding: 24px;
    border-radius: 26px;
  }

  .warehouse {
    inset: 82px 22px 112px;
  }

  .door.three {
    display: none;
  }

  .truck {
    right: 18px;
    bottom: 78px;
    transform: scale(0.86);
    transform-origin: right bottom;
  }

  .mini-card {
    top: 18px;
    right: 18px;
    max-width: 145px;
    padding: 13px 14px;
  }

  .visual-copy {
    max-width: 260px;
    padding: 16px 18px;
  }

  footer {
    flex-direction: column;
  }
}
