@import url('design/colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--hp-cream);
  font-family: var(--hp-font-sans);
  color: var(--hp-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Scarcity bar (sticky top) ---------- */
.scarcity {
  background: var(--hp-orange);
  color: var(--hp-navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  text-align: center;
  position: relative;
  z-index: 20;
}
.scarcity strong { font-weight: 900; }
.scarcity .dot { display: inline-block; width: 6px; height: 6px; background: var(--hp-navy); border-radius: 50%; margin: 0 10px 2px; vertical-align: middle; }
.scarcity__close {
  position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
  background: transparent; border: none; color: var(--hp-navy); font-size: 18px;
  cursor: pointer; line-height: 1; padding: 4px 8px; opacity: 0.6;
}
.scarcity__close:hover { opacity: 1; }
.scarcity a.cta-link { color: var(--hp-navy); text-decoration: underline; text-underline-offset: 2px; font-weight: 800; cursor: pointer; }

/* ---------- Header ---------- */
.site-header { background: var(--hp-navy); color: #fff; position: sticky; top: 0; z-index: 19; }
.site-header__inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 32px;
}
.site-header__logo { flex-shrink: 0; cursor: pointer; }
.site-header__logo img { height: 56px; width: auto; }
.site-header__nav { display: flex; gap: 28px; flex: 1; }
.site-header__nav a {
  color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: color 150ms var(--hp-ease);
  background: none; border: none; padding: 0; font-family: inherit;
}
.site-header__nav a:hover, .site-header__nav a.is-active { color: var(--hp-orange); }
.site-header__cta { background: var(--hp-orange); color: var(--hp-navy); font-weight: 800; font-size: 14px; padding: 10px 18px; border-radius: 999px; text-decoration: none; cursor: pointer; border: none; font-family: inherit; transition: background 150ms var(--hp-ease); }
.site-header__cta:hover { background: var(--hp-orange-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; font-family: inherit;
  font-weight: 800; font-size: 15px; padding: 14px 24px;
  border-radius: 999px; text-decoration: none;
  transition: background 150ms var(--hp-ease), transform 150ms var(--hp-ease), box-shadow 150ms var(--hp-ease);
}
.btn--cta { background: var(--hp-orange); color: var(--hp-navy); box-shadow: 0 2px 0 rgba(14,42,77,0.18); }
.btn--cta:hover { background: var(--hp-orange-dark); }
.btn--cta:active { transform: translateY(1px); box-shadow: none; }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn--ghost:hover { border-color: var(--hp-orange); color: var(--hp-orange); }
.btn--ghost-dark { background: transparent; color: var(--hp-navy); border: 1.5px solid var(--hp-navy); }
.btn--ghost-dark:hover { background: var(--hp-navy); color: #fff; }
.btn--large { font-size: 17px; padding: 18px 32px; }
.btn--xl { font-size: 19px; padding: 22px 36px; }
.btn--block { width: 100%; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow { color: var(--hp-orange); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; }
.text-link { color: var(--hp-navy); text-decoration: underline; text-underline-offset: 3px; font-weight: 700; cursor: pointer; }
.text-link:hover { color: var(--hp-orange); }
.text-link-light { color: var(--hp-orange); text-decoration: none; font-weight: 700; cursor: pointer; }
.text-link-light:hover { text-decoration: underline; }

/* ---------- HOME — Hero ---------- */
.hero {
  background: var(--hp-navy);
  color: #fff;
  padding: 80px 24px 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(245,166,35,0.06), transparent 50%);
  pointer-events: none;
}
.hero__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero__copy { max-width: 580px; }
.hero__eyebrow { color: var(--hp-orange); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.hero__eyebrow .pin { width: 6px; height: 6px; background: var(--hp-orange); border-radius: 50%; }
.hero__title {
  font-size: 64px; line-height: 1.0; font-weight: 900;
  letter-spacing: -0.025em; margin: 0 0 24px;
}
.hero__title .accent { color: var(--hp-orange); }
.hero__lede { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.85); margin: 0 0 32px; max-width: 520px; }
.hero__lede strong { color: #fff; font-weight: 700; }
.hero__ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero__see-card { color: #fff; font-weight: 600; text-decoration: none; font-size: 15px; padding: 8px 4px; cursor: pointer; }
.hero__see-card:hover { color: var(--hp-orange); }
.hero__trust {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
}
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.75); }
.hero__trust-item .check { width: 16px; height: 16px; border-radius: 50%; background: var(--hp-orange); color: var(--hp-navy); display: grid; place-items: center; font-size: 11px; font-weight: 900; }

/* hero postcard mockup */
.hero__art { position: relative; padding: 40px 0; }
.hero__mailbox {
  position: relative; aspect-ratio: 4/5; max-width: 460px; margin: 0 auto;
  display: grid; place-items: center;
}
.hero__card-stack { position: relative; width: 100%; max-width: 380px; }
.hero__card-back, .hero__card-front {
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.45), 0 4px 12px rgba(0,0,0,0.3);
  background: #fff; padding: 8px;
}
.hero__card-back {
  position: absolute; top: 30px; left: -32px; width: 88%;
  transform: rotate(-6deg);
  opacity: 0.92;
}
.hero__card-front {
  position: relative;
  transform: rotate(3deg);
  z-index: 2;
}
.hero__card-front img, .hero__card-back img { border-radius: 3px; width: 100%; }
.hero__pin {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff6b35, #c1340f);
  box-shadow: 0 4px 8px rgba(0,0,0,0.4), inset -2px -3px 6px rgba(0,0,0,0.3);
  z-index: 3;
}

/* ---------- Section structure ---------- */
.section { padding: 88px 24px; }
.section--cream { background: var(--hp-cream); }
.section--white { background: #fff; }
.section--navy { background: var(--hp-navy); color: #fff; }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__eyebrow { color: var(--hp-orange); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; margin-bottom: 14px; }
.section__title { font-size: 44px; font-weight: 900; letter-spacing: -0.02em; margin: 0 0 16px; line-height: 1.05; }
.section__title .accent { color: var(--hp-orange); }
.section__lede { font-size: 17px; line-height: 1.5; color: var(--hp-ink-2); margin: 0; }
.section--navy .section__lede { color: rgba(255,255,255,0.78); }
.section--navy .section__title { color: #fff; }

/* ---------- How it works (3 steps) ---------- */
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1080px; margin: 0 auto; }
.how__step {
  background: #fff; border: 1px solid var(--hp-stroke); border-radius: 12px;
  padding: 32px 28px; position: relative;
}
.how__num {
  position: absolute; top: -22px; left: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--hp-orange); color: var(--hp-navy);
  display: grid; place-items: center;
  font-weight: 900; font-size: 20px;
  box-shadow: 0 4px 0 rgba(14,42,77,0.15);
}
.how__step h3 { font-size: 22px; font-weight: 800; margin: 24px 0 12px; letter-spacing: -0.01em; }
.how__step p { font-size: 15px; line-height: 1.55; color: var(--hp-ink-2); margin: 0; }

/* ---------- Stat strip ---------- */
.stats { background: var(--hp-navy); color: #fff; padding: 80px 24px; position: relative; }
.stats__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; align-items: end; }
.stat { text-align: center; padding: 0 8px; }
.stat__num {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--hp-orange);
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum", "lnum";
}
.stat__num .small {
  font-size: 0.5em;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(245, 166, 35, 0.72);
}
.stat__label {
  font-size: 11px;
  color: var(--hp-ink-2);
  margin-top: 18px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.stats .stat__label { color: rgba(255,255,255,0.62); font-weight: 600; }

/* ---------- The card (proof section) ---------- */
.proof { padding: 100px 24px; background: var(--hp-cream); position: relative; overflow: hidden; }
.proof__inner { max-width: 1180px; margin: 0 auto; }
.proof__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1080px; margin: 0 auto;
  align-items: center;
}
.proof__card-wrap { position: relative; }
.proof__card-wrap img {
  width: 100%; border-radius: 6px;
  box-shadow: 0 32px 64px rgba(14,42,77,0.18), 0 8px 16px rgba(14,42,77,0.08);
  border: 1px solid var(--hp-stroke);
}
.proof__card-wrap--front { transform: rotate(-2deg); }
.proof__card-wrap--back  { transform: rotate(2deg); margin-top: 32px; }
.proof__label {
  position: absolute; top: -14px; left: 16px;
  background: var(--hp-navy); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 3px;
  z-index: 2;
}
.proof__caption { text-align: center; margin-top: 56px; color: var(--hp-ink-2); font-size: 14px; }
.proof__caption strong { color: var(--hp-navy); }

/* ---------- Who's on the card grid ---------- */
.lineup__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1180px; margin: 0 auto; }
.lineup__cell {
  background: #fff; border: 1px solid var(--hp-stroke); border-radius: 8px;
  padding: 16px; display: flex; align-items: center; gap: 14px;
  transition: border-color 150ms var(--hp-ease), transform 150ms var(--hp-ease);
}
.lineup__cell:hover { border-color: var(--hp-orange); transform: translateY(-2px); }
.lineup__logo {
  width: 48px; height: 48px; border-radius: 4px; background: #fff; border: 1px solid var(--hp-stroke);
  display: grid; place-items: center; flex-shrink: 0;
  font-weight: 900; font-size: 14px; color: var(--hp-navy);
  overflow: hidden;
}
.lineup__logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.lineup__cat { font-size: 9px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hp-orange); margin-bottom: 2px; }
.lineup__name { font-size: 14px; font-weight: 800; color: var(--hp-navy); line-height: 1.2; }
.lineup__cell--taken { opacity: 0.55; }
.lineup__cell--open {
  border: 2px dashed var(--hp-orange); background: var(--hp-orange-soft);
}
.lineup__cell--open .lineup__logo {
  background: var(--hp-orange); color: var(--hp-navy); border-color: transparent; font-size: 22px;
}
.lineup__cell--open .lineup__name { color: var(--hp-navy); }
.lineup__cta { text-align: center; margin-top: 40px; }

/* ---------- The pitch ---------- */
.pitch { padding: 100px 24px; background: #fff; }
.pitch__inner { max-width: 760px; margin: 0 auto; }
.pitch__head { font-size: 38px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 32px; }
.pitch__head .accent { color: var(--hp-orange); }
.pitch__body p { font-size: 17px; line-height: 1.65; color: var(--hp-ink-1); margin: 0 0 20px; }
.pitch__body p strong { color: var(--hp-navy); font-weight: 800; }
.pitch__compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 40px 0;
}
.pitch__compare-cell { padding: 24px; border-radius: 10px; }
.pitch__compare-cell--bad { background: #f6f2ec; border: 1px solid var(--hp-stroke); }
.pitch__compare-cell--good { background: var(--hp-navy); color: #fff; }
.pitch__compare-label { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; opacity: 0.7; }
.pitch__compare-cell--good .pitch__compare-label { color: var(--hp-orange); opacity: 1; }
.pitch__compare-list { list-style: none; padding: 0; margin: 0; }
.pitch__compare-list li { font-size: 14px; line-height: 1.6; padding: 6px 0; }
.pitch__compare-cell--bad li::before { content: '✕'; color: #999; margin-right: 8px; font-weight: 800; }
.pitch__compare-cell--good li::before { content: '✓'; color: var(--hp-orange); margin-right: 8px; font-weight: 900; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--hp-stroke);
}
.faq__q {
  width: 100%; background: none; border: none; font-family: inherit;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; color: var(--hp-navy);
  font-size: 18px; font-weight: 800; letter-spacing: -0.005em;
}
.faq__icon { font-size: 22px; color: var(--hp-orange); font-weight: 400; transition: transform 150ms var(--hp-ease); flex-shrink: 0; margin-left: 16px; }
.faq__item--open .faq__icon { transform: rotate(45deg); }
.faq__a { padding: 0 0 24px; font-size: 16px; line-height: 1.6; color: var(--hp-ink-2); max-width: 92%; }
.faq__a strong { color: var(--hp-navy); }

/* ---------- Footer ---------- */
.site-footer { background: var(--hp-navy); color: #fff; }
.site-footer__band {
  background: var(--hp-orange); color: #fff;
  text-align: center; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 16px; font-size: 16px;
}
.site-footer__inner { max-width: 1180px; margin: 0 auto; padding: 56px 24px 32px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.site-footer__brand img { height: 32px; margin-bottom: 14px; }
.site-footer__brand p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.55; margin: 0 0 16px; max-width: 320px; }
.site-footer__contact { display: flex; flex-direction: column; gap: 6px; }
.site-footer__contact a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 600; }
.site-footer__contact a:hover { color: var(--hp-orange); }
.site-footer h4 { color: var(--hp-orange); font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer__links { display: flex; flex-direction: column; gap: 8px; }
.site-footer__links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; cursor: pointer; }
.site-footer__links a:hover { color: var(--hp-orange); }
.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 1180px; margin: 0 auto; padding: 22px 24px;
  display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}

/* ====================================================
   ADVERTISE PAGE
   ==================================================== */
.adv-hero {
  background: var(--hp-navy); color: #fff; padding: 80px 24px 64px;
}
.adv-hero__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.adv-hero__title { font-size: 60px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 20px; }
.adv-hero__title .accent { color: var(--hp-orange); }
.adv-hero__sub { font-size: 19px; line-height: 1.5; color: rgba(255,255,255,0.85); margin: 0 auto 32px; max-width: 660px; }
.adv-hero__price-row { display: inline-flex; align-items: baseline; gap: 14px; }
.adv-hero__price { font-size: 88px; font-weight: 900; color: var(--hp-orange); letter-spacing: -0.04em; line-height: 1; }
.adv-hero__price-meta { color: rgba(255,255,255,0.7); font-size: 15px; text-align: left; line-height: 1.4; }
.adv-hero__price-meta strong { color: #fff; font-weight: 700; }

/* Pricing table */
.pricing { padding: 80px 24px; background: #fff; }
.pricing__grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pricing__card {
  background: #fff; border: 1px solid var(--hp-stroke); border-radius: 14px;
  padding: 36px 32px; position: relative;
}
.pricing__card--feature {
  border: 2px solid var(--hp-orange);
  box-shadow: 0 16px 32px rgba(245,166,35,0.15);
}
.pricing__badge {
  position: absolute; top: -14px; left: 32px;
  background: var(--hp-orange); color: var(--hp-navy);
  font-size: 11px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 4px;
}
.pricing__cat { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hp-orange); margin-bottom: 8px; }
.pricing__name { font-size: 28px; font-weight: 900; letter-spacing: -0.015em; margin: 0 0 8px; }
.pricing__desc { font-size: 14px; color: var(--hp-ink-2); margin: 0 0 24px; line-height: 1.5; }
.pricing__price { display: flex; align-items: baseline; gap: 10px; margin: 0 0 8px; padding-bottom: 24px; border-bottom: 1px solid var(--hp-stroke); }
.pricing__price .num { font-size: 56px; font-weight: 900; color: var(--hp-navy); letter-spacing: -0.03em; line-height: 1; }
.pricing__price .per { font-size: 15px; color: var(--hp-ink-2); font-weight: 600; }
.pricing__features { list-style: none; padding: 24px 0 0; margin: 0; }
.pricing__features li { padding: 10px 0; font-size: 15px; line-height: 1.4; display: flex; align-items: flex-start; gap: 10px; color: var(--hp-navy); }
.pricing__features li::before { content: '✓'; color: var(--hp-orange); font-weight: 900; flex-shrink: 0; }
.pricing__features li.muted { color: var(--hp-ink-3); }
.pricing__features li.muted::before { content: '–'; color: var(--hp-ink-3); }
.pricing__cta { margin-top: 28px; }

/* Best for callout */
.best-for { padding: 72px 24px; background: var(--hp-cream); }
.best-for__inner { max-width: 1080px; margin: 0 auto; }
.best-for__head { text-align: center; margin-bottom: 32px; }
.best-for__title { font-size: 32px; font-weight: 900; letter-spacing: -0.015em; margin: 0 0 10px; }
.best-for__sub { color: var(--hp-ink-2); font-size: 16px; margin: 0; }
.best-for__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}
.best-for__chip {
  background: #fff; border: 1px solid var(--hp-stroke); border-radius: 999px;
  padding: 10px 18px; text-align: center; font-weight: 700; font-size: 14px; color: var(--hp-navy);
}
.best-for__chip.taken { background: var(--hp-navy); color: #fff; border-color: var(--hp-navy); }
.best-for__chip.taken::after { content: ' · taken'; color: var(--hp-orange); font-weight: 700; }
.best-for__foot { text-align: center; margin-top: 24px; font-size: 14px; color: var(--hp-ink-2); }

/* ROI / objection block */
.roi { padding: 88px 24px; background: #fff; }
.roi__inner { max-width: 980px; margin: 0 auto; }
.roi__title { font-size: 38px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 16px; }
.roi__lede { font-size: 17px; line-height: 1.6; color: var(--hp-ink-1); margin: 0 0 32px; max-width: 640px; }
.roi__lede strong { font-weight: 800; }
.roi__examples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.roi__example {
  background: var(--hp-cream); border: 1px solid var(--hp-stroke); border-radius: 10px;
  padding: 24px;
}
.roi__example .biz { font-size: 13px; color: var(--hp-ink-2); margin-bottom: 6px; font-weight: 600; }
.roi__example .offer { background: var(--hp-orange); color: var(--hp-navy); padding: 12px 14px; border-radius: 6px; font-weight: 800; font-size: 16px; text-align: center; margin: 8px 0; }
.roi__example .verdict { font-size: 13px; color: var(--hp-ink-2); font-style: italic; }
.roi__example .verdict strong { color: var(--hp-navy); font-style: normal; font-weight: 800; }

/* Sticky CTA on advertise page */
.adv-sticky-cta {
  background: var(--hp-navy); color: #fff;
  padding: 64px 24px;
  position: relative;
}
.adv-sticky-cta__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.adv-sticky-cta__title { font-size: 36px; font-weight: 900; letter-spacing: -0.015em; margin: 0 0 12px; line-height: 1.15; }
.adv-sticky-cta__sub { color: rgba(255,255,255,0.8); font-size: 16px; margin: 0 0 32px; }
.adv-sticky-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.adv-sticky-cta__buttons .btn { min-width: 240px; }

/* Two ways block */
.twoways { padding: 64px 24px; background: var(--hp-cream); }
.twoways__inner { max-width: 880px; margin: 0 auto; }
.twoways__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.twoways__btn {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  background: var(--hp-orange); color: var(--hp-navy);
  border: none; border-radius: 12px;
  padding: 28px 32px; cursor: pointer;
  text-align: left;
  box-shadow: 0 4px 0 rgba(14,42,77,0.18);
  transition: transform 150ms var(--hp-ease), box-shadow 150ms var(--hp-ease), background 150ms var(--hp-ease);
  font-family: inherit; text-decoration: none;
}
.twoways__btn:hover { background: var(--hp-orange-dark); }
.twoways__btn:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(14,42,77,0.18); }
.twoways__btn .label { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.twoways__btn .value { font-size: 24px; font-weight: 900; letter-spacing: -0.015em; }

/* ====================================================
   /CARD PAGE
   ==================================================== */
.card-hero {
  background: var(--hp-navy); color: #fff; padding: 56px 24px 40px;
  text-align: center;
}
.card-hero__eyebrow { color: var(--hp-orange); font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; margin-bottom: 14px; }
.card-hero__title { font-size: 48px; font-weight: 900; letter-spacing: -0.02em; margin: 0 0 16px; line-height: 1.05; }
.card-hero__title .zip { color: var(--hp-orange); }
.card-hero__meta { color: rgba(255,255,255,0.78); font-size: 15px; margin: 0; display: inline-flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.card-hero__meta .dot { width: 4px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 50%; }

.directory { padding: 56px 24px 88px; background: var(--hp-cream); }
.directory__inner { max-width: 1180px; margin: 0 auto; }
.directory__pick {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 2px solid var(--hp-orange);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  margin-bottom: 32px;
  box-shadow: 0 16px 40px rgba(245,166,35,0.12);
}
.directory__pick-photo { background: var(--hp-cream); position: relative; min-height: 360px; }
.directory__pick-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.directory__pick-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--hp-navy); color: #fff;
  font-size: 11px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 4px;
  display: flex; align-items: center; gap: 6px;
}
.directory__pick-badge::before { content: '★'; color: var(--hp-orange); font-size: 14px; }
.directory__pick-body { padding: 36px 40px; display: flex; flex-direction: column; gap: 12px; }
.directory__pick-cat { font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hp-orange); }
.directory__pick-name { font-size: 36px; font-weight: 900; letter-spacing: -0.02em; margin: 0; line-height: 1.05; }
.directory__pick-tagline { font-style: italic; color: var(--hp-ink-2); font-size: 16px; margin: 0; }
.directory__pick-offer {
  background: var(--hp-orange); color: var(--hp-navy);
  font-weight: 800; font-size: 20px; padding: 16px 20px; border-radius: 8px; text-align: center;
}
.directory__pick-actions { display: flex; gap: 10px; margin-top: 4px; }
.directory__pick-actions a { flex: 1; }
.directory__pick-actions .phone-btn { background: var(--hp-navy); color: #fff; }
.directory__pick-actions .phone-btn:hover { background: var(--hp-navy-dark); }

.directory__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* Directory listing card — postcard tile aesthetic */
.lcard {
  background: #fff; border: 1px solid var(--hp-stroke); border-radius: 10px;
  padding: 18px; display: flex; flex-direction: column; gap: 10px;
  transition: transform 150ms var(--hp-ease), box-shadow 150ms var(--hp-ease), border-color 150ms var(--hp-ease);
  position: relative;
}
.lcard:hover { transform: translateY(-2px); box-shadow: var(--hp-shadow-card); border-color: var(--hp-stroke-2); }
.lcard__head { display: flex; gap: 14px; align-items: flex-start; }
.lcard__logo {
  width: 56px; height: 56px; border-radius: 6px;
  background: #fff; border: 1px solid var(--hp-stroke);
  display: grid; place-items: center; flex-shrink: 0;
  font-weight: 900; font-size: 18px; color: var(--hp-navy);
  overflow: hidden;
}
.lcard__logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.lcard__head-meta { flex: 1; min-width: 0; }
.lcard__cat { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hp-orange); margin-bottom: 4px; }
.lcard__name { font-size: 19px; font-weight: 900; color: var(--hp-navy); margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
.lcard__rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--hp-ink-2); margin-top: 4px; }
.lcard__rating .g { display: inline-grid; place-items: center; width: 14px; height: 14px; font-size: 11px; font-weight: 700; border-radius: 50%; border: 1px solid var(--hp-stroke); color: #4285F4; background: #fff; }
.lcard__rating .num { color: var(--hp-navy); font-weight: 800; }
.lcard__rating .stars { color: var(--hp-star); letter-spacing: 0.5px; font-size: 13px; }
.lcard__tagline { font-size: 13px; font-style: italic; color: var(--hp-ink-2); margin: 0; line-height: 1.4; }
.lcard__offer {
  background: var(--hp-orange); color: var(--hp-navy);
  font-weight: 800; font-size: 15px; padding: 11px 14px; border-radius: 6px; text-align: center;
  line-height: 1.25;
}
.lcard__actions { display: flex; gap: 8px; margin-top: 4px; }
.lcard__phone {
  flex: 1;
  background: var(--hp-navy); color: #fff;
  padding: 10px 12px; border-radius: 6px; text-align: center;
  font-weight: 800; font-size: 14px; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 150ms var(--hp-ease);
}
.lcard__phone:hover { background: var(--hp-navy-dark); }
.lcard__web {
  background: #fff; color: var(--hp-navy); border: 1px solid var(--hp-stroke);
  padding: 10px 12px; border-radius: 6px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: border-color 150ms var(--hp-ease), color 150ms var(--hp-ease);
}
.lcard__web:hover { border-color: var(--hp-orange); color: var(--hp-orange); }

/* Summer checklist */
.checklist {
  background: var(--hp-orange); color: var(--hp-navy);
  padding: 36px; border-radius: 12px;
  margin-top: 48px;
}
.checklist__title { font-size: 22px; font-weight: 900; text-align: center; margin: 0 0 20px; letter-spacing: -0.005em; }
.checklist__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; max-width: 760px; margin: 0 auto; }
.checklist__item { font-size: 15px; font-weight: 600; display: flex; align-items: flex-start; gap: 10px; }
.checklist__item::before { content: '☐'; font-size: 20px; line-height: 1; flex-shrink: 0; font-weight: 400; }

/* Save card prompt */
.save-prompt { text-align: center; margin-top: 32px; padding: 24px; color: var(--hp-ink-2); font-size: 14px; }
.save-prompt strong { color: var(--hp-navy); font-weight: 800; }

/* ====================================================
   PAST CARDS
   ==================================================== */
.past { padding: 56px 24px 88px; background: var(--hp-cream); min-height: 60vh; }
.past__head { max-width: 1180px; margin: 0 auto 48px; text-align: center; }
.past__title { font-size: 48px; font-weight: 900; letter-spacing: -0.02em; margin: 0 0 14px; line-height: 1.05; }
.past__lede { font-size: 17px; color: var(--hp-ink-2); max-width: 580px; margin: 0 auto; line-height: 1.5; }
.past__grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.past__entry { background: #fff; border: 1px solid var(--hp-stroke); border-radius: 12px; overflow: hidden; }
.past__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 16px; background: var(--hp-cream); }
.past__thumbs img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border: 1px solid var(--hp-stroke); border-radius: 4px; }
.past__entry-body { padding: 20px 24px 24px; }
.past__date { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hp-orange); margin-bottom: 6px; }
.past__zip { font-size: 22px; font-weight: 900; margin: 0 0 4px; letter-spacing: -0.01em; }
.past__neigh { font-size: 14px; color: var(--hp-ink-2); margin: 0 0 14px; }
.past__stats { display: flex; gap: 16px; margin-bottom: 16px; padding-top: 14px; border-top: 1px solid var(--hp-stroke); font-size: 12px; color: var(--hp-ink-2); }
.past__stats span strong { display: block; color: var(--hp-navy); font-size: 16px; font-weight: 800; }
.past__view {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--hp-navy); font-weight: 800; font-size: 14px; text-decoration: none;
  cursor: pointer;
}
.past__view:hover { color: var(--hp-orange); }

/* ====================================================
   CONTACT
   ==================================================== */
.contact { padding: 80px 24px 120px; background: var(--hp-cream); min-height: 70vh; }
.contact__inner { max-width: 720px; margin: 0 auto; }
.contact__head { text-align: center; margin-bottom: 48px; }
.contact__title { font-size: 56px; font-weight: 900; letter-spacing: -0.025em; margin: 0 0 18px; line-height: 1.0; }
.contact__lede { font-size: 18px; color: var(--hp-ink-2); margin: 0 auto; line-height: 1.5; max-width: 540px; }
.contact__lede strong { color: var(--hp-navy); }
.contact__options { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact__option {
  display: flex; align-items: center; gap: 20px;
  background: #fff; border: 1px solid var(--hp-stroke); border-radius: 14px;
  padding: 24px 28px; text-decoration: none;
  transition: transform 150ms var(--hp-ease), border-color 150ms var(--hp-ease), box-shadow 150ms var(--hp-ease);
  cursor: pointer;
}
.contact__option:hover { transform: translateY(-2px); border-color: var(--hp-orange); box-shadow: var(--hp-shadow-card); }
.contact__option--primary { background: var(--hp-orange); border-color: var(--hp-orange); color: var(--hp-navy); }
.contact__option--primary:hover { background: var(--hp-orange-dark); border-color: var(--hp-orange-dark); }
.contact__option-icon {
  width: 56px; height: 56px; border-radius: 12px; flex-shrink: 0;
  background: var(--hp-navy); color: #fff;
  display: grid; place-items: center; font-size: 26px; font-weight: 900;
}
.contact__option--primary .contact__option-icon { background: var(--hp-navy); color: var(--hp-orange); }
.contact__option-body { flex: 1; }
.contact__option-label { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; margin-bottom: 4px; }
.contact__option-value { font-size: 22px; font-weight: 900; letter-spacing: -0.01em; }
.contact__option-meta { font-size: 13px; opacity: 0.7; margin-top: 4px; font-weight: 600; }
.contact__option-arrow { font-size: 24px; color: currentColor; opacity: 0.5; }
.contact__email-fallback { text-align: center; padding-top: 16px; border-top: 1px solid var(--hp-stroke); font-size: 14px; color: var(--hp-ink-2); }
.contact__email-fallback a { color: var(--hp-navy); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 980px) {
  .hero { padding: 56px 24px 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__title { font-size: 44px; }
  .hero__art { padding: 0; }
  .stats__inner { grid-template-columns: 1fr; gap: 40px; }
  .stat__num { font-size: 60px; }
  .how__grid { grid-template-columns: 1fr; gap: 40px; }
  .proof__cards { grid-template-columns: 1fr; gap: 32px; }
  .lineup__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; }
  .pitch__compare { grid-template-columns: 1fr; }
  .roi__examples { grid-template-columns: 1fr; }
  .twoways__grid { grid-template-columns: 1fr; }
  .directory__pick { grid-template-columns: 1fr; }
  .directory__pick-photo { min-height: 240px; }
  .directory__grid { grid-template-columns: repeat(2, 1fr); }
  .past__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 24px; }
  .section__title { font-size: 34px; }
  .adv-hero__title { font-size: 42px; }
  .pitch__head { font-size: 30px; }
  .past__title { font-size: 36px; }
  .contact__title { font-size: 40px; }
  .card-hero__title { font-size: 36px; }
}
@media (max-width: 640px) {
  .site-header__nav { display: none; }
  .hero__title { font-size: 36px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .stat__num { font-size: 52px; }
  .compare__highlight { font-size: 72px; }
  .demo__hero-num { font-size: 72px; }
  .lineup__grid { grid-template-columns: 1fr; }
  .directory__grid { grid-template-columns: 1fr; }
  .past__grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .checklist__grid { grid-template-columns: 1fr; }
  .adv-hero__title { font-size: 34px; }
  .adv-hero__price { font-size: 64px; }
  .contact__title { font-size: 32px; }
  .contact__option { padding: 18px; }
  .contact__option-value { font-size: 18px; }
  .roi__examples .roi__example { padding: 18px; }
}

/* ============================================================
   v2 — sections introduced by the Stone Oak / Timberwood Park
   pitch deck rewrite. New utility classes only; nothing above
   has been modified.
   ============================================================ */

/* Pull quote (slide 3) */
.quote-section { background: var(--hp-cream); padding: 96px 24px; }
.quote { max-width: 960px; margin: 0 auto; text-align: center; }
.quote__eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hp-orange); font-weight: 700; margin-bottom: 28px; }
.quote__body { font-size: 38px; line-height: 1.3; color: var(--hp-navy); font-weight: 500; font-style: italic; margin: 0; letter-spacing: -0.01em; }
.quote__body::before { content: '\201C'; }
.quote__body::after  { content: '\201D'; }

/* Why this works — 4-cell grid (slide 5) */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.why-cell { background: #fff; border: 1px solid var(--hp-stroke); border-radius: 12px; padding: 32px; border-left: 4px solid var(--hp-orange); }
.why-cell__title { font-size: 22px; font-weight: 800; color: var(--hp-navy); margin: 0 0 10px; }
.why-cell__body { font-size: 15px; line-height: 1.55; color: var(--hp-ink-2); margin: 0; }

/* Case study (slide 7) */
.casestudy { background: #fff; padding: 96px 24px; }
.casestudy__inner { max-width: 1080px; margin: 0 auto; }
.casestudy__head { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center; margin-bottom: 48px; }
.casestudy__logo { width: 100%; aspect-ratio: 1/1; background: var(--hp-cream); border: 1px solid var(--hp-stroke); border-radius: 12px; display: grid; place-items: center; padding: 24px; }
.casestudy__logo img { max-width: 100%; max-height: 100%; height: auto; }
.casestudy__quote { font-size: 22px; line-height: 1.4; color: var(--hp-navy); font-weight: 700; margin: 0; }
.casestudy__quote strong { color: var(--hp-orange); }
.casestudy__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.casestudy__stat { background: var(--hp-navy); color: #fff; border-radius: 12px; padding: 32px 24px; text-align: center; border-top: 4px solid var(--hp-orange); }
.casestudy__stat-num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum", "lnum";
}
.casestudy__stat-label { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.4; }
.casestudy__foot { margin-top: 32px; text-align: center; font-size: 14px; color: var(--hp-ink-2); font-style: italic; }

/* Demographics — 78261 (slide 11) */
.demo { background: var(--hp-navy); color: #fff; padding: 96px 24px; }
.demo__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: stretch; }
.demo__hero { background: var(--hp-orange); color: var(--hp-navy); padding: 40px; border-radius: 16px; }
.demo__hero-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.demo__hero-num {
  font-size: 96px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum", "lnum";
}
.demo__hero-body { font-size: 16px; line-height: 1.5; }
.demo__hero-foot { margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(14,42,77,0.2); font-size: 13px; font-weight: 700; font-style: italic; }
.demo__right { display: grid; grid-template-rows: 1fr auto; gap: 20px; }
.demo__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.demo__stat { background: var(--hp-navy-soft); padding: 22px 20px; border-radius: 8px; border-top: 3px solid var(--hp-orange); }
.demo__stat-num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums lining-nums;
}
.demo__stat-num .small { font-size: 0.55em; font-weight: 800; color: rgba(255,255,255,0.72); }
.demo__stat-label { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 6px; line-height: 1.3; }
.demo__why { background: rgba(255,255,255,0.06); border-left: 3px solid var(--hp-orange); padding: 22px 26px; border-radius: 0 8px 8px 0; }
.demo__why-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hp-orange); font-weight: 700; margin-bottom: 8px; }
.demo__why-body { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.9); margin: 0; }

/* Cost comparison (slide 14) */
.compare { background: var(--hp-cream); padding: 96px 24px; }
.compare__inner { max-width: 960px; margin: 0 auto; }
.compare__highlight {
  font-size: 104px;
  font-weight: 900;
  color: var(--hp-orange);
  letter-spacing: -0.035em;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum", "lnum";
}
.compare__highlight-label { font-size: 17px; color: var(--hp-ink-2); margin-top: 16px; text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.compare__list { display: grid; gap: 14px; margin-top: 56px; }
.compare__row { display: grid; grid-template-columns: 200px 1fr 80px; gap: 18px; align-items: center; }
.compare__label { font-weight: 700; font-size: 14px; color: var(--hp-navy); }
.compare__bar { background: var(--hp-stroke); height: 26px; border-radius: 4px; overflow: hidden; }
.compare__bar-fill { background: var(--hp-navy); height: 100%; border-radius: 4px; transition: width 200ms ease; }
.compare__row--us .compare__bar-fill { background: var(--hp-orange); }
.compare__row--us .compare__label { color: var(--hp-orange); }
.compare__price { font-weight: 900; font-size: 16px; text-align: right; color: var(--hp-navy); }
.compare__row--us .compare__price { color: var(--hp-orange); }

/* Slot map (slide 13) */
.slots { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.slots__col { background: #fff; border: 1px solid var(--hp-stroke); border-radius: 16px; padding: 32px; }
.slots__head { font-size: 13px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hp-orange); margin-bottom: 22px; padding-bottom: 16px; border-bottom: 2px solid var(--hp-orange); }
.slot-row { display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-top: 1px solid var(--hp-stroke); }
.slot-row:first-of-type { border-top: none; padding-top: 0; }
.slot-row__id { font-weight: 900; font-size: 13px; background: var(--hp-navy); color: #fff; padding: 8px 4px; border-radius: 4px; text-align: center; letter-spacing: 0.05em; }
.slot-row--hero .slot-row__id { background: var(--hp-orange); color: var(--hp-navy); }
.slot-row__meta { display: flex; flex-direction: column; gap: 3px; }
.slot-row__name { font-weight: 800; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hp-navy); }
.slot-row__size { font-size: 12px; color: var(--hp-ink-3); font-weight: 500; font-family: var(--hp-font-mono); }
.slot-row__price { font-weight: 900; font-size: 22px; color: var(--hp-navy); letter-spacing: -0.01em; }
.slots-foot { max-width: 1180px; margin: 32px auto 0; padding: 28px; text-align: center; font-size: 14px; color: var(--hp-ink-2); background: var(--hp-cream); border-radius: 12px; }

/* Audience quadrants (slide 8) */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.audience__cell { background: var(--hp-cream); border-radius: 12px; padding: 32px; }
.audience__cat { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--hp-orange); margin-bottom: 8px; }
.audience__name { font-size: 22px; font-weight: 800; color: var(--hp-navy); margin: 0 0 12px; }
.audience__list { font-size: 15px; color: var(--hp-ink-2); line-height: 1.55; }

/* 5-week timeline (slide 15) */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.timeline__cell { text-align: center; position: relative; padding-top: 8px; }
.timeline__cell::before { content: ''; position: absolute; top: 36px; left: -50%; right: 50%; height: 2px; background: var(--hp-stroke); z-index: 0; }
.timeline__cell:first-child::before { display: none; }
.timeline__dot { width: 56px; height: 56px; border-radius: 50%; background: var(--hp-navy); color: #fff; display: grid; place-items: center; margin: 0 auto 18px; font-weight: 900; font-size: 11px; letter-spacing: 0.08em; position: relative; z-index: 1; }
.timeline__cell:last-child .timeline__dot { background: var(--hp-orange); color: var(--hp-navy); }
.timeline__title { font-size: 16px; font-weight: 800; color: var(--hp-navy); margin: 0 0 6px; }
.timeline__body { font-size: 13px; color: var(--hp-ink-2); line-height: 1.5; margin: 0; }
.timeline-foot { max-width: 880px; margin: 40px auto 0; padding: 20px 24px; text-align: center; font-size: 14px; color: var(--hp-ink-2); font-style: italic; }

/* "Before we talk pricing" 5 questions (slide 2) */
.questions { max-width: 880px; margin: 0 auto; display: grid; gap: 14px; padding: 0 24px; }
.question { display: grid; grid-template-columns: 56px 1fr; gap: 20px; background: var(--hp-cream); border-radius: 12px; padding: 22px 24px; border-left: 3px solid var(--hp-orange); align-items: start; }
.question__num { width: 40px; height: 40px; border-radius: 50%; background: var(--hp-navy); color: var(--hp-orange); display: grid; place-items: center; font-weight: 900; font-size: 16px; }
.question__title { font-size: 17px; font-weight: 800; color: var(--hp-navy); margin: 0 0 6px; line-height: 1.35; }
.question__sub { font-size: 14px; color: var(--hp-ink-2); font-style: italic; }

/* "What homeowner sees" — list with check marks */
.seen-list { max-width: 760px; margin: 0 auto; padding: 0 24px; display: grid; gap: 14px; }
.seen-list__item { display: grid; grid-template-columns: 28px 1fr; gap: 16px; align-items: start; padding: 16px 20px; background: var(--hp-cream); border-radius: 10px; }
.seen-list__check { width: 24px; height: 24px; border-radius: 50%; background: var(--hp-orange); color: var(--hp-navy); display: grid; place-items: center; font-weight: 900; font-size: 14px; }
.seen-list__body { font-size: 16px; line-height: 1.5; color: var(--hp-navy); }
.seen-list__body strong { color: var(--hp-orange); }

/* Reach stats — same vibe as .stats but on cream, 5-up so smaller */
.reach-stats { background: var(--hp-cream); padding: 64px 24px; }
.reach-stats__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; align-items: end; }
.reach-stats .stat__num { font-size: 52px; color: var(--hp-navy); }
.reach-stats .stat__num .small { color: var(--hp-orange); }

/* Open lineup placeholder cell */
.lineup__cell--placeholder { background: var(--hp-cream); border: 2px dashed var(--hp-stroke-2); }
.lineup__cell--placeholder .lineup__logo { background: transparent; color: var(--hp-ink-3); border: 2px dashed var(--hp-stroke-2); }
.lineup__cell--placeholder:hover { border-color: var(--hp-orange); cursor: pointer; }

/* Open directory card (placeholder) */
.lcard--open { background: var(--hp-cream); border: 2px dashed var(--hp-stroke-2); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px 20px; min-height: 220px; transition: border-color 150ms; text-decoration: none; color: inherit; }
.lcard--open:hover { border-color: var(--hp-orange); }
.lcard--open .lcard__cat { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--hp-orange); margin-bottom: 8px; }
.lcard--open .lcard__name { font-size: 20px; font-weight: 800; color: var(--hp-navy); margin: 0 0 14px; }
.lcard--open .lcard__open-cta { font-size: 13px; font-weight: 700; color: var(--hp-navy); padding: 10px 16px; border: 1.5px solid var(--hp-navy); border-radius: 999px; }
.lcard--open:hover .lcard__open-cta { background: var(--hp-orange); border-color: var(--hp-orange); }

/* Wide directory callout — replaces empty placeholder grid */
.directory__callout {
  grid-column: span 2;
  background: var(--hp-cream);
  border: 2px dashed var(--hp-stroke-2);
  border-radius: 12px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 150ms var(--hp-ease), background 150ms var(--hp-ease);
  min-height: 220px;
}
.directory__callout:hover {
  border-color: var(--hp-orange);
  background: var(--hp-orange-soft);
}
.directory__callout-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--hp-orange);
}
.directory__callout-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--hp-navy);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.1;
  max-width: 540px;
}
.directory__callout-body {
  font-size: 15px;
  color: var(--hp-ink-2);
  margin: 0;
  line-height: 1.55;
  max-width: 540px;
}
.directory__callout-cta {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--hp-navy);
  padding: 12px 22px;
  border: 1.5px solid var(--hp-navy);
  border-radius: 999px;
  display: inline-block;
  transition: background 150ms var(--hp-ease), color 150ms var(--hp-ease);
}
.directory__callout:hover .directory__callout-cta {
  background: var(--hp-navy);
  color: #fff;
}
@media (max-width: 980px) {
  .directory__callout { grid-column: span 2; }
}
@media (max-width: 640px) {
  .directory__callout { grid-column: 1; padding: 28px; }
  .directory__callout-title { font-size: 24px; }
}

/* Brand lockup tweak — "by LeadsPass" subline */
.brand-sub { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* Responsive overrides for v2 sections */
@media (max-width: 920px) {
  .demo__inner { grid-template-columns: 1fr; }
  .reach-stats__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .quote__body { font-size: 26px; }
  .why-grid { grid-template-columns: 1fr; }
  .casestudy__head { grid-template-columns: 1fr; }
  .casestudy__stats { grid-template-columns: 1fr; }
  .demo__hero-num { font-size: 64px; }
  .demo__stats { grid-template-columns: repeat(2, 1fr); }
  .compare__row { grid-template-columns: 1fr; gap: 6px; }
  .compare__bar { height: 20px; }
  .compare__highlight { font-size: 64px; }
  .slots { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline__cell::before { display: none; }
  .reach-stats__inner { grid-template-columns: 1fr; }
}

/* Contact form */
.contact-form { max-width: 640px; margin: 0 auto; display: grid; gap: 20px; }
.contact-form__row { display: grid; gap: 6px; }
.contact-form__row--split { grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form__row--split > .contact-form__field { display: grid; gap: 6px; }
.contact-form__label { font-size: 13px; font-weight: 700; color: var(--hp-navy); letter-spacing: 0.04em; text-transform: uppercase; }
.contact-form__hint { font-size: 12px; color: var(--hp-ink-3); font-weight: 500; text-transform: none; letter-spacing: 0; font-style: italic; margin-left: 6px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--hp-stroke);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  color: var(--hp-navy);
  background: #fff;
  transition: border-color 150ms var(--hp-ease), box-shadow 150ms var(--hp-ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--hp-orange);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.18);
}
.contact-form textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
.contact-form__radios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.contact-form__radio { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1.5px solid var(--hp-stroke); border-radius: 8px; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--hp-navy); background: #fff; transition: border-color 150ms, background 150ms; }
.contact-form__radio:hover { border-color: var(--hp-orange); }
.contact-form__radio input[type="radio"] { margin: 0; accent-color: var(--hp-orange); width: 18px; height: 18px; }
.contact-form__radio:has(input:checked) { border-color: var(--hp-orange); background: var(--hp-orange-soft); }
.contact-form__submit { margin-top: 8px; }
.contact-form__note { font-size: 13px; color: var(--hp-ink-3); text-align: center; margin: 0; }
.contact-form__honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact-form__status { padding: 20px 22px; border-radius: 10px; font-size: 15px; line-height: 1.5; margin: 0; }
.contact-form__status strong { display: block; font-size: 16px; margin-bottom: 4px; }
.contact-form__status--success { background: var(--hp-orange-soft); border: 1.5px solid var(--hp-orange); color: var(--hp-navy); }
.contact-form__status--error { background: #fdecec; border: 1.5px solid #d64545; color: var(--hp-navy); }
@media (max-width: 640px) {
  .contact-form__row--split { grid-template-columns: 1fr; }
  .contact-form__radios { grid-template-columns: 1fr; }
}

