/* ──────────────────────────────────────────────────────────────────────────
   Parada landing system (pl-) — shared by the unified home (/), /storage,
   and /commercial-parking marketing pages. Same visual system as /car-rental
   and the home hero: no custom face is loaded (headings inherit style.css's
   'Poppins' declaration, which falls back to the system stack), the lived
   navy palette, hairline cards with brand-toned hover shadows.

   Palette: #1f497d navy · #163a6b hover · #0f2c52 deep · #f0f7ff tint
            #111827 ink · #4b5563 body · #6b7280 muted · #e5e7eb hairline
            #f9fafb alt bg · #16a34a peso green (prices ONLY)

   Defenses against the legacy stylesheet (style.css):
   - a.pl-btn color overrides (a:not(.btn-theme) would repaint anchor CTAs)
   - box-shadow focus rings (the outline:0!important reset kills outlines)
   - never .btn-primary (compiled red) / .btn-danger (remapped navy)
   ────────────────────────────────────────────────────────────────────────── */

.pl-wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.pl-section { padding: 72px 0; background: #fff; }
.pl-section.pl-alt { background: #f9fafb; }
.pl-section.pl-tint { background: #f0f7ff; }

/* ── Type (mirrors index.ejs hero/hiw metrics) ── */
.pl-eyebrow {
  display: block; font-size: 12px; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: #1f497d; margin: 0 0 8px;
}
.pl-h2 {
  font-size: 32px; font-weight: 800; letter-spacing: -0.01em;
  line-height: 1.2; color: #111827; margin: 0 0 10px;
}
.pl-h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  line-height: 1.3; color: #111827; margin: 0 0 8px;
}
.pl-h4 { font-size: 18px; font-weight: 700; line-height: 1.35; color: #111827; margin: 0 0 6px; }
.pl-sub { font-size: 16px; line-height: 1.55; color: #4b5563; margin: 0 0 32px; max-width: 65ch; }
.pl-body { font-size: 16px; line-height: 1.6; color: #4b5563; margin: 0; }
.pl-caption { font-size: 14px; line-height: 1.5; color: #6b7280; }
.pl-center { text-align: center; }
.pl-sub.pl-center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.pl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 46px; padding: 0 24px; border: 0; border-radius: 10px;
  background: #1f497d; color: #fff; font-size: 14px; font-weight: 800;
  letter-spacing: 0.01em; line-height: 1; text-decoration: none; cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}
.pl-btn:hover, .pl-btn:focus { background: #163a6b; color: #fff; text-decoration: none; }
.pl-btn:active { transform: translateY(1px); }
.pl-btn .fa-arrow-right { font-size: 12px; transition: transform 0.15s ease; }
.pl-btn:hover .fa-arrow-right { transform: translateX(4px); }
.pl-btn-light { background: #fff; color: #1f497d; }
.pl-btn-light:hover, .pl-btn-light:focus { background: #f0f7ff; color: #163a6b; }
.pl-btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.55); }
.pl-btn-ghost:hover, .pl-btn-ghost:focus { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
/* Anchor-qualified color overrides — beat style.css `a:not(.btn-theme)`. */
a.pl-btn, a.pl-btn:hover, a.pl-btn:focus, a.pl-btn:active { color: #fff; }
a.pl-btn-light { color: #1f497d; }
a.pl-btn-light:hover, a.pl-btn-light:focus { color: #163a6b; }
/* Focus rings the outline reset can't kill. */
.pl-btn:focus-visible { box-shadow: 0 0 0 3px rgba(31, 73, 125, 0.45); }
.pl-hero .pl-btn:focus-visible, .pl-cta .pl-btn:focus-visible { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85); }

/* ── Cards ── */
.pl-card {
  background: #fff; border: 1.5px solid #e5e7eb; border-radius: 16px; padding: 26px;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}
.pl-card:hover {
  transform: translateY(-2px); border-color: #bfdbfe;
  box-shadow: 0 6px 22px rgba(31, 73, 125, 0.1);
}
a.pl-card { display: block; text-decoration: none; }
a.pl-card:focus-visible { box-shadow: 0 0 0 3px rgba(31, 73, 125, 0.45); border-color: #1f497d; }
.pl-ic {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; background: #f0f7ff; color: #1f497d; font-size: 19px;
  margin-bottom: 14px;
}
.pl-grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 16px; }
.pl-grid3 .pl-body { font-size: 14px; line-height: 1.6; color: #6b7280; }

/* ── Hero (navy gradient) ── */
.pl-hero {
  position: relative; z-index: 0;
  background: linear-gradient(135deg, #1f497d 0%, #163a6b 60%, #0f2c52 100%);
  padding: 92px 0 72px;
}
.pl-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85); background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 20px;
}
.pl-hero h1 {
  font-size: 44px; font-weight: 900; letter-spacing: -0.5px; line-height: 1.12;
  color: #fff; margin: 0 0 14px; max-width: 640px;
}
.pl-hero-sub {
  font-size: 16.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.85);
  margin: 0 0 30px; max-width: 560px;
}
.pl-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.pl-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pl-pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600;
  color: rgba(255, 255, 255, 0.92); background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px; padding: 7px 14px;
}
.pl-pill i { font-size: 11px; color: rgba(255, 255, 255, 0.7); }

/* ── Numbered steps ── */
.pl-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pl-step-num {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; background: #f0f7ff; color: #1f497d;
  font-size: 17px; font-weight: 800; margin-bottom: 14px;
}
.pl-steps .pl-body { font-size: 15px; }

/* ── Check lists ── */
.pl-checks { list-style: none; margin: 16px 0 0; padding: 0; }
.pl-checks li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 15px;
  line-height: 1.55; color: #4b5563; margin-bottom: 9px;
}
.pl-checks .fa-check { color: #16a34a; font-size: 13px; margin-top: 4px; }

/* ── Pricing receipt ── */
.pl-receipt { max-width: 720px; margin: 0 auto; border: 1.5px solid #e5e7eb; border-radius: 16px; overflow: hidden; }
.pl-receipt-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 17px 24px; background: #fff;
}
.pl-receipt-row + .pl-receipt-row { border-top: 1px solid #e5e7eb; }
.pl-receipt-row .pl-price-label { font-size: 15px; color: #4b5563; }
.pl-receipt-row .pl-price-label small { display: block; font-size: 13px; color: #6b7280; margin-top: 2px; }
.pl-receipt-row .pl-price-value {
  font-size: 16px; font-weight: 800; color: #111827; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.pl-receipt-row .pl-price-value.is-peso { color: #16a34a; }
.pl-receipt-foot { padding: 15px 24px; background: #f9fafb; border-top: 1px solid #e5e7eb; font-size: 13px; color: #6b7280; }

/* ── Status chips (SOON / MAINT / app-first) ── */
.pl-chip {
  display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; border-radius: 8px; padding: 3px 9px; vertical-align: middle;
}
.pl-chip.is-soon { color: #4b5563; background: #e5e7eb; }
.pl-chip.is-maint { color: #92400e; background: #fde68a; }
.pl-chip.is-app { color: #1f497d; background: #eaf1f8; }

/* ── Split band (text + card) ── */
.pl-split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 44px; align-items: center; }
.pl-ol { list-style: none; margin: 20px 0 26px; padding: 0; counter-reset: plstep; }
.pl-ol li {
  counter-increment: plstep; display: flex; align-items: baseline; gap: 12px;
  font-size: 15px; line-height: 1.6; color: #4b5563; margin-bottom: 10px;
}
.pl-ol li::before {
  content: counter(plstep); flex: 0 0 26px; height: 26px; border-radius: 50%;
  background: #1f497d; color: #fff; font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; transform: translateY(4px);
}

/* ── FAQ (native details/summary) ── */
.pl-faq-list { max-width: 760px; margin: 0 auto; }
.pl-faq-item { background: #fff; border: 1.5px solid #e5e7eb; border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.pl-faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 17px 20px; cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 600; color: #111827;
}
.pl-faq-item summary::-webkit-details-marker { display: none; }
.pl-faq-item summary i { font-size: 12px; color: #6b7280; transition: transform 0.2s ease; }
.pl-faq-item[open] summary i { transform: rotate(180deg); }
.pl-faq-item[open] summary { border-bottom: 1px solid #e5e7eb; }
.pl-faq-a { padding: 15px 20px 18px; font-size: 15px; line-height: 1.65; color: #6b7280; }
.pl-faq-a a { color: #1f497d; font-weight: 600; }

/* ── Final CTA band ── */
.pl-cta { background: linear-gradient(135deg, #1f497d 0%, #0f2c52 100%); padding: 76px 0; text-align: center; }
.pl-cta .pl-h2 { color: #fff; }
.pl-cta p { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.8); margin: 0 auto 30px; max-width: 55ch; }
.pl-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Scroll reveal (class applied by JS only — no-JS sees everything) ── */
.pl-reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.pl-reveal.pl-in { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .pl-steps { grid-template-columns: 1fr; }
  .pl-split { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .pl-section { padding: 52px 0; }
  .pl-hero { padding: 64px 0 52px; }
  .pl-hero h1 { font-size: 34px; }
  .pl-h2 { font-size: 28px; }
}
