/* NowPass Logistics — nowpass.one · Freight & Warehousing */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap');

:root {
  --bg: #f0f2f5;
  --bg-ink: #0a0e17;
  --surface: #ffffff;
  --surface-2: #e8ebf0;
  --text: #4a5568;
  --heading: #0a0e17;
  --muted: #8892a4;
  --border: #d8dde6;
  --cyan: #00c9a7;
  --cyan-dim: #00a88c;
  --orange: #ff6b35;
  --orange-dim: #e85a28;
  --violet: #6c5ce7;
  --glow: rgba(0, 201, 167, 0.15);
  --mesh: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0,201,167,.18), transparent), radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255,107,53,.12), transparent);
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow: 0 8px 32px rgba(10, 14, 23, 0.08);
  --shadow-lg: 0 24px 56px rgba(10, 14, 23, 0.12);
  --max: 1200px;
  --nav-h: 68px;
  --font: 'Manrope', system-ui, sans-serif;
  --font-display: 'Sora', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); font-size: 1rem; line-height: 1.65;
  color: var(--text); background: var(--bg);
  min-height: 100vh; display: flex; flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-dim); text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--orange); }
h1, h2, h3 { font-family: var(--font-display); color: var(--heading); line-height: 1.15; font-weight: 700; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; font-family: var(--font); font-weight: 700; }
p { margin: 0 0 1rem; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--cyan); color: var(--bg-ink); padding: .75rem 1rem; z-index: 9999; font-weight: 700; }
.skip-link:focus { left: 0; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* Nav — floating pill */
.topbar {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 200;
  width: calc(100% - 2rem); max-width: 900px;
  background: rgba(10, 14, 23, 0.92); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-pill); backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem .55rem .55rem 1.25rem; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: #fff; text-decoration: none;
}
.brand__icon { width: 34px; height: 34px; }
.brand b { color: var(--cyan); font-weight: 700; }
.menu-btn {
  display: none; background: rgba(255,255,255,.08); border: none;
  color: #fff; padding: .5rem .85rem; border-radius: var(--radius-pill);
  font-family: var(--font); font-weight: 600; font-size: .8rem; cursor: pointer;
}
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .15rem 1.4rem; }
.nav a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .875rem; font-weight: 600; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--cyan); }
.nav .cta-nav {
  background: var(--cyan); color: var(--bg-ink); padding: .5rem 1.1rem;
  border-radius: var(--radius-pill); font-weight: 700;
}
.nav .cta-nav:hover { background: #fff; color: var(--bg-ink); }

@media (max-width: 860px) {
  .menu-btn { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: calc(100% + .5rem);
    background: var(--bg-ink); border-radius: var(--radius-lg); padding: 1rem 1.25rem;
    border: 1px solid rgba(255,255,255,.1);
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: .75rem; }
  .nav .cta-nav { text-align: center; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.65rem; border-radius: var(--radius-pill);
  font-family: var(--font); font-weight: 700; font-size: .9rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn--cyan { background: var(--cyan); color: var(--bg-ink); }
.btn--cyan:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--glow); color: var(--bg-ink); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--dark { background: var(--bg-ink); color: #fff; }
.btn--dark:hover { background: var(--cyan-dim); color: #fff; }
.btn--outline { background: transparent; color: var(--heading); border-color: var(--border); }
.btn--outline:hover { border-color: var(--cyan-dim); color: var(--cyan-dim); }
.btn--sm { padding: .5rem 1.1rem; font-size: .82rem; }

/* Hero — centered mesh */
.landing {
  position: relative; padding: calc(var(--nav-h) + 4rem) 0 0;
  background: var(--bg-ink); color: rgba(255,255,255,.7); overflow: hidden;
  min-height: 92vh; display: flex; flex-direction: column;
}
.landing__mesh { position: absolute; inset: 0; background: var(--mesh); pointer-events: none; }
.landing__grid-bg {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 48px 48px;
}
.landing__center {
  position: relative; text-align: center; max-width: 52rem; margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.landing__pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem .4rem .5rem; border-radius: var(--radius-pill);
  background: rgba(0,201,167,.12); border: 1px solid rgba(0,201,167,.25);
  font-size: .78rem; font-weight: 700; color: var(--cyan); margin-bottom: 1.75rem;
}
.landing__pill span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.landing h1 { color: #fff; margin-bottom: 1.25rem; }
.landing h1 mark {
  background: none; color: var(--cyan);
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.landing__sub { font-size: 1.125rem; max-width: 38rem; margin: 0 auto 2rem; color: rgba(255,255,255,.55); }
.landing__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3.5rem; }
.landing__mockup {
  position: relative; max-width: 880px; margin: 0 auto;
  padding: 0 1.5rem 0;
}
.landing__mockup img {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid rgba(255,255,255,.1); border-bottom: none;
  box-shadow: 0 -20px 60px rgba(0,201,167,.15);
}
.landing__chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  padding: 1.5rem; background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
}
.landing__chip {
  padding: .65rem 1.25rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8);
}
.landing__chip strong { color: var(--cyan); margin-right: .35rem; }

/* Logo wall */
.logowall {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem;
  padding: 2rem 1.5rem; background: var(--surface); border-bottom: 1px solid var(--border);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}

/* Sections */
.block { padding: 5.5rem 0; }
.block--white { background: var(--surface); }
.block--gray { background: var(--bg); }
.block--ink { background: var(--bg-ink); color: rgba(255,255,255,.65); }
.block--ink h2, .block--ink h3 { color: #fff; }
.kicker {
  font-size: .72rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange); margin-bottom: .65rem;
}
.kicker--cyan { color: var(--cyan-dim); }
.headline { max-width: 36rem; margin-bottom: 3rem; }
.headline--center { text-align: center; margin-left: auto; margin-right: auto; }
.headline p { font-size: 1.05rem; margin-top: .65rem; }

/* Pillars — 3 col with numbers */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar {
  padding: 2rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar::after {
  content: attr(data-step); position: absolute; top: 1rem; right: 1.25rem;
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--bg); -webkit-text-stroke: 1px var(--border); opacity: .5;
}
.pillar__img { border-radius: var(--radius); margin-bottom: 1.25rem; border: 1px solid var(--border); }
.pillar h3 { margin-bottom: .5rem; }

@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }

/* Zigzag */
.zigzag { display: flex; flex-direction: column; gap: 5rem; }
.zigzag__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.zigzag__row:nth-child(even) .zigzag__pic { order: -1; }
.zigzag__pic img { border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.zigzag__points { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.zigzag__points li {
  padding: .6rem 0 .6rem 2rem; position: relative; font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.zigzag__points li::before {
  content: ""; position: absolute; left: 0; top: .85rem;
  width: 10px; height: 10px; border-radius: 2px; background: var(--cyan);
}

@media (max-width: 800px) {
  .zigzag__row, .zigzag__row:nth-child(even) .zigzag__pic { grid-template-columns: 1fr; }
  .zigzag__row:nth-child(even) .zigzag__pic { order: 0; }
}

/* Stat row */
.statrow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.statbox {
  text-align: center; padding: 2rem 1rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}
.statbox b {
  display: block; font-family: var(--font-display); font-size: 2.25rem;
  color: var(--cyan); margin-bottom: .3rem;
}
.statbox span { font-size: .82rem; color: rgba(255,255,255,.5); }

@media (max-width: 700px) { .statrow { grid-template-columns: repeat(2, 1fr); } }

/* Cards */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.25rem; }
.tile {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; transition: border-color .2s;
}
.tile:hover { border-color: var(--cyan); }
.tile--img { padding: 0; overflow: hidden; }
.tile--img .tile__visual { aspect-ratio: 16/10; overflow: hidden; }
.tile--img .tile__visual img { width: 100%; height: 100%; object-fit: cover; }
.tile--img .tile__text { padding: 1.5rem; }

/* Quotes */
.voices { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem; }
.voice {
  padding: 2rem; background: var(--surface); border-radius: var(--radius-lg);
  border-left: 4px solid var(--cyan);
}
.voice p { font-style: italic; margin-bottom: 1rem; }
.voice cite { font-style: normal; font-size: .85rem; }
.voice cite b { display: block; color: var(--heading); }

/* CTA strip */
.strip-cta {
  margin: 0 1.5rem 4rem; max-width: calc(var(--max) - 3rem); margin-inline: auto;
  padding: 3.5rem 2rem; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cyan) 0%, #00a88c 50%, var(--violet) 100%);
  text-align: center; color: var(--bg-ink);
}
.strip-cta h2 { color: var(--bg-ink); margin-bottom: .65rem; }
.strip-cta p { max-width: 32rem; margin: 0 auto 1.5rem; opacity: .85; }
.strip-cta .btn--dark { background: var(--bg-ink); color: #fff; }

/* Inner page */
.inner-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3rem;
  background: var(--bg-ink); color: rgba(255,255,255,.6);
}
.inner-hero h1 { color: #fff; }
.inner-hero__wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.inner-hero__img img { border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.1); }
@media (max-width: 800px) {
  .inner-hero__wrap { grid-template-columns: 1fr; }
  .inner-hero__img { order: -1; }
}

/* FAQ */
.qa { max-width: 44rem; }
.qa details {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: .65rem; background: var(--surface);
}
.qa summary {
  padding: 1.2rem 1.4rem; font-weight: 700; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; color: var(--heading);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; color: var(--cyan-dim); font-size: 1.2rem; }
.qa details[open] summary::after { content: "-"; }
.qa .qa-a { padding: 0 1.4rem 1.2rem; font-size: .95rem; }

/* Contact */
.form-side { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; }
.info-tile {
  padding: 1.35rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: .85rem;
}
.info-tile h3 { font-size: .9rem; margin-bottom: .3rem; }
.info-tile p { margin: 0; font-size: .9rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: .82rem; margin-bottom: .3rem; color: var(--heading); }
.field input, .field select, .field textarea {
  width: 100%; padding: .7rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: .95rem;
  background: var(--surface);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--glow);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-msg { margin-top: .75rem; font-size: .9rem; color: var(--cyan-dim); }
@media (max-width: 800px) { .form-side { grid-template-columns: 1fr; } .field-pair { grid-template-columns: 1fr; } }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.plan {
  padding: 2rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.plan--hot { border-color: var(--cyan); box-shadow: var(--shadow); position: relative; }
.plan--hot::before {
  content: "Popular"; position: absolute; top: -10px; left: 1.25rem;
  background: var(--orange); color: #fff; font-size: .65rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; padding: .2rem .65rem; border-radius: var(--radius-pill);
}
.plan .price { font-family: var(--font-display); font-size: 2rem; color: var(--heading); }
.plan .price small { font-size: .85rem; font-family: var(--font); color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 1.25rem 0 1.75rem; }
.plan li { padding: .3rem 0 .3rem 1.3rem; position: relative; font-size: .9rem; }
.plan li::before { content: ""; position: absolute; left: 0; top: .55rem; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }
@media (max-width: 800px) { .plans { grid-template-columns: 1fr; } }

/* Team */
.crew { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.25rem; }
.person {
  text-align: center; padding: 1.75rem 1rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.person img { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem; border: 2px solid var(--cyan); }
.person .role { font-size: .8rem; color: var(--cyan-dim); font-weight: 700; margin-bottom: .4rem; }
.person p { font-size: .85rem; }

/* Timeline */
.milestones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.milestone {
  padding: 1.5rem; border-top: 3px solid var(--orange);
  background: var(--surface); border-radius: 0 0 var(--radius) var(--radius);
  border: 1px solid var(--border); border-top-width: 3px; border-top-color: var(--orange);
}
.milestone h3 { font-size: 1rem; margin-bottom: .4rem; }
.milestone p { font-size: .88rem; margin: 0; }
@media (max-width: 700px) { .milestones { grid-template-columns: 1fr 1fr; } }

/* Prose */
.prose { max-width: 40rem; margin: 0 auto; }
.prose h2 { font-size: 1.25rem; margin: 2rem 0 .75rem; }
.prose p, .prose li { font-size: .93rem; }
.legal-note { font-size: .85rem; color: var(--muted); }

/* Footer */
.footer {
  margin-top: auto; background: var(--bg-ink); color: rgba(255,255,255,.5);
  padding: 4rem 0 2rem;
}
.footer__cols {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem;
}
.footer__cols .brand { margin-bottom: .75rem; }
.footer__cols p { font-size: .88rem; max-width: 20rem; }
.footer__cols h4 {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .85rem;
}
.footer__cols ul { list-style: none; padding: 0; margin: 0; }
.footer__cols li { margin-bottom: .5rem; }
.footer__cols a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .88rem; }
.footer__cols a:hover { color: #fff; }
.footer__end {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem;
}
.addr { font-style: normal; font-size: .85rem; line-height: 1.6; margin-top: 1rem; }
@media (max-width: 800px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__cols { grid-template-columns: 1fr; } }

/* Cookie */
.cookie-pop {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 300;
  max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.15rem 1.35rem; box-shadow: var(--shadow-lg);
  transform: translateY(150%); transition: transform .35s;
}
.cookie-pop.is-visible { transform: translateY(0); }
.cookie-pop p { margin: 0 0 .85rem; font-size: .88rem; }

/* Reveal */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .5s, transform .5s; }
.fade-up.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; } .landing__pill span { animation: none; } }
