:root {
  --bg: #fff8ed;
  --ink: #23201b;
  --muted: #73695c;
  --panel: #ffffff;
  --amber: #f4a51c;
  --blue: #1f5eff;
  --green: #13a76b;
  --line: #ead8bd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", Arial, sans-serif;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(255, 248, 237, 0.94);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
}
nav { display: flex; gap: 20px; }
nav a { color: var(--ink); text-decoration: none; font-weight: 900; font-size: .9rem; }

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
  padding: 78px 5vw;
  background:
    linear-gradient(90deg, transparent 0 46px, rgba(31,94,255,.08) 46px 50px, transparent 50px 96px),
    radial-gradient(circle at 82% 20%, rgba(244,165,28,.24), transparent 30%);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 900;
}
h1, h2 {
  margin: 0 0 22px;
  line-height: .95;
  letter-spacing: -0.06em;
}
h1 { font-size: clamp(3.4rem, 7.6vw, 7.8rem); max-width: 1100px; }
h2 { font-size: clamp(2.2rem, 5vw, 5.2rem); }
h3 { margin: 0 0 12px; color: var(--blue); }
p { color: var(--muted); line-height: 1.75; }
.hero-copy p:not(.eyebrow) { max-width: 840px; font-size: 1.16rem; }
.cta {
  display: inline-block;
  margin-top: 22px;
  padding: 16px 24px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 900;
  box-shadow: 8px 8px 0 var(--amber);
}

.parcel-board {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--panel);
  border: 3px solid var(--ink);
  border-radius: 30px;
  box-shadow: 18px 18px 0 var(--amber);
}
.parcel {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: #f3eadb;
  transition: transform .2s ease, background .2s ease;
}
.parcel span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: white;
}
.parcel.active {
  background: var(--green);
  color: white;
  transform: translateX(8px);
}

section { padding: 92px 5vw; }
.office h2 { max-width: 1050px; }
.office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.office-grid article {
  padding: 28px;
  min-height: 300px;
  background: var(--panel);
  border-radius: 26px;
  border-bottom: 8px solid var(--amber);
}

.routes {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  background: var(--blue);
}
.routes h2, .routes p, .routes .eyebrow { color: white; }
.route-list {
  display: grid;
  gap: 18px;
}
.route-list div {
  background: white;
  padding: 26px;
  border-radius: 26px;
}
.route-list span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--amber);
  font-weight: 900;
}
.route-list strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
}

.readiness {
  background: #f7ead6;
}
.checklist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.checklist button {
  min-height: 110px;
  border: 2px solid var(--line);
  border-radius: 20px;
  background: white;
  color: var(--ink);
  padding: 18px;
  font-weight: 900;
  cursor: pointer;
}
.checklist button.done {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.score {
  margin-top: 24px;
  font-size: 1.2rem;
  color: var(--blue);
  font-weight: 900;
}

.content {
  background: var(--panel);
}
.content p { max-width: 980px; font-size: 1.15rem; }
.contact {
  background: var(--amber);
  color: var(--ink);
}
.contact h2, .contact p, .contact a { color: var(--ink); }
.contact a { font-size: 1.6rem; font-weight: 900; }

@media (max-width: 940px) {
  .header { flex-direction: column; align-items: flex-start; gap: 14px; }
  nav { flex-wrap: wrap; }
  .hero, .routes { grid-template-columns: 1fr; }
  .office-grid, .checklist { grid-template-columns: 1fr; }
}
