/* public/landing/style.css — PickUpPro marketing landing page.
   Same design tokens as the customer/driver/admin apps: black / white /
   cherry-red, JetBrains Mono for labels & numbers. */

:root {
  --ink: #0E0E0E;
  --paper: #FFFFFF;
  --bg: #F7F6F4;
  --line: #E3E2DF;
  --line-soft: #ECEBE8;
  --muted: #8A8A87;
  --faint: #B4B2AE;
  --red: #DA1A32;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono { font-family: "JetBrains Mono", monospace; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 720px; }

.eyebrow { font-size: 11px; letter-spacing: 2px; color: var(--red); font-weight: 700; margin-bottom: 12px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line-soft);
}
.header-row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 9px; }
.brand-dot { width: 14px; height: 14px; background: var(--red); border-radius: 2px; flex-shrink: 0; }
.brand-name { font-family: "JetBrains Mono", monospace; font-size: 13px; letter-spacing: 4px; font-weight: 700; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { color: var(--ink); text-decoration: none; font-size: 13px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .header-phone { display: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block; border: none; border-radius: 14px; font-weight: 700;
  cursor: pointer; text-align: center; font-family: inherit; text-decoration: none;
  white-space: nowrap;
}
.btn-big { padding: 17px 30px; font-size: 15px; }
.btn-small { padding: 11px 20px; font-size: 13px; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #c01729; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: #fff; color: var(--ink); }

/* ===== Hero ===== */
.hero { padding: 64px 0 40px; background: var(--bg); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-title { font-size: 46px; line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 18px; }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.6; margin: 0 0 30px; max-width: 480px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-cta-row.center { justify-content: center; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-value { font-size: 24px; font-weight: 700; }
.stat-label { font-size: 10px; letter-spacing: 1px; color: var(--muted); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 34px; }
}

/* ===== Placeholder image blocks ===== */
.placeholder-block {
  position: relative; border-radius: 20px; overflow: hidden;
  background: repeating-linear-gradient(45deg, #F1EFEC, #F1EFEC 12px, #EAE8E4 12px, #EAE8E4 24px);
  border: 1.5px solid var(--line); min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.placeholder-label {
  font-size: 10px; letter-spacing: 2px; color: var(--muted); text-align: center; padding: 20px;
}
.placeholder-label.bottom { position: absolute; bottom: 16px; left: 0; right: 0; }
.social-icon.placeholder-block.small {
  min-height: 0; width: 36px; height: 36px; border-radius: 10px; font-size: 11px; font-weight: 700;
  color: var(--muted); font-family: "JetBrains Mono", monospace;
}

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section.alt { background: var(--bg); }
.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: 32px; font-weight: 700; letter-spacing: -0.01em; margin: 0; line-height: 1.15; }
.section-sub { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 14px 0 24px; }

.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .card-grid.three, .card-grid.two { grid-template-columns: 1fr; }
}

/* ===== Value cards ===== */
.value-card {
  background: var(--paper); border: 1.5px solid var(--line-soft); border-radius: 18px; padding: 28px;
}
.value-icon { font-size: 30px; margin-bottom: 16px; }
.value-card h3 { font-size: 17px; margin: 0 0 8px; }
.value-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* ===== Step cards ===== */
.step-card {
  background: var(--paper); border: 1.5px solid var(--line-soft); border-radius: 18px; padding: 28px;
}
.step-num { font-size: 13px; color: var(--red); font-weight: 700; margin-bottom: 14px; }
.step-card h3 { font-size: 17px; margin: 0 0 8px; }
.step-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* ===== Pricing ===== */
.price-card {
  background: var(--paper); border: 1.5px solid var(--line-soft); border-radius: 20px; padding: 32px;
}
.price-card.featured { border-color: var(--ink); border-width: 2px; }
.price-card-label { font-size: 10px; letter-spacing: 2px; color: var(--muted); margin-bottom: 12px; }
.price-card-value { font-size: 42px; font-weight: 700; line-height: 1; }
.price-card-unit { font-size: 15px; font-weight: 500; color: var(--muted); margin-left: 6px; }
.price-card-total { font-size: 12px; color: var(--muted); margin: 10px 0 16px; }
.price-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 22px; }
.pricing-note { text-align: center; font-size: 11px; letter-spacing: 0.5px; color: var(--faint); margin-top: 30px; }

/* ===== Service area ===== */
.service-area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li { font-size: 14px; color: var(--ink); }

.service-map { min-height: 340px; background: var(--paper); }
.service-map.round { border-radius: 20px; }
.service-map-ring {
  position: absolute; border: 1.5px dashed var(--faint); border-radius: 50%;
  width: 280px; height: 280px;
}
.service-map-ring.inner { width: 160px; height: 160px; border-color: var(--red); }
.service-map-center {
  position: relative; z-index: 1; background: var(--ink); color: #fff; border-radius: 50%;
  width: 90px; height: 90px; display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 10px; letter-spacing: 1px; line-height: 1.4;
}

@media (max-width: 900px) {
  .service-area-grid { grid-template-columns: 1fr; }
}

/* ===== App section ===== */
.app-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) {
  .app-grid { grid-template-columns: 1fr; }
  .app-grid .placeholder-block { order: 2; }
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--paper); border: 1.5px solid var(--line-soft); border-radius: 18px; padding: 26px;
}
.stars { color: var(--red); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; line-height: 1.6; color: var(--ink); margin: 0 0 16px; font-style: italic; }
.testimonial-name { font-size: 10px; letter-spacing: 1px; color: var(--muted); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--paper); border: 1.5px solid var(--line-soft); border-radius: 14px; padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 15px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--red); font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 14px 0 0; }

/* ===== Final CTA ===== */
.final-cta { background: var(--ink); color: #fff; padding: 74px 0; text-align: center; }
.final-cta h2 { font-size: 30px; font-weight: 700; margin: 0 0 28px; letter-spacing: -0.01em; }

/* ===== Footer ===== */
.site-footer { background: var(--bg); padding: 56px 0 24px; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.footer-tagline { color: var(--muted); font-size: 13px; margin-top: 12px; max-width: 220px; }
.footer-heading { font-size: 10px; letter-spacing: 2px; color: var(--faint); margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--red); }
.footer-muted { color: var(--muted); font-size: 13px; }
.social-row { display: flex; gap: 8px; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding-top: 22px; font-size: 10px; letter-spacing: 1px; color: var(--faint); }

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

.micro { font-size: 10px; letter-spacing: 1px; color: var(--faint); margin-top: 4px; }
