/* ============================================================
   PROPCASH LANDING PAGES V3
   Design system: llm/DESIGN.md (espresso hero, white, espresso
   showcase, cream/white alternation, blue closer, cream footer).
   Extracted from the homepage's inline implementation so state,
   city, and neighborhood landing pages share one stylesheet.
   Scope: everything hangs off body.pc-lp.
   Conversion rule (llm/MARKETINGLAWS.md 9.5): landing pages carry
   no top navigation. The top bar is a plain wordmark + phone line,
   with no links that lead away from the page. The footer is the
   site-wide include (footer-placeholder + load-includes.js).
   ============================================================ */
:root {
  --tan: #F1EADB;
  --white: #ffffff;
  --brown: #6b4423;
  --deep: #5A3A1F;
  --green: #088e63;
  --green-dark: #06724f;
  --blue: #234a6b;
  --blue-light: #6fb0e0;
  --espresso: #352314;
  --espresso-card: #4A3826;
  --hair-warm: #E3D8C4;
  --hair-cool: #d8e1ea;
  --muted: #8f7a5e;
  --r-pill: 100px;
  --r-tag: 999px;
  --r-card: 20px;
  --r-small: 12px;
  --shadow-card: 0 24px 60px -20px rgba(42,26,13,0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body.pc-lp { margin: 0; font-family: 'DM Sans', sans-serif; color: var(--deep); background: var(--white); }
.pc-lp * { box-sizing: border-box; }
.pc-lp .wrap { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.pc-lp section { padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(48px, 6vw, 88px); }

.pc-lp h1, .pc-lp h2, .pc-lp h3 { font-family: 'Playfair Display', serif; color: var(--brown); margin: 0; }
.pc-lp h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; }
.pc-lp p { margin: 0; }
.pc-lp .body { font-size: 17px; line-height: 1.55; letter-spacing: -0.001em; font-weight: 400; color: var(--deep); }
.pc-lp .lead { font-size: clamp(19px, 2vw, 22px); line-height: 1.5; font-weight: 300; }
.pc-lp .caption { font-size: 13px; line-height: 1.45; color: var(--muted); }

.pc-lp .eyebrow {
  display: block; font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; line-height: 1.2; color: var(--blue); margin-bottom: 14px;
}

/* The CTA: green fill, white text, pill, no shadow. One per section. */
.pc-lp .btn-fill {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green); color: #fff; border: none;
  border-radius: var(--r-pill); padding: 14px 28px;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all 0.75s var(--ease);
}
.pc-lp .btn-fill:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── Hero zone (espresso). No top bar: nothing above the hero
      competes with the main CTA. ── */
.hero-zone {
  background: var(--espresso);
  display: flex; align-items: center;
  min-height: clamp(560px, 92vh, 940px);
}
.hero-zone > .wrap { width: 100%; }
/* Photo variant: a local street under a heavy espresso tint. The
   register stays dark-with-white-text; the photo is atmosphere,
   never a competing surface. Set the image per page inline via
   --hero-photo so the template stays one stylesheet. */
.hero-zone.hero-photo {
  background:
    linear-gradient(180deg, rgba(53,35,20,0.67) 0%, rgba(53,35,20,0.12) 42%),
    linear-gradient(100deg, rgba(53,35,20,0.60) 0%, rgba(53,35,20,0.43) 55%, rgba(53,35,20,0.37) 100%),
    var(--hero-photo) var(--hero-pos, center 62%) / cover no-repeat,
    var(--espresso);
}
.hero-zone.hero-photo h1 { text-shadow: 0 2px 24px rgba(30,18,8,0.45); }
.hero-zone.hero-photo .eyebrow { text-shadow: 0 1px 3px rgba(30,18,8,0.85), 0 2px 14px rgba(30,18,8,0.55); }
.hero-zone.hero-photo .gl-eb { text-shadow: none; }
.hero-zone .eyebrow { color: var(--blue-light); }
.hero-zone h1 {
  color: var(--white);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.03em;
  text-align: center;
}
.hero-zone .sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(19px, 2vw, 22px); line-height: 1.5; font-weight: 300;
  max-width: 640px; margin-top: 22px;
}
.hero-split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; padding-top: clamp(28px, 4vw, 56px); }
@media (min-width: 980px) { .hero-split { grid-template-columns: 1.15fr 1fr; gap: 64px; } }

/* Hero lead capture card (espresso-card, white pill input, one green CTA) */
.hero-card {
  background: var(--espresso-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-card); padding: 28px 26px;
  box-shadow: 0 32px 80px -24px rgba(20,12,6,0.50);
}
.hero-card .hc-title { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 18px; }
.hf-field { margin-bottom: 14px; position: relative; }
.hf-input {
  width: 100%; padding: 15px 24px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.25); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 16px; color: var(--deep);
  outline: none; transition: all 0.75s var(--ease);
}
.hf-input::placeholder { color: var(--muted); }
.hf-input:focus { border-color: var(--tan); box-shadow: 0 0 0 3px rgba(241,234,219,0.40); }
.hero-card .btn-fill { width: 100%; margin-top: 4px; }
.hero-card .hc-note { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 12px; text-align: center; line-height: 1.5; }

/* Social proof: seller avatars + one line, anchoring the card */
.hc-proof {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hc-avatars { display: flex; flex-shrink: 0; }
.hc-av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--espresso-card);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
}
.hc-av + .hc-av { margin-left: -9px; }
.hc-av.v1 { background: var(--brown); }
.hc-av.v2 { background: var(--green-dark); }
.hc-av.v3 { background: var(--blue); }
.hc-av.v4 { background: #9a7b4f; }
.hc-proof p { font-size: 13.5px; line-height: 1.45; color: rgba(255,255,255,0.78); margin: 0; max-width: 240px; }

/* ── Local coverage loop: the card's brand moment ──
      Sits at the top of the form card. An eyebrow gives the loop its
      subject; the house mark holds still while Antioch place names
      cycle beside it and the brand check fires for each one. All
      elements share one 3.6s cycle (labels run 6 x 3.6s = 21.6s), so
      the rhythm never drifts. Decorative; under reduced motion it
      rests on the first place, complete. */
.hc-live {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  margin-bottom: 18px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hc-live .gl-eb { margin-bottom: 0; }
.gl-row { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 66px; }
.hcl-wrap { position: relative; flex-shrink: 0; display: flex; }
.hcl-bloom {
  position: absolute; inset: -30%; border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(14,154,102,0.45) 0%, rgba(14,154,102,0.13) 45%, rgba(14,154,102,0) 68%);
}
.hcl-mark { width: 64px; height: 64px; overflow: visible; }
.hcl-house { fill: none; stroke: var(--white); stroke-width: 14; stroke-linejoin: miter; }
/* Resting state is complete (check drawn, first name shown). The GSAP
   loop below the page enhances this into the animated cycle; without
   JS, or under reduced motion, the finished lockup simply stands. */
.hcl-check {
  fill: none; stroke: #0E9A66; stroke-width: 15; stroke-linecap: butt;
  stroke-dasharray: 1; stroke-dashoffset: 0;
}
/* The name track hugs the mark: left-aligned so the pair stays tight
   no matter how short the name is. */
.hcl-labels { position: relative; height: 40px; min-width: 240px; overflow: hidden; }
.hcl-labels span {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-start;
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--white);
  white-space: nowrap; opacity: 0;
}
.hcl-labels span:first-child { opacity: 1; }
@media (max-width: 640px) {
  .hcl-mark { width: 52px; height: 52px; }
  .hcl-labels { height: 34px; min-width: 202px; }
  .hcl-labels span { font-size: 22px; }
}
.hf-shake { animation: hfshake .4s ease; }
@keyframes hfshake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }

/* House preview card after address selection */
.hf-pc { display: none; background: var(--white); border: 1px solid var(--hair-warm); border-radius: var(--r-small); overflow: hidden; margin-bottom: 14px; }
.hf-pc.show { display: block; }
.hf-pc-img { width: 100%; height: 132px; background: var(--tan); position: relative; overflow: hidden; }
.hf-pc-img img { width: 100%; height: 100%; object-fit: cover; display: none; }
.hf-pc-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.hf-pc-ph svg { animation: hfpls 1.5s ease infinite; }
@keyframes hfpls { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hf-pc-body { padding: 12px 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.hf-pc-st { font-size: 15px; font-weight: 600; color: var(--brown); line-height: 1.3; }
.hf-pc-ci { font-size: 13px; color: var(--muted); margin-top: 2px; }
.hf-pc-ed { background: none; border: none; padding: 0; margin-top: 6px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; color: var(--brown); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .hf-pc-ph svg { animation: none; } }

/* Places dropdown */
.pac-container { border-radius: var(--r-small); border: 1px solid var(--hair-warm); box-shadow: var(--shadow-card); margin-top: 4px; font-family: 'DM Sans', sans-serif; z-index: 10000; }
.pac-item { padding: 10px 14px; cursor: pointer; border-bottom: 1px solid var(--hair-warm); font-size: 14px; color: var(--deep); }
.pac-item:hover { background: var(--tan); }
.pac-icon { display: none; }
.pac-item-query { font-weight: 600; color: var(--brown); }

/* Value strip: static row of value props closing the hero zone */
.value-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 18px; margin-top: clamp(36px, 5vw, 60px); padding: 18px 0 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.value-strip span { color: rgba(255,255,255,0.65); font-size: 14.5px; }
.value-strip .vs-dot { color: rgba(255,255,255,0.35); font-size: 11px; }

/* ── Surfaces ── */
.sec-white { background: var(--white); border-block: 1px solid var(--hair-warm); }
.sec-cream { background: var(--tan); }
.sec-showcase { background: var(--espresso); color: var(--white); }
.sec-showcase .eyebrow { color: var(--blue-light); }
.sec-showcase h2, .sec-showcase h3 { color: var(--white); }
.sec-showcase .body { color: rgba(255,255,255,0.9); }
.sec-cta-blue { background: var(--blue); }
.sec-cta-blue .eyebrow, .sec-cta-blue h2 { color: var(--white); }
.sec-cta-blue .sub { color: rgba(255,255,255,0.95); }
.sec-cta-blue .note { color: rgba(255,255,255,0.85); }

/* ── Cards ── */
.pc-lp .card {
  background: var(--white); border: 1px solid var(--hair-warm);
  border-radius: var(--r-card); padding: 24px; box-shadow: var(--shadow-card);
}
.sec-white .card { border-color: var(--hair-cool); }

/* Trust tiles: statement cards, quiet serif, balanced lines, equal heights */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: clamp(48px, 6vw, 72px); }
.trust-tile { text-align: center; }
.trust-grid .trust-tile.card { display: flex; align-items: center; justify-content: center; padding: 26px 22px; }
.trust-tile .num {
  font-family: 'Playfair Display', serif; font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 700; line-height: 1.35; letter-spacing: -0.01em; color: var(--brown);
  text-wrap: balance;
}

/* Split sections: copy first in DOM, flip on desktop only */
.split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split.flip .copy { order: 2; }
  .split.flip .media { order: 1; }
}
.split .copy h2 { margin-bottom: 16px; }
.split .copy .lead { color: var(--deep); margin-bottom: 20px; }
.split .copy ul { list-style: none; margin: 0 0 28px; padding: 0; }
.split .copy li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; line-height: 1.55; color: var(--deep); padding: 6px 0; }
.split .copy li .tick { color: var(--deep); flex-shrink: 0; margin-top: 3px; }

/* Checklist rows with a bold lead line (housing-stock section) */
.check-rows { margin: 0 0 28px; padding: 0; list-style: none; }
.check-rows li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; }
.check-rows .tick { color: var(--deep); flex-shrink: 0; margin-top: 3px; }
.check-rows strong { display: block; font-size: 16.5px; color: var(--brown); }
.check-rows p { font-size: 15.5px; line-height: 1.5; color: var(--deep); margin-top: 2px; }

/* Mock UI card internals (crossed-off list, cost rows) */
.mock-hdr { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--hair-warm); margin-bottom: 6px; }
.mock-hdr .lbl { font-size: 16px; font-weight: 600; color: var(--brown); }
.mock-tag { display: inline-block; background: #e6edf4; color: var(--blue); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 12px; border-radius: var(--r-tag); }
.cross-row { display: flex; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--hair-warm); }
.cross-row:last-child { border-bottom: none; }
.cross-row .tick { color: var(--brown); flex-shrink: 0; }
.cross-row .txt { font-size: 16px; color: var(--deep); text-decoration: line-through; text-decoration-color: var(--muted); text-decoration-thickness: 1px; }
.mock-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--hair-warm); }
.mock-row .txt { font-size: 15.5px; color: var(--deep); }
.lc-amt-brown { font-size: 15px; font-weight: 600; color: var(--brown); text-align: right; }
.mock-total { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; margin-top: 4px; border-top: 1px solid var(--hair-warm); }
.mock-total .lbl { font-size: 15px; font-weight: 600; color: var(--brown); }
.mock-total .amt { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--brown); }

/* ── Showcase steps + live card ── */
.steps { display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step .n { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; min-width: 44px; }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.step p { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.55; }

.live-card {
  background: var(--espresso-card); color: var(--white);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-card); padding: 22px; box-shadow: var(--shadow-card);
}
.live-card .lc-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.live-card .lc-hdr .lbl { font-size: 15px; font-weight: 600; color: var(--white); }
.live-pill { display: inline-flex; align-items: center; gap: 7px; background: var(--tan); color: var(--brown); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 12px; border-radius: var(--r-tag); }
.live-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brown); animation: lp 2.4s ease-in-out infinite; }
@keyframes lp { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }
.lc-row { display: grid; grid-template-columns: 34px 1fr 110px; gap: 12px; align-items: center; padding: 11px 0; }
.lc-row + .lc-row { border-top: 1px solid rgba(255,255,255,0.06); }
.lc-av { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; }
.lc-av.a1 { background: var(--brown); }
.lc-av.a2 { background: var(--blue); }
.lc-av.a3 { background: #9a7b4f; }
.lc-name { font-size: 14px; font-weight: 500; color: var(--white); }
.lc-bar { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.12); margin-top: 7px; overflow: hidden; }
.progress-fill { display: block; height: 100%; width: 0; background: var(--blue-light); transition: all 0.75s var(--ease); }
.progress-fill.complete { background: var(--tan); }
.lc-amt { font-size: 14px; color: rgba(255,255,255,0.6); text-align: right; }
.lc-amt.ready { color: #ffffff; font-weight: 700; font-size: 15px; }
.live-card .caption { color: rgba(255,255,255,0.55); margin-top: 14px; }

/* ── Section imagery: one soft shadow, card radius, hairline ── */
.feat-img {
  display: block; width: 100%; height: auto;
  border-radius: var(--r-card); border: 1px solid var(--hair-warm);
  box-shadow: var(--shadow-card);
}
.sec-white .feat-img { border-color: var(--hair-cool); }
.img-frame { position: relative; }
.img-frame .img-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--white); border: 1px solid var(--hair-warm);
  border-radius: var(--r-small); padding: 14px 18px; box-shadow: var(--shadow-card);
  max-width: 240px;
}
.img-frame .img-badge .num { display: block; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: var(--brown); line-height: 1; }
.img-frame .img-badge .txt { display: block; font-size: 13px; line-height: 1.4; color: var(--deep); margin-top: 6px; }

/* ── Coverage tags + local links (cream section) ── */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.area-tag {
  display: inline-block; background: var(--white); border: 1px solid var(--hair-warm);
  color: var(--deep); font-size: 14.5px; font-weight: 500;
  padding: 8px 18px; border-radius: var(--r-tag);
}
.area-tag.hl { background: var(--brown); border-color: var(--brown); color: var(--tan); }
.local-links { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--hair-warm); }
.local-links .lbl { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 12px; }
.local-links p { font-size: 16px; line-height: 1.9; color: var(--deep); }
.local-links a { color: var(--brown); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--hair-warm); transition: all 0.75s var(--ease); }
.local-links a:hover { color: var(--deep); border-bottom-color: var(--brown); }

/* ── Card grids (promise, situations) ── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.card-grid-3 .card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.card-grid-3 .card p { font-size: 16px; line-height: 1.55; color: var(--deep); }

/* ── Market overview content + GEO definition card ── */
.content-block { max-width: 820px; margin: 40px auto 0; }
.content-block h3 { font-size: clamp(21px, 2.2vw, 26px); font-weight: 700; margin: 28px 0 10px; }
.content-block h3:first-child { margin-top: 0; }
.content-block p { font-size: 17px; line-height: 1.65; color: var(--deep); }
.geo-def {
  max-width: 820px; margin: 36px auto 0; background: var(--white); border: 1px solid var(--hair-warm);
  border-radius: var(--r-card); padding: 24px; box-shadow: var(--shadow-card);
}
.geo-def .lbl { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 10px; }
.geo-def p { font-size: 16.5px; line-height: 1.6; color: var(--deep); }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-list details { background: var(--white); border: 1px solid var(--hair-cool); border-radius: var(--r-card); box-shadow: var(--shadow-card); margin-bottom: 14px; overflow: hidden; }
.sec-cream .faq-list details { border-color: var(--hair-warm); }
.faq-list summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-size: 17px; font-weight: 600; color: var(--brown); font-family: 'DM Sans', sans-serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { content: ""; }
.faq-list summary::after { content: none; }
.faq-list summary .fx { position: relative; flex-shrink: 0; width: 14px; height: 14px; transition: transform 0.75s var(--ease); }
.faq-list summary .fx::before, .faq-list summary .fx::after { content: ""; position: absolute; background: var(--brown); border-radius: 1px; }
.faq-list summary .fx::before { left: 0; right: 0; top: 6px; height: 2px; }
.faq-list summary .fx::after { top: 0; bottom: 0; left: 6px; width: 2px; }
.faq-list details[open] summary .fx { transform: rotate(45deg); }
.faq-list .ans { padding: 0 24px 22px; font-size: 16px; line-height: 1.6; color: var(--deep); }

/* ── Contact strip ── */
.contact-strip { text-align: center; }
.contact-strip .body strong { color: var(--brown); }

/* ── Blue CTA band ── */
.sec-cta-blue { text-align: center; }
.sec-cta-blue h2 { font-size: clamp(38px, 5vw, 70px); font-weight: 800; line-height: 1.02; letter-spacing: -0.025em; }
.sec-cta-blue .sub { font-size: clamp(17px, 2vw, 20px); line-height: 1.55; max-width: 560px; margin: 18px auto 0; }
.cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.cta-form input {
  width: min(420px, 100%); padding: 14px 24px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.4); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 16px; color: var(--deep); outline: none;
  transition: all 0.75s var(--ease);
}
.cta-form input::placeholder { color: var(--muted); }
.cta-form input:focus { border-color: var(--tan); box-shadow: 0 0 0 3px rgba(241,234,219,0.40); }
.sec-cta-blue .note { font-size: 14px; margin-top: 16px; }

/* ── Section headers ── */
.sec-head { max-width: 760px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .lead { margin-top: 16px; color: var(--deep); }
.sec-cta-wrap { margin-top: 40px; }
.sec-cta-wrap.center { text-align: center; }

/* ── Footer include support: the site footer (includes/footer.html)
      expects .container and helper text classes from styles-v2.css.
      Provide equivalents so landing pages don't need that stylesheet. ── */
.pc-lp .container { width: min(1200px, 92%); margin: 0 auto; padding: 0 16px; }
.pc-lp .pc-footer { padding: clamp(36px, 5vw, 56px) 0; }
.pc-lp .pc-footer .text-small { font-size: 13px; }
.pc-lp .pc-footer .text-muted { color: var(--muted); }
.pc-lp .footer-disclaimer { font-size: 13px; line-height: 1.6; }

/* ── Reveal motion: one curve, fade up 18px, group settle ── */
.reveal { opacity: 0; transform: translateY(18px); transition: all 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .btn-fill, .progress-fill, .faq-list summary .fx { transition: none; }
  .reveal { opacity: 1; transform: none; }
  .live-pill .dot { animation: none; }
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 979px) {
  .pc-lp .hero-zone { padding-top: 16px; }
  .hero-split { gap: 26px; }
  .hero-card { padding: 20px 18px; }
}
@media (max-width: 640px) {
  .pc-lp .hero-card .btn-fill,
  .pc-lp .split .btn-fill,
  .pc-lp .sec-cta-wrap .btn-fill,
  .pc-lp .cta-form .btn-fill {
    width: 100%; padding: 16px 24px; min-height: 52px; font-size: 17px;
  }
  .hero-zone h1 { font-size: 42px; line-height: 1.02; }
  .hero-zone .sub { font-size: 17.5px; margin-top: 14px; }
  .hero-zone.hero-photo { --hero-pos: center center; }
  .value-strip { flex-direction: column; gap: 8px; }
  .value-strip .vs-dot { display: none; }
}
