/* ================================================================
   ZipPage — styles.css
   Brand: Navy #14163A · Orange #F26A2E · Blue #5C83FF
   Fonts: Poppins (headings) · DM Sans (body)
   ================================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #F7F5F1;
  color: #0F172A;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.15; }

/* ── DESIGN TOKENS ── */
:root {
  --navy:        #14163A;
  --navy-light:  #1C1F4A;
  --navy-mid:    #252860;
  --orange:      #F26A2E;
  --orange-soft: #F5A23B;
  --blue:        #5C83FF;
  --surface:     #F7F5F1;
  --surface-2:   #EDEAE4;
  --ink:         #0F172A;
  --muted:       #64748B;
  --white:       #FFFFFF;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
}

/* ── UTILITIES ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.accent      { color: var(--orange); }
.accent-blue { color: var(--blue); }
.ink-soft    { color: var(--navy); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  border-radius: var(--radius-md);
}
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.btn--accent              { background: var(--orange); color: #fff; padding: 14px 30px; }
.btn--accent:hover        { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(242,106,46,.4); background: #df5e25; }

.btn--outline             { background: transparent; color: var(--ink); padding: 13px 28px; border: 1.5px solid rgba(15,23,42,.25); }
.btn--outline:hover       { border-color: var(--ink); background: rgba(15,23,42,.04); }

.btn--outline-light       { background: transparent; color: #fff; padding: 13px 28px; border: 1.5px solid rgba(255,255,255,.35); }
.btn--outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.btn--navy                { background: var(--navy); color: #fff; padding: 14px 30px; }
.btn--navy:hover          { background: var(--navy-light); transform: translateY(-2px); }

.btn--sm { padding: 9px 20px; font-size: 14px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0   rgba(242,106,46,.5); }
  50%       { box-shadow: 0 0 0 8px rgba(242,106,46,0); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
.reveal.d6 { transition-delay: .48s; }

/* ── NAVIGATION ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,245,241,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.07);
  transition: background .3s, box-shadow .3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(15,23,42,.08); }

.nav__inner {
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px;
  color: var(--ink); flex-shrink: 0;
}
.logo__mark {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo__mark svg  { display: block; }
.logo__zip       { color: var(--ink);    letter-spacing: 0; }
.logo__page      { color: var(--orange); letter-spacing: 0; margin-left: 0; }

/* Nav links */
.nav__links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav__links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover { color: var(--ink); }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: .3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(247,245,241,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 26px; font-weight: 700;
  color: var(--ink); text-decoration: none; transition: color .2s;
}
.mobile-menu a:hover    { color: var(--orange); }
.mobile-menu a.cta-mobile { color: var(--orange); }
.mobile-close {
  position: absolute; top: 22px; right: 26px;
  background: none; border: none;
  font-size: 28px; cursor: pointer; color: var(--ink);
}

/* ── HERO ── */
.hero {
  padding: 120px 0 80px;
  background: var(--surface);
  position: relative; overflow: hidden;
}
.hero__bg-glow {
  position: absolute; pointer-events: none;
  top: -60px; right: -80px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(242,106,46,.09) 0%, transparent 65%);
  border-radius: 50%;
}
.hero__bg-glow2 {
  position: absolute; pointer-events: none;
  bottom: -80px; left: -40px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(92,131,255,.07) 0%, transparent 65%);
  border-radius: 50%;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; position: relative;
}
.hero__copy { animation: fadeUp .7s ease both; }
.hero__chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white);
  border: 1px solid rgba(242,106,46,.25);
  border-radius: 100px; padding: 5px 14px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  margin-bottom: 24px;
}
.hero__chip svg { flex-shrink: 0; }

.hero h1 {
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 800; color: var(--ink); margin-bottom: 22px;
  animation: fadeUp .7s .08s ease both;
}
.hero h1 .word-navy { color: var(--navy); }

.hero__lead {
  font-size: 17px; line-height: 1.75; color: var(--muted);
  max-width: 480px; margin-bottom: 36px;
  animation: fadeUp .7s .16s ease both;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  animation: fadeUp .7s .24s ease both;
}
.hero__checks {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 36px;
  animation: fadeUp .7s .32s ease both;
}
.hero__checks span { font-size: 13px; color: var(--muted); font-weight: 500; }
.hero__checks span::before { content: '✓ '; color: var(--orange); font-weight: 700; }

/* Hero visual / mock */
.hero__visual {
  display: flex; justify-content: flex-end;
  animation: fadeUp .9s .1s ease both;
}
.mock {
  width: 100%; max-width: 430px;
  background: var(--navy); border-radius: var(--radius-xl); padding: 22px;
  box-shadow: 0 40px 80px rgba(20,22,58,.28), 0 0 0 1px rgba(92,131,255,.12);
  animation: floatY 5.5s ease-in-out infinite;
  position: relative;
}
.mock__dots { display: flex; align-items: center; gap: 7px; margin-bottom: 20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.dot--r { background: #FF5F57; }
.dot--y { background: #FEBC2E; }
.dot--g { background: #28C840; }
.mock__url {
  flex: 1; background: rgba(255,255,255,.06);
  border-radius: 5px; padding: 5px 12px;
  font-size: 12px; color: rgba(255,255,255,.4);
  font-family: 'DM Sans', monospace;
}
.mock__body { display: flex; flex-direction: column; gap: 9px; }
.bar { background: rgba(255,255,255,.1); border-radius: 4px; height: 10px; }
.bar--xs  { width: 40%; }
.bar--lg  { width: 90%; height: 14px; background: rgba(255,255,255,.18); }
.bar--md  { width: 72%; }
.bar--sm  { width: 55%; }
.mock__btns { display: flex; gap: 10px; margin-top: 6px; }
.mock__btn  { height: 34px; border-radius: 8px; flex: 1; }
.mock__btn--accent { background: var(--orange); }
.mock__btn--ghost  { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); }
.mock__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 12px; }
.mock__grid div { height: 52px; background: rgba(255,255,255,.06); border-radius: 8px; }
.mock__badge {
  position: absolute; bottom: -16px; right: 20px;
  background: var(--orange); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px;
  padding: 9px 18px; border-radius: 100px;
  box-shadow: 0 8px 24px rgba(242,106,46,.45);
}

/* ── MARQUEE STRIP ── */
.strip {
  background: var(--surface);
  border-top: 1px solid rgba(15,23,42,.07);
  border-bottom: 1px solid rgba(15,23,42,.07);
  padding: 22px 0; overflow: hidden;
}
.strip__label {
  text-align: center; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.strip__track { display: flex; gap: 40px; width: max-content; animation: marquee 20s linear infinite; }
.strip__item  { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px; color: rgba(15,23,42,.3); white-space: nowrap; }

/* ── SECTION BASE ── */
.section         { padding: 100px 0; }
.section--surface  { background: var(--surface); }
.section--surface2 { background: var(--surface-2); }
.section--white    { background: var(--white); }
.section--navy     { background: var(--navy); }

.section__head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px; margin-bottom: 52px;
}
.section__title {
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 700;
  color: var(--ink); margin-bottom: 14px;
}
.section--navy .section__title { color: var(--white); }
.section__lead {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  max-width: 580px; margin-bottom: 56px;
}
.section--navy .section__lead { color: rgba(255,255,255,.6); }

.link-accent {
  color: var(--blue); text-decoration: none; font-weight: 500;
  font-size: 14px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px; transition: gap .2s;
}
.link-accent:hover { gap: 8px; }

/* ── BENEFITS ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  background: var(--white);
  border: 1px solid rgba(15,23,42,.07);
  border-radius: var(--radius-lg); padding: 32px 26px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.feature:hover {
  border-color: rgba(242,106,46,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,23,42,.07);
}
.feature__icon {
  width: 46px; height: 46px; background: var(--navy);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.feature h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 9px; }
.feature p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service {
  background: var(--white);
  border: 1px solid rgba(15,23,42,.07);
  border-radius: var(--radius-lg); padding: 34px 30px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.service:hover {
  border-color: rgba(92,131,255,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,23,42,.07);
}
.service__icon { font-size: 28px; margin-bottom: 16px; display: block; }
.service h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.service p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg); padding: 30px 22px;
  transition: background .3s, border-color .3s, transform .3s;
}
.step:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(242,106,46,.35);
  transform: translateY(-4px);
}
.step__n {
  display: block; font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 28px; color: var(--orange); margin-bottom: 14px;
}
.step h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 9px; }
.step p  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ── DELIVERY ROWS ── */
.delivery { padding: 100px 0; background: var(--surface-2); }
.delivery__row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-bottom: 96px;
}
.delivery__row:last-child { margin-bottom: 0; }
.delivery__row.reverse { direction: rtl; }
.delivery__row.reverse > * { direction: ltr; }

.delivery__text .eyebrow { display: block; }
.delivery__text h3 { font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.delivery__text p  { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }

.delivery__checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.delivery__checks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink);
}
.delivery__checks li::before {
  content: '✓'; color: var(--orange); font-weight: 700; font-size: 13px;
  width: 20px; height: 20px; background: rgba(242,106,46,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.delivery__card {
  background: var(--navy); border-radius: var(--radius-xl); padding: 36px;
  box-shadow: 0 24px 60px rgba(20,22,58,.2); position: relative; overflow: hidden;
}
.delivery__card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(92,131,255,.18), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.delivery__card-icon  { font-size: 36px; margin-bottom: 20px; display: block; }
.delivery__card-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; color: var(--white); margin-bottom: 10px; }
.delivery__card-sub   { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 24px; }
.delivery__card-tags  { display: flex; flex-wrap: wrap; gap: 8px; }
.delivery__card-tag {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500;
}
.delivery__card-tag.orange { background: rgba(242,106,46,.15); border-color: rgba(242,106,46,.3); color: var(--orange-soft); }
.delivery__card-tag.blue   { background: rgba(92,131,255,.15); border-color: rgba(92,131,255,.3); color: #8AAEFF; }

/* ── FAQ ── */
.faq-wrap  { max-width: 720px; margin: 0 auto; }
.faq-list  { display: flex; flex-direction: column; gap: 10px; }
.faq-item  {
  background: var(--white); border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius-md); overflow: hidden; transition: border-color .3s;
}
.faq-item.open { border-color: rgba(242,106,46,.3); }
.faq-q {
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; color: var(--ink);
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600;
  text-align: left; transition: background .2s;
}
.faq-q:hover         { background: rgba(15,23,42,.02); }
.faq-q:focus-visible { outline: 2px solid var(--orange); outline-offset: -2px; }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(15,23,42,.06); display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; color: var(--muted);
  transition: transform .35s, background .3s, color .3s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(242,106,46,.12); color: var(--orange); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 24px; font-size: 14px; color: var(--muted); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── CTA FINAL ── */
.cta-section { padding: 80px 0 120px; background: var(--surface); }
.cta-box {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-box__glow {
  position: absolute; pointer-events: none;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,106,46,.14) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-box__glow2 {
  position: absolute; pointer-events: none;
  bottom: -60px; right: -40px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(92,131,255,.12), transparent 65%);
  border-radius: 50%;
}
.cta-box h2 {
  font-size: clamp(26px, 4vw, 48px); font-weight: 800; color: var(--white);
  margin-bottom: 16px; position: relative;
}
.cta-box p {
  font-size: 17px; color: rgba(255,255,255,.6);
  max-width: 480px; margin: 0 auto 36px; line-height: 1.7; position: relative;
}
.cta-box__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-note      { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,.35); position: relative; }

/* ── FOOTER ── */
footer { background: var(--surface); border-top: 1px solid rgba(15,23,42,.08); padding: 28px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer__copy  { font-size: 13px; color: var(--muted); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 32px; height: 32px; background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: 14px;
  transition: color .2s, background .2s, border-color .2s;
}
.footer__social a:hover { color: var(--orange); background: rgba(242,106,46,.08); border-color: rgba(242,106,46,.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__grid       { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual     { justify-content: center; order: -1; }
  .mock             { max-width: 460px; }
  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-grid     { grid-template-columns: repeat(2, 1fr); }
  .delivery__row    { grid-template-columns: 1fr; gap: 36px; }
  .delivery__row.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .nav__links       { display: none; }
  .nav__hamburger   { display: flex; }
  .hero             { padding: 100px 0 60px; }
  .hero h1          { font-size: 36px; }
  .benefits-grid    { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .process-grid     { grid-template-columns: 1fr; }
  .section__head    { flex-direction: column; align-items: flex-start; }
  .cta-box          { padding: 48px 28px; }
  .footer__inner    { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero__ctas       { flex-direction: column; }
  .hero__ctas .btn  { justify-content: center; }
  .cta-box__btns    { flex-direction: column; }
  .cta-box__btns .btn { justify-content: center; }
}
