/* Precision Roadside Service — static site styles
   Palette & measurements pulled from the live site's real CSS custom
   properties (--global-palette*) and computed styles. */
:root {
  --red: #c8102e;          /* --global-palette1 */
  --red-dark: #9d1a1f;      /* real CTA section background */
  --gold: #d99c2c;          /* --global-palette2 */
  --amber-glow: rgba(251, 191, 36, 0.35);
  --red-glow: rgba(200, 16, 46, 0.38);
  --navy-950: #020617;      /* blog/inner hero gradient base */
  --near-black: #1d1b1e;    /* header/topbar background */
  --heading: #1a202c;       /* --global-palette3 */
  --heading-2: #2d3748;     /* --global-palette4 */
  --muted: #4a5568;         /* --global-palette5 */
  --muted-2: #718096;       /* --global-palette6 */
  --bg-light: #f9fafb;
  --bg-dark: #0f172a;
  --bg-dark-alt: #131c2e;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
  --font: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: #cbd5e1;
  background: var(--bg-dark);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { color: #f8fafc; line-height: 1.2; }

/* Top bar / header — single dark bar: social icons, centered logo, phone + CTA */
.topbar {
  background: #000;
  color: #fff;
}
.topbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 20px;
  gap: 16px;
}
.topbar .social-links { justify-self: start; }
.topbar .logo { justify-self: center; }
.topbar .header-actions { justify-self: end; }
.topbar .social-links { display: flex; align-items: center; gap: 14px; }
.topbar .social-links a { display: flex; align-items: center; color: #fff; opacity: .85; }
.topbar .social-links a:hover { opacity: 1; text-decoration: none; }
.topbar .social-links svg { display: block; }
.topbar .logo img { height: 190px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: var(--red);
  padding: 12px 20px;
  border-radius: 8px;
  white-space: nowrap;
}
.phone-link:hover { text-decoration: none; background: var(--red-dark); }

.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 14px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
}
.btn:hover { background: var(--red-dark); color: #fff; text-decoration: none; }
.btn-outline {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 14px;
  border: 1px solid rgba(251, 191, 36, 0.6);
  white-space: nowrap;
}
.btn-outline:hover { text-decoration: none; background: rgba(255,255,255,0.16); }

/* Nav — solid red bar, centered white links */
nav.main-nav { background: var(--red); }
nav.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav.main-nav > .container > ul { display: flex; justify-content: center; }
nav.main-nav li { position: relative; }
nav.main-nav a {
  display: block;
  color: #fff;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
}
nav.main-nav a:hover { background: rgba(0, 0, 0, 0.15); text-decoration: none; }
nav.main-nav .submenu {
  display: none;
  position: absolute;
  left: 0; top: 100%;
  background: var(--red-dark);
  min-width: 220px;
  box-shadow: var(--shadow);
  z-index: 60;
}
nav.main-nav li:hover .submenu { display: block; }
nav.main-nav .submenu a { padding: 12px 16px; font-weight: 500; }

.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: #fff; cursor: pointer; }

/* Hero — rounded dark gradient card, matches the real site's inner-page hero */
.hero {
  position: relative;
  color: #fff;
  margin: 28px auto 0;
  max-width: 1160px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(1100px 420px at 10% 15%, var(--amber-glow), rgba(0,0,0,0) 55%),
    radial-gradient(900px 400px at 92% 10%, var(--red-glow), rgba(0,0,0,0) 55%),
    linear-gradient(135deg, var(--navy-950) 0%, rgba(2,6,23,0.92) 38%, rgba(2,6,23,0.98) 100%);
}
.hero .container { padding: 60px 40px; max-width: 900px; }
.hero.hero-photo {
  background-size: cover;
  background-position: center;
}
.hero.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,23,.35), rgba(2,6,23,.88));
}
.hero.hero-photo .container { position: relative; max-width: 900px; text-align: center; margin: 0 auto; padding: 90px 40px; }
.kicker,
.hero .kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
}
.hero h1 { font-size: 2.7rem; margin: 0 0 16px; color: #fff; font-weight: 700; }
.hero p { font-size: 1.1rem; max-width: 720px; margin: 0 0 22px; color: rgba(255,255,255,.85); }
.cta-row .btn, .cta-row .btn-outline, .cta-row .btn-gold {
  padding: 18px 34px;
  font-size: 18px;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero.hero-photo .cta-row { justify-content: center; }
.hero.hero-photo p { margin-left: auto; margin-right: auto; }

/* Hero — city "microsite" variant: full-bleed real photo, huge black display
   heading, red underline, amber hours badge. Matches the real per-city pages. */
.hero.hero-micro {
  border-radius: 0;
  margin-top: 0;
  max-width: none;
  background-size: cover;
  background-position: center;
}
.hero.hero-micro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.62) 39%, rgba(255,255,255,.16) 72%, rgba(255,255,255,.02) 100%),
    linear-gradient(rgba(255,255,255,.16) 0%, rgba(2,6,23,.08) 72%, rgba(2,6,23,.32) 100%);
}
.hero.hero-micro .container {
  position: relative;
  max-width: 760px;
  padding: 44px 20px;
  text-align: left;
  margin: 0 0 0 40px;
}
.hero.hero-micro h1 {
  color: var(--navy-950);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 8px;
}
.hero.hero-micro p { color: var(--heading-2); font-size: 1rem; margin: 0 0 16px; }
.hero.hero-micro .hours-badge { margin-bottom: 14px; }
.hero.hero-micro .cta-row { justify-content: flex-start; }
.hero-red-line { width: 64px; height: 4px; background: var(--red); margin: 18px 0 20px; border-radius: 2px; }
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2,6,23,.92);
  border: 2px solid #fbbf24;
  border-radius: 10px;
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}
.hero.hero-micro .btn-gold {
  background: #fbbf24;
  color: #111827;
  border-color: #fbbf24;
}
.hero.hero-micro .btn-gold:hover { background: #f2b90f; text-decoration: none; }
@media (max-width: 860px) {
  .hero.hero-micro::before { background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.75) 40%, rgba(2,6,23,.55)); }
  .hero.hero-micro .container { margin: 0 auto; text-align: center; padding: 36px 20px; }
  .hero.hero-micro .cta-row { justify-content: center; }
  .hero.hero-micro h1 { font-size: 1.9rem; }
  .hero-red-line { margin-left: auto; margin-right: auto; }
}

/* Generic content sections */
main { display: block; }
.section { padding: 50px 0; }
.section.alt { background: var(--bg-dark-alt); }
.section h2 { font-size: 1.85rem; margin-top: 0; }
.section h3 { font-size: 1.2rem; }

/* Cards — centered text, big icon, matches "Why Drivers Trust Precision" */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: 0 4px 16px rgba(15,27,45,0.06);
  text-align: center;
  overflow: hidden;
}
.card h3 { margin-top: 0; color: var(--heading); }
.card p { color: var(--muted); }
.card-icon { font-size: 2rem; line-height: 1; margin-bottom: 14px; }

/* Photo cards — when a card's real (non-icon) photo is its first child,
   bleed it to the card's edges and crop it to a consistent banner height
   instead of showing it at its native, uneven size with padding around it. */
.card > img:first-child {
  display: block;
  width: calc(100% + 44px);
  height: 190px;
  object-fit: cover;
  margin: -28px -22px 18px;
}

/* Standalone content photos — placed directly in a section's container
   (not inside a .card). Several source photos are tall, native-resolution
   phone shots; without a cap they render at their full native height and
   dwarf the surrounding text on every screen size. Crop to a consistent,
   banner-style height instead. */
.container > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
@media (max-width: 860px) {
  .container > img { height: 220px; margin-bottom: 18px; }
}

/* Reviews — real Google review cards, matches "What Our Customers Are Saying" */
.reviews-section { text-align: center; }
.reviews-section > p { max-width: 620px; margin: 0 auto 8px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 32px;
  text-align: left;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15,27,45,0.06);
  display: flex;
  flex-direction: column;
}
.review-stars { color: #fbbf24; font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.review-quote {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card.expanded .review-quote { -webkit-line-clamp: unset; overflow: visible; }
.review-readmore {
  background: none;
  border: none;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  padding: 0 0 14px;
  cursor: pointer;
  text-align: left;
  align-self: flex-start;
}
.review-readmore:hover { text-decoration: underline; }
.review-meta { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.review-author { font-weight: 700; color: var(--heading-2); }
.review-author:hover { color: var(--red); }
.review-date { display: block; color: var(--muted-2); font-size: 13px; margin-top: 2px; }
.reviews-thanks { margin-top: 28px; color: var(--muted); font-style: italic; }

/* CTA box — solid brick red, matches real "Need Roadside Help" section */
.cta-box {
  background: var(--red-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  margin: 30px 0;
}
.cta-box h2, .cta-box h3 { color: #fff; }
.cta-box .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.cta-box .btn { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); }
.cta-box .btn:hover { background: rgba(255,255,255,.24); }
.cta-box .btn-outline { background: rgba(255,255,255,.08); }

/* FAQ — static always-visible Q&A cards with a red "Q" badge, 2-column grid */
.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15,27,45,0.05);
}
.faq details > *:not(summary) { display: block !important; }
.faq summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--heading);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq details p { margin: 10px 0 0; color: var(--muted); }

/* Service-area list — plain multi-column list, matches real "Service Areas" section */
.chip-list {
  columns: 2;
  gap: 40px;
  margin-top: 20px;
  padding: 0;
  list-style: disc;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.chip-list li { margin-bottom: 10px; break-inside: avoid; }
.chip-list li a { color: #e2e8f0; font-weight: 600; }
.chip-list li a:hover { color: var(--gold); }

/* Service-area buttons — pill-shaped links in the same red as the site's
   other CTA buttons, wrapping into a centered grid. */
.area-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  max-width: 820px;
}
.area-buttons li { margin: 0; }
.area-buttons a {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.area-buttons a:hover { background: var(--red-dark); color: #fff; text-decoration: none; }

/* Table (for comparisons) */
table { width: 100%; border-collapse: collapse; margin: 20px 0; }
table th, table td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
table th { background: var(--bg-light); color: var(--heading); }

/* Footer — white background, red top accent line, uppercase headers, underlined links */
footer.site-footer {
  background: #fff;
  color: var(--muted);
  padding: 40px 0 24px;
  margin-top: 40px;
  border-top: 4px solid var(--red);
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.footer-grid h4 {
  color: var(--heading);
  margin-top: 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .04em;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--muted); text-decoration: underline; }
.footer-grid a:hover { color: var(--red); }
.footer-grid .btn { margin-top: 10px; background: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 18px;
  font-size: 13px;
  color: var(--muted-2);
  text-align: center;
}

/* Responsive */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  /* Top row: social icons + menu toggle share one compact row; the logo
     gets its own row below so it can be larger without growing the
     header's total height. */
  .topbar .container {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "social actions"
      "logo   logo";
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
  }
  .topbar .social-links { grid-area: social; justify-self: start; }
  .topbar .header-actions { grid-area: actions; justify-self: end; }
  .topbar .logo { grid-area: logo; justify-self: center; order: 0; margin-bottom: 0; }
  .topbar .logo img { height: 118px; }
  .topbar .social-links svg { width: 16px; height: 16px; }
  .header-actions { flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
  .phone-link, .header-actions .btn { padding: 10px 16px; font-size: 13px; }
  nav.main-nav .container > ul {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  nav.main-nav.open .container > ul { display: flex; }
  nav.main-nav .submenu { position: static; box-shadow: none; }
  .hero h1 { font-size: 1.9rem; }
  .hero .container,
  .hero.hero-photo .container { padding: 40px 24px; }
  .chip-list { columns: 1; }

  /* Flush the hero card against the nav bar instead of floating with
     rounded corners — on mobile that gap just reads as a stray dark
     rectangle between the header and the page content. */
  .hero { margin-top: 0; border-radius: 0 0 18px 18px; box-shadow: 0 10px 24px rgba(2,6,23,.4); }
}

@media (max-width: 420px) {
  .topbar .logo img { height: 92px; }
  .header-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .phone-link, .header-actions .btn { text-align: center; }
}

/* Sticky "Call Now" button — mobile only, injected by script.js.
   A floating pill button in the bottom-right corner, not a full-width bar. */
.sticky-call-bar {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 500;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(2,6,23,.35);
}
.sticky-call-bar:hover { background: var(--red-dark); text-decoration: none; color: #fff; }
.sticky-call-bar svg { flex: 0 0 auto; }
@media (max-width: 860px) {
  .sticky-call-bar { display: flex; }
}

/* Mobile spacing/typography — tighten the generous desktop padding and
   heading sizes so pages feel less sprawling on small screens. */
@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 28px 0; }
  .section h2 { font-size: 1.5rem; margin-bottom: 6px; }
  .cta-box { padding: 28px 22px; }
  .faq details { padding: 14px 16px; }

  /* "Why Drivers Trust" style cards — 2-up grid instead of one long
     single-column stack, with tighter padding/icon/type so more fit
     on screen at once. */
  .card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
  }
  .card { padding: 16px 12px; border-radius: 10px; }
  .card-icon { font-size: 1.4rem; margin-bottom: 6px; }
  .card h3 { font-size: 0.92rem; margin-bottom: 4px; line-height: 1.25; }
  .card p { font-size: 12.5px; line-height: 1.4; }
  .card > img:first-child { height: 120px; margin: -16px -12px 10px; width: calc(100% + 24px); }

  /* Reviews — horizontal swipe row instead of a tall vertical stack.
     Cards peek at the edge so it reads as swipeable. */
  .review-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    margin-top: 18px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .review-grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
    padding: 16px;
  }
  .review-stars { font-size: 13px; margin-bottom: 6px; }
  .review-quote { font-size: 13px; -webkit-line-clamp: 4; margin-bottom: 6px; }
  .review-readmore { font-size: 12px; padding-bottom: 10px; }
  .review-meta { padding-top: 8px; }
  .review-author { font-size: 13px; }
  .review-date { font-size: 11px; }
  .reviews-thanks { margin-top: 16px; font-size: 13px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 1.6rem; }
  .hero.hero-micro h1 { font-size: 1.6rem; }
  .section h2 { font-size: 1.35rem; }
  .card { padding: 14px 10px; }
  .card-icon { font-size: 1.25rem; }
  .card h3 { font-size: 0.86rem; }
  .card p { font-size: 12px; }
  .review-card { flex-basis: 85%; padding: 14px; }
}

/* ==========================================================================
   Lead-capture popup — auto-opens after 7s, collects name/phone/service,
   then sends a pre-filled SMS to the dispatch number.
   ========================================================================== */
.prs-lead-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.72);
  backdrop-filter: blur(3px);
  z-index: 950;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.prs-lead-overlay.open { display: flex; }

.prs-lead-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--bg-dark-alt);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(2,6,23,.55);
  color: #fff;
  animation: prsPopIn .32s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes prsPopIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.prs-lead-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.prs-lead-close:hover { background: rgba(255,255,255,.2); }

.prs-lead-header {
  position: relative;
  text-align: center;
  padding: 34px 30px 24px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background:
    radial-gradient(700px 260px at 15% 0%, var(--amber-glow), rgba(0,0,0,0) 60%),
    radial-gradient(600px 260px at 100% 0%, var(--red-glow), rgba(0,0,0,0) 60%),
    linear-gradient(160deg, var(--navy-950) 0%, rgba(2,6,23,.96) 100%);
}
.prs-lead-header img { height: 50px; width: auto; margin: 0 auto 16px; }
.prs-lead-header h3 { margin: 0 0 8px; font-size: 1.3rem; color: #fff; }
.prs-lead-header p { margin: 0; font-size: .92rem; line-height: 1.5; color: rgba(255,255,255,.75); }

.prs-lead-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.prs-lead-eta {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gold);
}
.prs-lead-areas-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.4);
  margin-bottom: 6px;
}
.prs-lead-areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.prs-lead-areas-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.prs-lead-areas-list svg { flex: 0 0 auto; }

.prs-lead-body { padding: 26px 30px 28px; }
.prs-lead-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin: 18px 0 7px;
}
.prs-lead-body label:first-child { margin-top: 0; }
.prs-optional { font-weight: 400; opacity: .6; }
.prs-lead-body input[type="text"],
.prs-lead-body input[type="tel"],
.prs-lead-body select {
  width: 100%;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 13px 14px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
.prs-lead-body select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='.6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.prs-lead-body select option { background: #0f172a; }
.prs-lead-body input::placeholder { color: rgba(255,255,255,.35); }
.prs-lead-body input:focus,
.prs-lead-body select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,156,44,.2);
}

.prs-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.prs-service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 12px 6px;
  cursor: pointer;
  text-align: center;
}
.prs-service-icon { font-size: 19px; line-height: 1; }
.prs-service-label {
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255,255,255,.8);
}
.prs-service-tile:hover { border-color: rgba(255,255,255,.35); }
.prs-service-tile.selected {
  border-color: var(--gold);
  background: rgba(217,156,44,.14);
  box-shadow: 0 0 0 1px var(--gold) inset;
}
.prs-service-tile.selected .prs-service-label { color: #fff; }
.prs-service-error {
  display: none;
  color: #fca5a5;
  font-size: 12px;
  margin-top: 6px;
}
.prs-service-error.show { display: block; }

.prs-lead-submit {
  width: 100%;
  margin-top: 24px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  cursor: pointer;
}
.prs-lead-submit:hover { filter: brightness(1.07); }
.prs-lead-fineprint {
  margin: 14px 0 0;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.4);
  text-align: center;
}

.prs-lead-copybox {
  display: none;
  margin-top: 16px;
  background: #0f172a;
  border: 1px dashed rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  white-space: pre-wrap;
}
.prs-lead-copybox.show { display: block; }
.prs-lead-copy-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 10px;
  padding: 11px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.prs-lead-copy-btn:hover { background: rgba(255,255,255,.18); }

.prs-lead-success {
  display: none;
  text-align: center;
  padding: 8px 4px 6px;
}
.prs-lead-success.show { display: block; }
.prs-check-badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prs-lead-success h4 { margin: 0 0 8px; font-size: 1.15rem; color: #fff; }
.prs-lead-success p { margin: 0; font-size: .92rem; line-height: 1.5; color: rgba(255,255,255,.7); }

@media (max-width: 420px) {
  .prs-lead-header { padding: 28px 22px 20px; }
  .prs-lead-body { padding: 22px 22px 24px; }
}
