/**
 * PAANA Website v11 — Design-influenced refresh
 * Brand: Red #ED393D · Navy #172E45 (preserved)
 * Typography: Inter Tight (display) · Inter (body) · JetBrains Mono (metadata)
 * Influence: Claude Design PAANA AI bundle (2026-04-18)
 */

/* ── TOKENS ───────────────────────────────────────────────────── */
:root {
  --red:         #ed393d;
  --red-d:       #c82e32;
  --red-l:       #f25a5e;
  --red-tint:    rgba(237,57,61,.08);
  --navy:        #172e45;
  --navy-d:      #0f1e2e;
  --navy-m:      #1f3d5c;
  --navy-tint:   rgba(23,46,69,.06);
  --green:       #22c55e;
  --green-d:     #16a34a;
  --green-btn:   #178636;
  --white:       #ffffff;
  --off:         #faf6ee;          /* legacy name — repointed to warm cream for palette unity */
  --border:      rgba(20,17,13,0.09); /* legacy name — repointed to warm hairline */
  --text:        #14110d;          /* warm ink */
  --ink:         #14110d;
  --ink2:        #5a544a;          /* secondary text */
  --ink3:        #9a9185;          /* tertiary text / mono labels */
  --line:        rgba(20,17,13,0.09);  /* hairline border */
  --cream:       #faf6ee;          /* warm surface */
  --muted:       #5a544a;
  --radius:      22px;             /* was 14px — design bundle uses 22 */
  --radius-sm:   14px;
  --radius-xs:   10px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 56px rgba(0,0,0,.14);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:   'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --nav-h:       68px;
  --section-py:  80px;
  --wrap:        1200px;
  --trans:       .22s ease;
}

/* ── FRAPPE WRAPPER RESET ─────────────────────────────────────── */
#page-paana .page-breadcrumbs,
#page-paana .page-header-wrapper,
#page-paana .page-header       { display: none !important; }
#page-paana .page-content-wrapper { padding: 0 !important; margin: 0 !important; }
#page-paana main,
#page-paana main.container,
#page-paana main.container-fluid,
#page-paana .page_content {
  padding: 0 !important; margin: 0 !important;
  max-width: none !important; width: 100% !important;
}

/* ── FRAPPE BUNDLE DEFEATER ───────────────────────────────────── */
.pw p          { visibility: visible !important; margin: 0; }
.pw header     { width: 100% !important; }
.pw nav        { display: flex !important; list-style: none !important; }
.pw section    { display: block !important; }
.pw button     { float: none !important; height: auto !important; width: auto !important;
                 display: inline-flex !important; background: none; border: none;
                 cursor: pointer; font-family: inherit; }
.pw a          { visibility: visible !important; color: inherit !important; text-decoration: none !important; }
.pw h1, .pw h2, .pw h3, .pw h4, .pw h5
               { visibility: visible !important; margin: 0; line-height: 1.15; font-weight: 800; }
.pw span, .pw strong, .pw li, .pw div, .pw footer
               { visibility: visible !important; }
.pw ul, .pw ol { margin: 0; padding: 0; list-style: none; }

/* ── BASE ─────────────────────────────────────────────────────── */
.pw *, .pw *::before, .pw *::after { box-sizing: border-box; }
.pw {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--white);
  padding-top: var(--nav-h);
}

/* ── LAYOUT ───────────────────────────────────────────────────── */
.p-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }

/* ── SECTIONS ─────────────────────────────────────────────────── */
.p-section        { padding: var(--section-py) 0; }
.p-section--light { background: #f7f3eb; }
.p-section--white { background: var(--white); }
.p-section--navy  { background: var(--navy); }
.p-section--red   { background: var(--red); }

.p-section__head { text-align: center; margin-bottom: 3.5rem; }
.p-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.6rem); font-weight: 500;
  color: var(--ink); letter-spacing: -.035em; line-height: 1.1;
  margin-bottom: .75rem;
}
.p-section__title--light { color: var(--white); }
.p-section__sub  { font-size: 1.05rem; color: var(--ink2); max-width: 580px; margin: 0 auto !important; line-height: 1.6; }
.p-section__sub--light { color: rgba(255,255,255,.7); }
.p-section__head--light .p-section__title,
.p-section__head--light .p-section__sub { color: var(--white); }

.p-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink3); background: transparent;
  padding: 0 0 .75rem; border-radius: 0;
  margin-bottom: 0;
}
.p-eyebrow--light { color: rgba(255,255,255,.6); background: transparent; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.p-btn {
  display: inline-flex !important; align-items: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), border-color var(--trans);
  white-space: nowrap; text-decoration: none !important;
}
.p-btn:hover  { transform: translateY(-2px); }
.p-btn:active { transform: translateY(0); }

.p-btn--xl   { padding: .9rem 1.9rem; font-size: 1.05rem; }
.p-btn--sm   { padding: .45rem 1rem; font-size: .85rem; }
.p-btn--full { width: 100%; justify-content: center; }

.p-btn--red   { background: var(--red); color: var(--white); box-shadow: 0 4px 16px rgba(237,57,61,.35); }
.p-btn--red:hover { background: var(--red-d); box-shadow: 0 8px 24px rgba(237,57,61,.45); color: var(--white); }

.p-btn--navy  { background: var(--navy) !important; color: var(--white); box-shadow: 0 4px 14px rgba(23,46,69,.2); }
.p-btn--navy:hover { background: var(--red) !important; color: var(--white); box-shadow: 0 6px 20px rgba(237,57,61,.35); }

.p-btn--wa    { background: #25d366 !important; color: var(--white) !important; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.p-btn--wa:hover { background: #1ebe5a !important; box-shadow: 0 8px 24px rgba(37,211,102,.4); color: var(--white) !important; }

.p-btn--white { background: var(--white); color: var(--navy); box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.p-btn--white:hover { background: var(--off); color: var(--navy); }

.p-btn--outline-light { background: var(--white) !important; color: var(--navy) !important; border-color: var(--white); }
.p-btn--outline-light:hover { background: var(--red) !important; border-color: var(--red); color: var(--white) !important; box-shadow: 0 6px 20px rgba(237,57,61,.35); }

/* ── NAVBAR (cream / warm palette — unified across all pages) ─── */
.p-nav {
  position: fixed !important; inset: 0 0 auto 0;
  z-index: 999; height: var(--nav-h);
  background: rgba(250, 246, 238, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 0.5px solid transparent;
  transition: background var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.p-nav--scrolled {
  background: rgba(250, 246, 238, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 18px rgba(20, 17, 13, 0.06);
}

.p-nav__wrap {
  max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; gap: 2rem;
  position: relative; z-index: 1000; /* always above overlay (997) */
}

.p-nav__logo {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none !important; flex-shrink: 0;
}
.p-nav__logo-img {
  height: 32px; width: auto; flex-shrink: 0;
  filter: none;  /* show red PAANA icon in native red on cream nav */
}
.p-nav__logo-wordmark {
  display: flex; flex-direction: column; gap: .05rem;
  font-size: 1.4rem; font-weight: 700; color: var(--ink);
  letter-spacing: -.02em; line-height: 1;
  font-family: var(--font-display);
}
.p-nav__logo-reg {
  font-family: var(--font-mono);
  font-size: .4em; font-weight: 500; color: var(--red);
  position: relative; top: -.5em; margin-left: .08em;
  line-height: 0; vertical-align: baseline; white-space: nowrap;
}

/* ── Footer PAANA® must render inline, never wrap ───────────── */
.p-footer__legal-brand,
.p-footer__bottom-inner p {
  white-space: normal;
}
.p-footer__legal-brand,
.p-footer__logo,
.p-footer__bottom-inner p strong,
.p-footer__legal-brand sup,
.p-footer__logo sup,
.p-footer__bottom-inner sup { white-space: nowrap; }

/* ── ABOUT SECTION (homepage) ────────────────────────────────── */
.p-about-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.p-about-lede {
  font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,.78);
  margin: 0 0 1.1rem;
}
.p-about-lede:last-child { margin-bottom: 0; }
.p-about-lede strong { color: #fff; font-weight: 700; }
.p-about-tags { color: var(--red) !important; font-weight: 700; }
.p-about-entity { letter-spacing: .02em; }
.p-about-reg {
  font-size: .55em; font-weight: 700; color: var(--red);
  position: relative; top: -.5em; line-height: 0; vertical-align: baseline;
}
.p-nav__logo-tag {
  display: block;
  font-size: .58rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink3); line-height: 1;
  font-style: normal;
  font-family: var(--font-mono);
}

.p-nav__links {
  display: flex; align-items: center; gap: .15rem;
  margin-left: 2rem; flex: 1;
}
.p-nav__links a {
  color: var(--ink) !important; font-size: .9rem; font-weight: 500;
  padding: .4rem .75rem; border-radius: var(--radius-xs);
  opacity: .78;
  transition: color var(--trans), background var(--trans), opacity var(--trans);
}
.p-nav__links a:hover           { opacity: 1; background: rgba(20,17,13,.05); }
.p-nav__links a[aria-current="page"] { opacity: 1; color: var(--red) !important; }
.p-nav__partner-link            { color: var(--ink) !important; opacity: .65; }
.p-nav__partner-link:hover      { opacity: 1; color: var(--red) !important; }

.p-nav__actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }

/* Hamburger — hidden on desktop via CSS, shown on mobile via media query */
.p-hamburger {
  display: none;
  align-items: center; justify-content: center;
  padding: .5rem; cursor: pointer; background: none !important; border: none;
  float: none !important; height: auto !important; width: auto !important;
  color: var(--ink);
}
.p-hamburger svg line { stroke: var(--ink); }
.p-hamburger svg { display: block !important; flex-shrink: 0; pointer-events: none; }

/* Drawer — hidden by default, shown when --open class is added by JS */
.p-nav__drawer {
  display: flex; flex-direction: column; gap: .25rem;
  padding: 1.25rem 1.5rem 1.75rem;
  background: var(--cream);
  border-top: 0.5px solid var(--line);
  box-shadow: 0 8px 32px rgba(20, 17, 13, 0.08);
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  transform: translateY(-8px); opacity: 0; pointer-events: none; visibility: hidden;
  transition: transform .22s ease, opacity .22s ease, visibility 0s linear .22s;
  z-index: 998;
}
.p-nav__drawer.p-js-drawer--open {
  opacity: 1; transform: translateY(0); pointer-events: auto; visibility: visible;
  transition: transform .22s ease, opacity .22s ease, visibility 0s linear 0s;
}
.p-nav__drawer a {
  color: var(--ink) !important; font-size: 1rem; font-weight: 500;
  padding: .85rem .25rem; border-bottom: 0.5px solid var(--line);
  text-decoration: none !important;
}
.p-nav__drawer a:last-of-type { border-bottom: none; margin-bottom: .75rem; }
.p-nav__drawer a.p-btn { padding: .85rem 1rem; }

.p-nav__overlay {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: rgba(20, 17, 13, 0.25); z-index: 997;
  opacity: 0; transition: opacity .22s ease;
  pointer-events: none; visibility: hidden;
}
.p-nav__overlay.p-js-overlay--open { opacity: 1; pointer-events: auto; visibility: visible; }

/* Mobile view: show hamburger, hide desktop nav links, hide CTA button */
@media (max-width: 900px) {
  .p-nav__links { display: none !important; }
  .p-nav__actions > .p-btn--wa { display: none !important; }
  .p-hamburger { display: inline-flex !important; }
}

/* ── HERO ─────────────────────────────────────────────────────── */
.p-hero {
  background: linear-gradient(135deg, var(--navy-d) 0%, #1a3a55 55%, #0e2236 100%);
  position: relative; overflow: hidden;
}

.p-hero__bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(237,57,61,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(23,46,69,.4) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.p-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding-top: 5rem; padding-bottom: 2rem;
  min-height: calc(100vh - var(--nav-h));
  position: relative; z-index: 1;
}

.p-hero__content { max-width: 560px; }

.p-hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9); font-size: .82rem; font-weight: 600;
  padding: .4rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem; letter-spacing: .02em;
}
.p-hero__badge-dot {
  width: 7px; height: 7px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25); animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
  50%     { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}

.p-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.2vw, 3.8rem); font-weight: 500; color: var(--white);
  line-height: 1.04; letter-spacing: -.045em; margin-bottom: 1.5rem;
}
.p-hero__h1-accent { color: var(--red); display: inline; font-weight: 500; }

.p-hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.72); line-height: 1.65; margin-bottom: 1.75rem; }

.p-hero__pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.p-hero__pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 500;
  padding: .3rem .75rem; border-radius: 100px;
}
.p-hero__pill svg { color: var(--green); }

.p-hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem; }
.p-hero__tagline { font-size: .88rem; color: rgba(255,255,255,.5); }
.p-hero__tagline strong { color: rgba(255,255,255,.85); }

/* Hero phone mockup */
.p-hero__visual { display: flex; justify-content: center; align-items: center; }
.p-hero__phone-wrap { position: relative; }

.p-hero__phone {
  background: #1a2d40; border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 16px; width: 300px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
}
.p-hero__chat-header {
  background: #075e54; padding: .65rem 1rem;
  display: flex; align-items: center; gap: .35rem;
}
.p-hero__chat-dot { width: 8px; height: 8px; border-radius: 50%; }
.p-hero__chat-dot--g { background: #34c759; }
.p-hero__chat-dot--y { background: #ffcc00; }
.p-hero__chat-dot--r { background: #ff3b30; }
.p-hero__chat-title { color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 600; margin-left: .35rem; flex: 1; }

.p-hero__chat-body { padding: 1rem; display: flex; flex-direction: column; gap: .65rem; }

.p-hero__bubble {
  font-size: .78rem; line-height: 1.5;
  padding: .55rem .85rem; border-radius: 10px; max-width: 90%;
}
.p-hero__bubble--in  { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); align-self: flex-start; border-bottom-left-radius: 3px; }
.p-hero__bubble--out { background: #25d366; color: var(--white); align-self: flex-end; border-bottom-right-radius: 3px; }
.p-hero__bubble--status {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(237,57,61,.15); border: 1px solid rgba(237,57,61,.25);
  color: #f87171; font-size: .72rem; font-weight: 600;
  padding: .4rem .75rem; border-radius: 8px; align-self: center;
}
.p-hero__status-dot {
  width: 6px; height: 6px; background: var(--red);
  border-radius: 50%; flex-shrink: 0; animation: blink 1.2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.p-hero__stat-card {
  position: absolute; background: var(--white); border-radius: var(--radius-sm);
  padding: .65rem 1rem; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; line-height: 1.2;
}
.p-hero__stat-card strong { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.p-hero__stat-card span   { font-size: .7rem; color: var(--muted); font-weight: 500; }
.p-hero__stat-card--tl { top: -16px; left: -32px; }
.p-hero__stat-card--br { bottom: -16px; right: -32px; }

/* Services strip */
.p-hero__services-strip {
  background: rgba(0,0,0,.25); border-top: 1px solid rgba(255,255,255,.08);
  padding: .85rem 0; position: relative; z-index: 1;
}
.p-hero__services-inner { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }

.p-svc-pill {
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 600;
  padding: .4rem .9rem; border-radius: 100px; cursor: pointer;
  transition: background var(--trans), border-color var(--trans), color var(--trans);
  white-space: nowrap; font-family: var(--font);
  float: none !important; height: auto !important; width: auto !important;
  display: inline-flex !important;
}
.p-svc-pill:hover     { background: rgba(255,255,255,.14); color: var(--white); }
.p-svc-pill--active   { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── TRUST BAR ────────────────────────────────────────────────── */
.p-trust { background: var(--cream); border-bottom: 0.5px solid var(--line); padding: 1.1rem 0; }
.p-trust__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .5rem 1.75rem;
}
.p-trust__item {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .72rem;
  font-weight: 500; color: var(--ink2);
  text-transform: uppercase; letter-spacing: .1em;
}
.p-trust__icon { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
.p-trust__divider { width: 1px; height: 18px; background: var(--border); }

/* ── STATS ────────────────────────────────────────────────────── */
.p-stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; }

.p-stat {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.15);
  text-align: center;
}
.p-stat:last-child { border-right: none; }

.p-stat__icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: .25rem;
}
.p-stat__icon svg { width: 22px; height: 22px; stroke: var(--white); }
.p-stat__num   { font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; color: var(--white); line-height: 1; letter-spacing: -.045em; }
.p-stat__label { font-family: var(--font-mono); font-size: .7rem; color: rgba(255,255,255,.65); font-weight: 500; text-transform: uppercase; letter-spacing: .14em; }

/* ── SERVICE CARDS ────────────────────────────────────────────── */
.p-services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
@media (max-width: 1024px) { .p-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .p-services-grid { grid-template-columns: 1fr; gap: .75rem; } }

.p-svc-card {
  background: var(--cream); border: 0.5px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  min-height: 280px;
}
.p-svc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }

.p-svc-card__top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem;
  margin-bottom: auto;
}

.p-svc-card__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.p-svc-card__icon--red   { background: rgba(237,57,61,.1); }
.p-svc-card__icon--red svg   { width: 24px; height: 24px; stroke: var(--red); }
.p-svc-card__icon--navy  { background: rgba(23,46,69,.08); }
.p-svc-card__icon--navy svg  { width: 24px; height: 24px; stroke: var(--navy); }
.p-svc-card__icon--green { background: rgba(34,197,94,.1); }
.p-svc-card__icon--green svg { width: 24px; height: 24px; stroke: var(--green-d); }

.p-svc-card__meta { text-align: right; }
.p-svc-card__price {
  display: block; font-family: var(--font-display);
  font-size: 1rem; font-weight: 500; color: var(--ink); letter-spacing: -.02em;
}
.p-svc-card__eta {
  display: block; font-family: var(--font-mono);
  font-size: .65rem; color: var(--ink3); font-weight: 500;
  margin-top: .25rem; text-transform: uppercase; letter-spacing: .1em;
}

.p-svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500; color: var(--ink);
  letter-spacing: -.02em; line-height: 1.2; margin-top: .5rem;
}
.p-svc-card p {
  font-size: .88rem; color: var(--ink2); line-height: 1.55;
  margin-top: -.25rem;
}
.p-svc-card .p-btn { margin-top: auto; }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.p-how-grid { display: flex; align-items: flex-start; gap: 0; }

.p-how-step {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 0 1.25rem;
}
.p-how-step__num {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  color: rgba(255,255,255,.35); text-transform: uppercase; margin-bottom: .75rem;
}
.p-how-step__icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  transition: background var(--trans), border-color var(--trans);
}
.p-how-step:hover .p-how-step__icon { background: rgba(237,57,61,.25); border-color: var(--red); }
.p-how-step__icon svg { width: 26px; height: 26px; stroke: var(--white); }
.p-how-step h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.p-how-step p  { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

.p-how-connector {
  flex-shrink: 0; width: 60px; height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.15), var(--red), rgba(255,255,255,.15));
  margin-top: 2.75rem; border-radius: 2px;
}

/* ── VEHICLE CARDS ────────────────────────────────────────────── */
.p-vehicles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .p-vehicles-grid { grid-template-columns: repeat(2, 1fr); } }

.p-vehicle-card {
  background: var(--cream); border: 0.5px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem 1.25rem 1.25rem; text-align: center;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.p-vehicle-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: transparent; }
.p-vehicle-card__emoji {
  font-size: 2.5rem; line-height: 1;
  display: block; margin-bottom: .85rem;
}
.p-vehicle-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--ink); letter-spacing: -.02em; margin-bottom: .2rem; }
.p-vehicle-card p  { font-family: var(--font-mono); font-size: .68rem; color: var(--ink3); text-transform: uppercase; letter-spacing: .08em; }

/* ── LUCIDE icon sizing helpers ───────────────────────────────── */
/* Lucide replaces <i data-lucide> with <svg>; these ensure correct sizing */
.p-trust__icon { width: 18px; height: 18px; stroke: var(--red); flex-shrink: 0; display: block; }
.p-stat__icon i, .p-stat__icon svg { width: 22px; height: 22px; stroke: var(--white); display: block; }
.p-svc-card__icon i, .p-svc-card__icon svg { width: 26px; height: 26px; display: block; }
.p-svc-card__icon--red   i, .p-svc-card__icon--red   svg { stroke: var(--red); }
.p-svc-card__icon--navy  i, .p-svc-card__icon--navy  svg { stroke: var(--navy); }
.p-svc-card__icon--green i, .p-svc-card__icon--green svg { stroke: var(--green-d); }
.p-how-step__icon i, .p-how-step__icon svg { width: 26px; height: 26px; stroke: var(--white); display: block; }
.p-hero__pill i, .p-hero__pill svg { width: 14px; height: 14px; stroke: var(--green); display: block; flex-shrink: 0; }
.p-partner-banner__perks i, .p-partner-banner__perks svg { stroke: rgba(255,255,255,.9); flex-shrink: 0; display: block; }

/* ── WHY PAANA COMPARE ────────────────────────────────────────── */
.p-compare {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 2rem; align-items: center;
  max-width: 900px; margin: 0 auto;
}
.p-compare__col { background: var(--cream); border-radius: var(--radius); padding: 1.75rem; border: 0.5px solid var(--line); }
.p-compare__col--new { border-color: var(--ink); box-shadow: 0 8px 32px rgba(20,17,13,.06); }
.p-compare__head { margin-bottom: 1.5rem; }
.p-compare__badge {
  display: inline-block; font-family: var(--font-mono);
  font-size: .68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em;
  padding: .3rem .75rem; border-radius: 100px; margin-bottom: .75rem;
}
.p-compare__badge--old { background: rgba(20,17,13,.05); color: var(--ink3); }
.p-compare__badge--new { background: var(--ink); color: var(--cream); }
.p-compare__head h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--ink); letter-spacing: -.02em; }
.p-compare__list    { display: flex; flex-direction: column; gap: .7rem; }
.p-compare__list li { font-size: .92rem; color: var(--ink); padding-left: 1.6rem; position: relative; line-height: 1.5; }
.p-compare__list li::before { position: absolute; left: 0; font-weight: 600; }
.p-compare__list--no  li         { color: var(--ink2); }
.p-compare__list--no  li::before { content: '✗'; color: var(--red); }
.p-compare__list--yes li::before { content: '✓'; color: var(--green-d); }
.p-compare__vs { font-family: var(--font-mono); font-size: .85rem; font-weight: 500; color: var(--ink3); flex-shrink: 0; text-align: center; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 720px) { .p-compare { grid-template-columns: 1fr; } .p-compare__vs { padding: .5rem 0; } }

/* ── COVERAGE ─────────────────────────────────────────────────── */
.p-coverage-body { max-width: 860px; margin: 0 auto; }
.p-coverage-desc { font-size: 1rem; color: var(--ink2); line-height: 1.7; margin-bottom: 2rem; text-align: center; }
.p-coverage-desc strong { color: var(--ink); }
.p-cities { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }

.p-cities { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.p-city-chip {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .45rem 1rem; border-radius: 100px;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 500;
  background: var(--cream); border: 0.5px solid var(--line); color: var(--ink2);
  text-transform: uppercase; letter-spacing: .08em;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
  text-decoration: none !important;
}
.p-city-chip:hover        { border-color: var(--ink); color: var(--ink); }
.p-city-chip--tier1       { border-color: var(--red); color: var(--red); font-weight: 600; background: rgba(237,57,61,.06); }
.p-city-chip--tier1:hover { background: rgba(237,57,61,.12); }
.p-city-chip--tier2       { border-color: var(--line); color: var(--ink); font-weight: 500; }
.p-city-chip--tier2:hover { background: rgba(20,17,13,0.04); }
.p-city-chip--soon        { border-style: dashed; color: var(--ink3); font-style: normal; }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.p-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 900px) { .p-reviews-grid { grid-template-columns: 1fr; } }

.p-review {
  background: var(--cream); border: 0.5px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .9rem;
  transition: transform var(--trans), box-shadow var(--trans);
}
.p-review:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.p-review__stars { color: #e8a528; font-size: 1rem; letter-spacing: .1em; }
.p-review__text  { font-size: .95rem; color: var(--ink); line-height: 1.7; flex: 1; font-style: normal; }
.p-review__foot  { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.p-review__avatar {
  width: 40px; height: 40px; background: var(--ink); color: var(--cream);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 500; flex-shrink: 0;
}
.p-review__foot strong { display: block; font-family: var(--font-display); font-size: .95rem; font-weight: 500; color: var(--ink); letter-spacing: -.01em; }
.p-review__foot span   { font-family: var(--font-mono); font-size: .7rem; color: var(--ink3); text-transform: uppercase; letter-spacing: .08em; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.p-faq-wrap { max-width: 760px; }
.p-faq-wrap .p-section__head { text-align: left; }
.p-faq { display: flex; flex-direction: column; gap: .5rem; }

.p-faq__item {
  background: var(--cream); border: 0.5px solid var(--line);
  border-radius: 18px; overflow: hidden;
  transition: border-color var(--trans);
}
.p-faq__item[open] { border-color: var(--ink); }
.p-faq__item[open] .p-faq__q { color: var(--ink); }

.p-faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.35rem; font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--ink);
  letter-spacing: -.015em; cursor: pointer; list-style: none; transition: color var(--trans); user-select: none;
}
.p-faq__q::-webkit-details-marker { display: none; }

.p-faq__icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: rgba(20,17,13,.05); position: relative;
  transition: background var(--trans);
}
.p-faq__icon::before, .p-faq__icon::after {
  content: ''; position: absolute; inset: 50% 50%;
  background: var(--ink2); border-radius: 2px;
  transform: translate(-50%, -50%);
}
.p-faq__icon::before { width: 8px; height: 2px; }
.p-faq__icon::after  { width: 2px; height: 8px; transition: transform var(--trans), opacity var(--trans); }
.p-faq__item[open] .p-faq__icon { background: var(--ink); }
.p-faq__item[open] .p-faq__icon::before,
.p-faq__item[open] .p-faq__icon::after { background: var(--cream); }
.p-faq__item[open] .p-faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.p-faq__a { padding: 0 1.35rem 1.15rem; }
.p-faq__a p { font-size: .93rem; color: var(--ink2); line-height: 1.7; }
.p-faq__a strong { color: var(--ink); font-weight: 600; }

/* ── PARTNER BANNER ───────────────────────────────────────────── */
.p-partner-banner {
  background: linear-gradient(135deg, var(--red-d) 0%, var(--red) 60%, #f05a5e 100%);
  padding: 4rem 0;
}
.p-partner-banner__inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.p-partner-banner__eye {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.7); margin-bottom: .6rem;
}
.p-partner-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--white);
  margin-bottom: .75rem; letter-spacing: -.02em;
}
.p-partner-banner__left p { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 1.25rem; }
.p-partner-banner__perks  { display: flex; flex-direction: column; gap: .45rem; }
.p-partner-banner__perks li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: rgba(255,255,255,.9); font-weight: 500;
}
.p-partner-banner__perks li svg { color: rgba(255,255,255,.9); flex-shrink: 0; }
.p-partner-banner__right { text-align: center; }
.p-partner-banner__note  { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: .75rem; }

/* ── BOTTOM CTA ───────────────────────────────────────────────── */
.p-bottom-cta { background: var(--navy-d); padding: 5rem 0; }
.p-bottom-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.p-bottom-cta__content h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: var(--white); margin-bottom: .5rem; }
.p-bottom-cta__content p  { color: rgba(255,255,255,.65); font-size: 1rem; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.p-footer { background: var(--navy-d); border-top: 1px solid rgba(255,255,255,.06); }
.p-footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding: 4rem 1.5rem 3rem; max-width: var(--wrap); margin: 0 auto;
}
.p-footer__logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: 1.8rem; font-weight: 900; letter-spacing: -.03em;
  color: var(--white) !important; margin-bottom: .75rem;
  text-decoration: none !important;
}
.p-footer__logo:hover { color: var(--white) !important; }
.p-footer__logo-img {
  height: 36px; width: auto; flex-shrink: 0;
  /* keep the original red color in dark footer — it pops well */
}
.p-footer__tagline { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.5; margin-bottom: .5rem; }
.p-footer__origin  { font-size: .78rem; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.p-footer__col h5 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.p-footer__col a {
  display: block; font-size: .88rem; color: rgba(255,255,255,.55) !important;
  margin-bottom: .5rem; transition: color var(--trans);
}
.p-footer__col a:hover { color: var(--white) !important; }
.p-footer__bottom { border-top: 1px solid rgba(255,255,255,.06); }
.p-footer__bottom-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.p-footer__bottom p          { font-size: .8rem; color: rgba(255,255,255,.35); }
.p-footer__bottom-links      { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.p-footer__bottom-links a,
.p-footer__bottom-links span { font-size: .8rem; color: rgba(255,255,255,.4); font-weight: 500; text-decoration: none; }
.p-footer__bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ── LEGAL / TRADEMARK FOOTER ─────────────────────────────────── */
.p-footer__legal {
  max-width: var(--wrap); margin: 0 auto; padding: 1.5rem 1.5rem .25rem;
  text-align: center;
}
.p-footer__legal-brand {
  font-size: 1rem; font-weight: 800; color: rgba(255,255,255,.85);
  letter-spacing: -.01em; margin-bottom: .35rem;
}
.p-footer__legal-brand .tags { color: var(--red); font-weight: 700; }
.p-footer__legal-pitch {
  font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: .35rem;
}
.p-footer__legal-entity {
  font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: .85rem;
}
.p-footer__legal-entity strong { color: rgba(255,255,255,.92); font-weight: 700; }
.p-footer__legal-addr {
  font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.6;
  margin-bottom: .35rem;
}
.p-footer__legal-meta {
  font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.6;
  margin-bottom: .5rem;
}
.p-footer__legal-meta a { color: rgba(255,255,255,.65); text-decoration: none; }
.p-footer__legal-meta a:hover { color: var(--white); }

/* ── FLOATING WA ──────────────────────────────────────────────── */
.p-float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 990;
  width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--trans), box-shadow var(--trans);
  text-decoration: none !important;
}
.p-float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.p-float-wa svg { width: 30px; height: 30px; fill: var(--white); }
.p-float-wa__pulse {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: #25d366; animation: float-pulse 2.4s ease-out infinite; pointer-events: none;
}
@keyframes float-pulse {
  0%  { transform: scale(1);   opacity: .6; }
  70% { transform: scale(1.6); opacity: 0; }
  100%{ transform: scale(1.6); opacity: 0; }
}

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.p-reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.p-reveal--visible { opacity: 1; transform: none; }
.p-services-grid .p-reveal:nth-child(2) { transition-delay: .08s; }
.p-services-grid .p-reveal:nth-child(3) { transition-delay: .16s; }
.p-services-grid .p-reveal:nth-child(4) { transition-delay: .24s; }
.p-services-grid .p-reveal:nth-child(5) { transition-delay: .32s; }
.p-services-grid .p-reveal:nth-child(6) { transition-delay: .40s; }
.p-services-grid .p-reveal:nth-child(7) { transition-delay: .48s; }
.p-reviews-grid .p-reveal:nth-child(2)  { transition-delay: .12s; }
.p-reviews-grid .p-reveal:nth-child(3)  { transition-delay: .24s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .p-footer__top   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .p-vehicles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-py: 60px; }

  /* hamburger / nav-links / nav-wa visibility handled by JS updateNav() */
  .p-nav__overlay { display: block; } /* in DOM; pointer-events controlled by JS */

  .p-hero__inner {
    grid-template-columns: 1fr; min-height: auto;
    padding-top: 3.5rem; padding-bottom: 0; text-align: center;
  }
  .p-hero__content { max-width: 100%; }
  .p-hero__pills { justify-content: center; }
  .p-hero__ctas  { justify-content: center; }
  .p-hero__visual{ display: none; }

  .p-how-grid      { flex-direction: column; align-items: center; gap: 2rem; }
  .p-how-connector { width: 2px; height: 32px; background: linear-gradient(180deg, rgba(255,255,255,.15), var(--red), rgba(255,255,255,.15)); margin: 0; }

  .p-compare { grid-template-columns: 1fr; }
  .p-compare__vs { display: none; }

  .p-reviews-grid { grid-template-columns: 1fr; }

  .p-partner-banner__inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .p-partner-banner__perks { align-items: center; }
  .p-partner-banner__right { text-align: center; }

  .p-bottom-cta__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  :root { --section-py: 48px; }
  .p-hero__h1  { font-size: 2.1rem; }
  .p-hero__sub { font-size: 1rem; }

  .p-trust__divider { display: none; }
  .p-trust__inner   { gap: .6rem 1rem; }

  .p-stats__grid { grid-template-columns: 1fr 1fr; }
  .p-stat        { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 1.75rem 1rem; }
  .p-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }

  .p-services-grid { grid-template-columns: 1fr; }
  .p-vehicles-grid { grid-template-columns: 1fr 1fr; }

  .p-footer__top          { grid-template-columns: 1fr; gap: 2rem; }
  .p-footer__bottom-inner { flex-direction: column; text-align: center; }

  .p-float-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .p-float-wa svg { width: 26px; height: 26px; }

  .p-compare__col { padding: 1.25rem; }
  .p-svc-pill     { font-size: .76rem; padding: .35rem .7rem; }
}

@media (max-width: 400px) {
  .p-vehicles-grid { grid-template-columns: 1fr; }
  .p-stats__grid   { grid-template-columns: 1fr; }
  .p-stat          { border-right: none; }
}

/* ══════════════════════════════════════════════════════════════
   CITY PAGES  (p-city-*)
   ══════════════════════════════════════════════════════════════ */

.p-city-hero {
  background: var(--cream);
  padding: 5rem 0 3.25rem;
  text-align: center;
  border-bottom: 0.5px solid var(--line);
}
.p-city-hero__inner { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.p-city-badge {
  display: inline-block;
  font-family: var(--font-mono);
  background: transparent; color: var(--ink3);
  font-size: .7rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 0; margin-bottom: 1rem;
  border: none;
}
.p-city-h1 {
  font-family: var(--font-display);
  color: var(--ink); font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -.035em; margin-bottom: 1rem;
}
.p-city-h1 span { color: var(--red); font-weight: 500; }
.p-city-sub {
  color: var(--ink2); font-size: 1.1rem;
  max-width: 600px; margin: 0 auto 2rem; line-height: 1.65;
}
.p-city-ctas { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

.p-city-body { background: var(--cream); padding: 4rem 0; border-top: 0.5px solid var(--line); }
.p-city-content { max-width: 860px; margin: 0 auto; }
.p-city-content h2 {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 500; color: var(--ink);
  margin: 2.5rem 0 .85rem; line-height: 1.2; letter-spacing: -.02em;
}
.p-city-content h2:first-of-type { margin-top: 0; }
.p-city-content p {
  color: var(--ink2); line-height: 1.8; margin-bottom: 1rem; font-size: .975rem;
}
.p-city-content ul {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.p-city-content li {
  display: flex; align-items: baseline; gap: .6rem;
  color: var(--ink2); font-size: .95rem; line-height: 1.55;
}
.p-city-content li::before { content: "✓"; color: var(--red); font-weight: 700; flex-shrink: 0; }
.p-city-content strong { color: var(--ink); }

.p-svc-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem; margin: 1.5rem 0 2rem;
}
.p-svc-card {
  background: var(--white); border: 0.5px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.p-svc-card strong { color: var(--ink); font-size: .95rem; }
.p-svc-card span { color: var(--ink2); font-size: .82rem; white-space: nowrap; }

.p-city-cta-box {
  margin-top: 3rem; text-align: center;
  padding: 2.5rem 2rem; background: var(--white);
  border-radius: var(--radius); border: 0.5px solid var(--line);
}
.p-city-cta-box p { color: var(--ink2); font-size: .875rem; margin-top: .75rem; margin-bottom: 0; }

.p-back-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--ink) !important; font-size: .875rem; font-weight: 600;
  padding: .5rem 0; margin-bottom: 1.5rem; text-decoration: none !important;
}
.p-back-link:hover { color: var(--red) !important; }

/* ── City responsive ── */
@media (max-width: 640px) {
  .p-city-hero { padding: calc(var(--nav-h) + 2.5rem) 0 3rem; }
  .p-city-h1   { font-size: 1.85rem; }
  .p-svc-grid  { grid-template-columns: 1fr; }
  .p-city-cta-box { padding: 1.75rem 1.25rem; }
}

/* ══════════════════════════════════════════════════════════════
   VENDOR / PARTNER PAGES  (p-vendor-*)
   ══════════════════════════════════════════════════════════════ */

.p-vendor-hero {
  background: var(--cream);
  padding: 5rem 0 3.25rem;
  text-align: center;
  border-bottom: 0.5px solid var(--line);
}
.p-vendor-hero__inner { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.p-vendor-h1 {
  font-family: var(--font-display);
  color: var(--ink); font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -.035em; margin-bottom: 1rem;
}
.p-vendor-sub { color: var(--ink2); font-size: 1.1rem; line-height: 1.65; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.p-vendor-steps { background: var(--cream); padding: 4.5rem 0; border-top: 0.5px solid var(--line); }
.p-vendor-steps__inner { max-width: 900px; margin: 0 auto; }
.p-vendor-steps h2 { font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 2rem; text-align: center; font-family: var(--font-display); letter-spacing:-.02em; }
.p-vendor-step-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; margin-bottom: 3rem;
}
.p-vendor-step {
  background: var(--white); border: 0.5px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; text-align: left;
  transition: transform var(--trans), box-shadow var(--trans);
}
.p-vendor-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.p-vendor-step__num { font-size: 2rem; font-weight: 500; color: var(--red); line-height: 1; margin-bottom: .5rem; font-family: var(--font-display); letter-spacing:-.03em; }
.p-vendor-step__title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.p-vendor-step__desc { font-size: .9rem; color: var(--ink2); line-height: 1.6; }

.p-vendor-perks { background: var(--white); padding: 4rem 0; border-top: 0.5px solid var(--line); }
.p-vendor-perks__inner { max-width: 900px; margin: 0 auto; }
.p-vendor-perks h2 { color: var(--ink); font-size: 1.5rem; font-weight: 500; margin-bottom: 2rem; text-align: center; font-family: var(--font-display); letter-spacing:-.02em; }
.p-vendor-perks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.p-vendor-perk {
  background: var(--cream); border: 0.5px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; text-align: left;
}
.p-vendor-perk__icon { font-size: 1.75rem; margin-bottom: .6rem; color: var(--red); }
.p-vendor-perk__title { color: var(--ink); font-weight: 700; font-size: .95rem; }
.p-vendor-perk__desc { color: var(--ink2); font-size: .88rem; margin-top: .35rem; line-height: 1.55; }

.p-vendor-cta { background: var(--cream); padding: 4.5rem 0; text-align: center; border-top: 0.5px solid var(--line); }
.p-vendor-cta__inner { max-width: 540px; margin: 0 auto; }
.p-vendor-cta h2 { font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 1rem; font-family: var(--font-display); letter-spacing:-.02em; }
.p-vendor-cta p  { color: var(--ink2); line-height: 1.7; margin-bottom: 1.5rem; }

/* ── Apply form ── */
.p-apply-section { background: var(--cream); padding: 4.5rem 0; border-top: 0.5px solid var(--line); }
.p-apply-form { max-width: 520px; margin: 0 auto; background: var(--white); border: 0.5px solid var(--line); border-radius: var(--radius); padding: 2.5rem; }
.p-apply-form h2 { font-size: 1.35rem; font-weight: 500; color: var(--ink); margin-bottom: .5rem; font-family: var(--font-display); letter-spacing:-.015em; }
.p-apply-form__sub { color: var(--ink2); font-size: .9rem; margin-bottom: 1.75rem; }
.p-form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; }
.p-form-label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.p-form-input {
  width: 100%; padding: .7rem 1rem; border: 0.5px solid var(--line);
  border-radius: 8px; font-size: 1rem; font-family: var(--font); color: var(--text);
  background: var(--white); box-sizing: border-box; transition: border-color .15s;
}
.p-form-input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(20,17,13,.08); }
.p-apply-note { font-size: .875rem; color: var(--muted); text-align: center; margin-top: 1rem; }
#va-msg { font-size: .9rem; margin-top: .75rem; text-align: center; }
#va-msg.p-ok    { color: #15803d; }
#va-msg.p-error { color: #b91c1c; }

/* ══════════════════════════════════════════════════════════════════════════
 * v11.1 — CONTENT PAGES + VENDOR + APPLY SUPPLEMENT
 * Adds missing classes referenced by /about /legal /privacy /terms /refund
 * /careers /contact /vendor-signup /vendor-apply. All tokens from the warm
 * ink/cream palette for brand consistency with the landing page.
 * ══════════════════════════════════════════════════════════════════════════ */

/* ── Page hero (cream surface, centered, used by content pages) ───────── */
.p-page-hero {
  background: var(--cream);
  padding: 5rem 0 3.25rem;
  border-bottom: 0.5px solid var(--line);
}
.p-page-hero__inner { max-width: 760px; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.p-page-hero__eye {
  display: inline-block; font-family: var(--font-mono);
  font-size: .7rem; font-weight: 500; color: var(--ink3);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem;
}
.p-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 500;
  color: var(--ink); letter-spacing: -.035em; line-height: 1.1;
  margin: 0 0 1rem;
}
.p-page-hero__sub {
  font-size: 1.1rem; color: var(--ink2); line-height: 1.65;
  max-width: 600px; margin: 0 auto;
}

/* ── Prose body (long-form typography for policy, about, legal) ───────── */
.p-prose {
  max-width: 760px; margin: 0 auto;
  padding: 4rem 1.5rem;
  color: var(--ink2); line-height: 1.75; font-size: 1.05rem;
}
.p-prose > * + * { margin-top: 1.1rem; }
.p-prose h2 {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 500;
  color: var(--ink); letter-spacing: -.02em; line-height: 1.2;
  margin-top: 2.75rem;
}
.p-prose h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--ink); letter-spacing: -.015em;
  margin-top: 2rem;
}
.p-prose p  { color: var(--ink2); }
.p-prose strong { color: var(--ink); font-weight: 600; }
.p-prose a {
  color: var(--red); text-decoration: underline; text-underline-offset: 2px;
  text-decoration-thickness: 0.5px;
}
.p-prose a:hover { color: var(--red-d); }
.p-prose ul, .p-prose ol { padding-left: 1.25rem; color: var(--ink2); }
.p-prose li { margin-bottom: .5rem; }
.p-prose hr { border: 0; border-top: 0.5px solid var(--line); margin: 2.5rem 0; }
.p-prose code {
  font-family: var(--font-mono); font-size: .9em;
  background: var(--cream); padding: .1em .35em; border-radius: 4px;
}

/* ── Callout (entity block, notice, highlight) ────────────────────────── */
.p-callout {
  background: var(--cream); border-left: 3px solid var(--red);
  padding: 1.25rem 1.5rem; border-radius: var(--radius-xs);
  font-size: .98rem; line-height: 1.7; color: var(--ink2);
  margin: 1.5rem 0;
}
.p-callout strong { color: var(--ink); }
.p-callout h3 { margin-top: 0; font-size: 1rem; color: var(--ink); }

/* ── Card grid (values, services, benefits) ───────────────────────────── */
.p-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin: 2rem 0;
}
.p-card {
  background: var(--white); border: 0.5px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem;
  display: flex; flex-direction: column; gap: .6rem;
  transition: transform var(--trans), box-shadow var(--trans);
}
.p-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.p-card__icon {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: var(--radius-xs); background: rgba(237,57,61,.08);
  color: var(--red); margin-bottom: .25rem;
}
.p-card__icon svg { width: 22px; height: 22px; }
.p-card__title {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 600; color: var(--ink);
}
.p-card__desc { font-size: .95rem; color: var(--ink2); line-height: 1.65; }

/* ── Section sub-nav (policy cluster, careers filters) ────────────────── */
.p-subnav {
  background: var(--cream); border-bottom: 0.5px solid var(--line);
  padding: .75rem 0; position: sticky; top: var(--nav-h); z-index: 10;
}
.p-subnav__inner {
  display: flex; flex-wrap: wrap; gap: .25rem 1rem;
  justify-content: center; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem;
}
.p-subnav a {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink2) !important;
  padding: .45rem .75rem; border-radius: var(--radius-xs);
  transition: color var(--trans), background var(--trans);
}
.p-subnav a:hover { color: var(--ink) !important; background: rgba(0,0,0,.05); }
.p-subnav a.is-active { color: var(--ink) !important; background: var(--white); }

/* ── Missing button variants ──────────────────────────────────────────── */
.p-btn--lg { padding: .9rem 1.75rem; font-size: 1rem; }
.p-btn--primary {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 16px rgba(237,57,61,.3);
}
.p-btn--primary:hover { background: var(--red-d); color: var(--white); }
.p-btn--outline-dark {
  background: transparent !important; color: var(--ink) !important;
  border-color: var(--ink) !important;
}
.p-btn--outline-dark:hover {
  background: var(--ink) !important; color: var(--cream) !important;
  border-color: var(--ink) !important;
}

/* ── Form additions (label, status message) ───────────────────────────── */
.p-form-label--optional { color: var(--ink3); font-weight: 400; font-size: .82rem; margin-left: .3rem; }
.p-apply-msg {
  margin-top: 1rem; padding: .75rem 1rem;
  border-radius: var(--radius-xs); font-size: .9rem; line-height: 1.5;
}
.p-apply-msg:empty { display: none; padding: 0; margin: 0; }
.p-apply-msg.p-ok {
  background: rgba(34,197,94,.1); color: #15803d;
  border: 1px solid rgba(34,197,94,.25);
}
.p-apply-msg.p-error {
  background: rgba(237,57,61,.1); color: var(--red-d);
  border: 1px solid rgba(237,57,61,.25);
}

/* ── Apply-page supplementary classes ─────────────────────────────────── */
.p-apply-hero {
  background: var(--cream); padding: 4.5rem 0 2.75rem;
  border-bottom: 0.5px solid var(--line);
}
.p-apply-hero__inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.p-apply-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 500;
  color: var(--ink); letter-spacing: -.03em; line-height: 1.1;
  margin: 0 0 1rem;
}
.p-apply-sub { font-size: 1.05rem; color: var(--ink2); line-height: 1.65; }
.p-apply-form-wrap {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 2.5rem; align-items: start; max-width: 980px; margin: 0 auto;
}
@media (max-width: 820px) { .p-apply-form-wrap { grid-template-columns: 1fr; gap: 2rem; } }
.p-apply-form-card {
  background: var(--white); border: 0.5px solid var(--line);
  border-radius: var(--radius); padding: 2.25rem;
}
.p-apply-submit { width: 100%; justify-content: center; margin-top: .5rem; }
.p-apply-wa-alt { margin-top: 1.25rem; font-size: .88rem; color: var(--ink2); text-align: center; }
.p-apply-wa-alt a { color: var(--red); font-weight: 600; }
.p-apply-info {
  background: transparent; padding: .5rem 0;
}
.p-apply-info h2 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 500;
  color: var(--ink); letter-spacing: -.015em; margin-bottom: 1rem;
}
.p-apply-steps {
  padding-left: 1.25rem; color: var(--ink2); line-height: 1.7;
  font-size: .95rem; margin: 0 0 1.25rem;
}
.p-apply-steps li { margin-bottom: .65rem; }
.p-apply-steps strong { color: var(--ink); }

/* ── Vendor-signup supplementary classes ──────────────────────────────── */
.p-vendor-badge {
  display: inline-block; font-family: var(--font-mono);
  font-size: .7rem; font-weight: 500; color: var(--ink3);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem;
}
.p-vendor-hero-ctas {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center; margin-top: 1.75rem;
}
.p-vendor-steps__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 500;
  color: var(--ink); letter-spacing: -.02em; line-height: 1.15;
  text-align: center; margin-bottom: .75rem;
}
.p-vendor-steps__sub {
  color: var(--ink2); text-align: center;
  max-width: 580px; margin: 0 auto 2.5rem;
  font-size: 1rem; line-height: 1.65;
}
.p-vendor-steps__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.p-vendor-step__body strong {
  display: block; font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: .4rem;
}
.p-vendor-step__body p {
  color: var(--ink2); font-size: .92rem; line-height: 1.6; margin: 0;
}
.p-vendor-perks__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 500;
  color: var(--ink); letter-spacing: -.02em;
  text-align: center; margin-bottom: 2.5rem;
}
.p-vendor-perks__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.p-vendor-perks .p-vendor-perk {
  background: var(--cream);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}
.p-vendor-perks .p-vendor-perk__icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: var(--radius-xs); background: rgba(237,57,61,.1);
  color: var(--red); margin-bottom: .9rem;
}
.p-vendor-perks .p-vendor-perk strong {
  display: block; color: var(--ink); font-weight: 700;
  font-size: 1rem; margin-bottom: .35rem;
}
.p-vendor-perks .p-vendor-perk p {
  color: var(--ink2); font-size: .88rem;
  line-height: 1.55; margin: 0;
}

.p-vendor-who { background: var(--cream); padding: 4.5rem 0; border-top: 0.5px solid var(--line); }
.p-vendor-who__inner { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.p-vendor-who h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem); font-weight: 500;
  color: var(--ink); letter-spacing: -.02em; margin-bottom: 1rem;
}
.p-vendor-who p { color: var(--ink2); line-height: 1.65; margin-bottom: 1rem; }
.p-vendor-who__list {
  padding-left: 1.25rem; color: var(--ink2);
  line-height: 1.75; margin: 0 0 1.25rem;
}
.p-vendor-who__list li { margin-bottom: .4rem; }

.p-vendor-cta { background: var(--white); padding: 4.5rem 0; text-align: center; }
.p-vendor-cta__inner { max-width: 560px; margin: 0 auto; padding: 0 1.5rem; }
.p-vendor-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 500;
  color: var(--ink); letter-spacing: -.02em; margin-bottom: .75rem;
}
.p-vendor-cta p { color: var(--ink2); line-height: 1.7; margin: 0 0 1.5rem; }
.p-vendor-cta__alt { margin-top: 1.25rem; font-size: .88rem; color: var(--ink2); }
.p-vendor-cta__alt a { color: var(--red); font-weight: 600; }

/* Vendor hero alignment refinements (cream palette — unified with content pages) */
.p-vendor-hero__inner .p-vendor-h1 { color: var(--ink); margin-bottom: 1.25rem; }

/* Footer columns (5-col grid: brand + 4 link columns) */
.p-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem; padding: 3.5rem 0 2.5rem;
}
@media (max-width: 1024px) {
  .p-footer__top { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem 2rem; }
  .p-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .p-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
}
@media (max-width: 420px) {
  .p-footer__top { grid-template-columns: 1fr; }
}
.p-footer__col {
  display: flex; flex-direction: column; gap: .4rem;
}
.p-footer__col h5 {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 500;
  color: rgba(255,255,255,.5); text-transform: uppercase;
  letter-spacing: .14em; margin-bottom: .5rem;
}
.p-footer__brand { display: flex; flex-direction: column; gap: .5rem; }
.p-footer__made  { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .35rem; }

/* Contact form (for /contact) */
.p-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  max-width: 980px; margin: 0 auto;
}
@media (max-width: 820px) { .p-contact-grid { grid-template-columns: 1fr; } }
.p-contact-methods { display: flex; flex-direction: column; gap: 1.25rem; }
.p-contact-method {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; border: 0.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--white);
}
.p-contact-method__icon {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: var(--radius-xs); background: rgba(237,57,61,.08);
  color: var(--red); flex-shrink: 0;
}
.p-contact-method h4 {
  font-size: .95rem; color: var(--ink); font-weight: 600;
  margin: 0 0 .25rem;
}
.p-contact-method p,
.p-contact-method a {
  font-size: .9rem; color: var(--ink2); line-height: 1.55; margin: 0;
}
.p-contact-method a { color: var(--red); }

/* Hide sticky sub-nav on small screens (becomes horizontal scroll) */
@media (max-width: 600px) {
  .p-subnav { position: static; }
  .p-subnav__inner { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; }
}
