:root {
  --ink: #14282f;
  --muted: #5e737a;
  --line: #d8e7e4;
  --paper: #fbf8ef;
  --surface: #ffffff;
  --teal: #0c5b66;
  --mint: #daf1eb;
  --sun: #ffbf4d;
  --coral: #f36f56;
  --blue: #2f7dd3;
  --shadow: 0 22px 60px rgba(20, 40, 47, .14);
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 239, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12, 91, 102, .12);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(12, 91, 102, .16);
}

.brand::after {
  content: "Vahos Delivery";
  color: var(--teal);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #27484f;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #e9f5f1;
  color: var(--teal);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(12, 91, 102, .22);
}

.secondary-cta {
  background: #fff;
  color: var(--teal);
  border: 1px solid var(--line);
  box-shadow: none;
}

main { overflow: hidden; }

.hero {
  max-width: 1180px;
  margin: 0 auto;
  min-height: calc(100vh - 76px);
  padding: 68px 22px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  color: var(--teal);
  font-weight: 850;
  font-size: 14px;
  text-transform: uppercase;
}

.dot {
  width: 42px;
  height: 10px;
  flex: 0 0 42px;
  display: inline-block;
  background:
    radial-gradient(circle at 5px 5px, var(--sun) 0 5px, transparent 5.5px),
    radial-gradient(circle at 21px 5px, var(--coral) 0 5px, transparent 5.5px),
    radial-gradient(circle at 37px 5px, var(--blue) 0 5px, transparent 5.5px);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 78px);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

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

.lead {
  max-width: 650px;
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 22px);
  color: #425e66;
}

.hero-actions,
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
  max-width: 700px;
}

.metric,
.card,
.feature-card,
.step,
.price-card,
.faq details,
.policy-box {
  background: var(--surface);
  border: 1px solid rgba(12, 91, 102, .14);
  border-radius: 8px;
}

.metric {
  padding: 16px;
}

.metric strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 191, 77, .44), rgba(218, 241, 235, .92)),
    repeating-linear-gradient(90deg, rgba(12, 91, 102, .08) 0 2px, transparent 2px 88px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rail-line {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
}

.rail-line.one { top: 18%; }
.rail-line.two { top: 45%; background: var(--coral); }
.rail-line.three { top: 72%; background: var(--blue); }

.station-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  border: 5px solid currentColor;
  box-shadow: 0 10px 20px rgba(20, 40, 47, .18);
}

.pin-a { top: calc(18% - 6px); left: 16%; color: var(--teal); }
.pin-b { top: calc(45% - 6px); right: 21%; color: var(--coral); }
.pin-c { top: calc(72% - 6px); left: 28%; color: var(--blue); }

.phone-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(310px, 66%);
  transform: translate(-50%, -50%) rotate(-2deg);
  padding: 14px;
  border-radius: 36px;
  background: #10282f;
  box-shadow: 0 24px 55px rgba(20, 40, 47, .28);
}

.phone-frame img {
  width: 100%;
  border-radius: 26px;
  background: #f5f5f5;
}

.floating-note {
  position: absolute;
  max-width: 190px;
  padding: 14px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(20, 40, 47, .15);
  font-size: 14px;
  font-weight: 800;
}

.floating-note small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 700;
}

.note-one { left: 28px; bottom: 36px; }
.note-two { right: 26px; top: 42px; }

.section {
  padding: 74px 22px;
}

.section.alt {
  background: #eef6f3;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 520px;
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }

.feature-card,
.card,
.step,
.price-card,
.policy-box {
  padding: 24px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e5f4ef;
  color: var(--teal);
  font-weight: 900;
  margin-bottom: 18px;
}

.feature-card p,
.step p,
.card p {
  margin-top: 10px;
}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 22px 54px;
}

.page-hero h1 {
  max-width: 960px;
}

.page-hero .lead {
  max-width: 760px;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 900;
  margin-bottom: 18px;
}

.price-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  margin: 8px 0;
  color: var(--teal);
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tag-list span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #eef6f3;
  border: 1px solid var(--line);
  color: #365b63;
  font-size: 13px;
  font-weight: 800;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #38575f;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.faq p {
  margin-top: 10px;
}

.site-footer {
  background: #10282f;
  color: white;
  padding: 48px 22px 28px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.site-footer a {
  display: block;
  color: #cfe2df;
  text-decoration: none;
  margin-top: 8px;
}

.site-footer p {
  color: #cfe2df;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #cfe2df;
  font-size: 14px;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .grid.three,
  .grid.two,
  .grid.four,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }
}

@media (max-width: 620px) {
  .brand img { width: 42px; height: 42px; }
  .nav-links a { padding: 8px 9px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; border-radius: 18px; }
  .phone-frame { width: min(250px, 72%); }
  .floating-note { display: none; }
  .section { padding: 54px 18px; }
  .page-hero { padding: 54px 18px 38px; }
}
