/* ==========================================================================
   Bold — citywide-bold-usa
   style.css: page sections — split hero, trust chips, asymmetric services
   grid, metrics band, about, city/zip geo pages, landmark spotlight, areas
   grids, map card, FAQ accordion, blog, legal pages.
   ========================================================================== */

/* -------------------------------------------------------------------------
   Hero — split layout: copy + phone CTA + chips on one side, a bold visual
   panel on the other. Never a full-bleed background-image hero.
   ------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  min-height: 560px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px 64px 24px;
  max-width: 640px;
}

.hero__badge {
  margin-bottom: 20px;
}

.hero__title {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 15px;
}

.hero__location svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.hero__subtitle {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}

.hero__tagline {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-light, #fff);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__visual {
  position: relative;
  min-height: 320px;
  background: var(--primary);
  overflow: hidden;
}

.hero__visualImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visualOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__visualPanel {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(11, 18, 32, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero__stat {
  text-align: left;
}

.hero__statValue {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.hero__statLabel {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 2px;
}

/* Homepage-only variant: no photographic visual panel, a solid color block
   with a large service glyph instead ("bold color panel" per the brief). */
.hero__visual--panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-gradient), var(--primary);
  background-blend-mode: multiply;
}

.hero__visualGlyph {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero__visualGlyph svg {
  width: 84px;
  height: 84px;
}

/* -------------------------------------------------------------------------
   Hero lead form card (heroContactForm.ejs)
   ------------------------------------------------------------------------- */

.leadCard {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px 26px 24px;
  border: 1px solid var(--border-soft);
}

.leadCard__title {
  font-size: 20px;
  margin: 0 0 4px;
}

.leadCard__sub {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--ink-soft);
}

.leadCard__field {
  margin-bottom: 12px;
}

.leadCard__field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 5px;
}

.leadCard input,
.leadCard textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
}

.leadCard textarea {
  min-height: 84px;
  resize: vertical;
}

.leadCard input:focus,
.leadCard textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 92, 255, 0.14);
}

.leadCard__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.leadCard__msg {
  margin: 12px 0 0;
  font-size: 13px;
  min-height: 1.4em;
}

.leadCard__msg--ok {
  color: var(--accent-dark, #0a9663);
  font-weight: 700;
}

.leadCard__msg--err {
  color: #b91c1c;
  font-weight: 600;
}

/* Iframe-embedded contact form (contactFormEmbed.ejs) reuses the same card
   chrome so both variants look identical on the page. */
.leadEmbed {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.leadEmbed__frame {
  width: 100%;
}

.leadEmbed__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* -------------------------------------------------------------------------
   Metrics band
   ------------------------------------------------------------------------- */

.metrics {
  padding: 48px 0;
  background: var(--paper-alt);
  border-bottom: 1px solid var(--border-soft);
}

.metrics__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  font-weight: 600;
}

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

.metric {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.metric:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.metric__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric__icon svg {
  width: 26px;
  height: 26px;
}

.metric__value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
}

.metric__label {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 2px;
}

/* -------------------------------------------------------------------------
   Long-form intro (welcome / service-long-description) — an asymmetric
   "featured column" band, not a flat centered block.
   ------------------------------------------------------------------------- */

.intro {
  padding: 72px 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: var(--gap-xl);
  align-items: start;
}

.intro__title {
  font-size: clamp(26px, 3.4vw, 38px);
  position: sticky;
  top: 100px;
}

.intro__title span {
  display: block;
  height: 5px;
  width: 60px;
  border-radius: var(--radius-full);
  background: var(--accent);
  margin-top: 18px;
}

.intro__body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.intro__body p:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------------------------------------
   Services — asymmetric grid: one large featured card + smaller cards.
   ------------------------------------------------------------------------- */

.services {
  padding: 80px 0;
  background: var(--primary);
  color: #fff;
}

.services .section__eyebrow {
  color: var(--accent-light, #cdeede);
}

.services .section__title,
.services .section__title * {
  color: #fff;
}

.services .section__subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}

.serviceCard {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.serviceCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.serviceCard--featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--ink);
  color: #fff;
  padding: 34px 32px 30px;
}

.serviceCard--featured .serviceCard__title,
.serviceCard--featured .serviceCard__title a {
  color: #fff;
  font-size: 26px;
}

.serviceCard--featured .serviceCard__text {
  color: rgba(255, 255, 255, 0.78);
}

.serviceCard--featured .serviceCard__bullets li {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.14);
}

.serviceCard__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.serviceCard--featured .serviceCard__badge {
  background: var(--accent);
  color: #fff;
}

.serviceCard__title {
  font-size: 19px;
  margin: 0 0 10px;
  padding-right: 60px;
}

.serviceCard__title a {
  text-decoration: none;
  color: var(--ink);
}

.serviceCard__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 14px;
  flex: 1;
}

.serviceCard__bullets {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.serviceCard__bullets li {
  font-size: 13px;
  font-weight: 600;
  padding-left: 20px;
  position: relative;
  color: var(--ink-soft);
}

.serviceCard__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.serviceCard__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}

.serviceCard--featured .serviceCard__cta {
  background: var(--accent);
}

.serviceCard__link {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.svcEmpty {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 40px 0;
}

/* -------------------------------------------------------------------------
   Areas served ("Serving X services" grid on the homepage / city pages)
   ------------------------------------------------------------------------- */

.areas {
  padding: 72px 0;
}

.areas__head {
  margin-bottom: 30px;
}

.areas__title a {
  color: var(--accent-dark);
  text-decoration: none;
}

.areas__title a:hover {
  text-decoration: underline;
}

.areasGrid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.areasGrid--cells {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areasGrid__link,
.areasGrid__cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--paper-alt);
  border: 1px solid var(--border-soft);
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.areasGrid__cell--static {
  cursor: default;
}

a.areasGrid__link:hover,
a.areasGrid__cell:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.areasGrid__link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.areas__empty {
  color: var(--ink-faint);
  font-style: italic;
}

/* -------------------------------------------------------------------------
   Landmark spotlight (ZIP-page "Neighborhoods We Serve")
   ------------------------------------------------------------------------- */

.landmarks {
  padding: 72px 0;
  background: var(--paper-alt);
}

.landmarks__badgeRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

.landmarks__badge {
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
}

.landmarks__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-faint);
}

.landmarks__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landmarkCard {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
}

.landmarkCard__zip {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
}

.landmarkCard__title {
  font-size: 17px;
  margin: 0;
}

.landmarkCard__cta {
  margin-top: auto;
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
}

/* Tabbed spotlight (landmarkSpotlight.ejs) */
.spotlight {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.spotlight__tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spotlight__tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.spotlight__tab[aria-selected="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.spotlight__tabIx {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  opacity: 0.6;
}

.spotlight__tabLbl {
  font-weight: 700;
  font-size: 14px;
}

.spotlight__panel {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

.spotlight__place {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spotlight__panelTitle {
  margin: 0 0 12px;
  font-size: 22px;
}

.spotlight__prose p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------
   Map card
   ------------------------------------------------------------------------- */

.mapCard {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
  background: #fff;
}

.mapCard--compact {
  max-width: min(680px, 100%);
  margin: 0 auto;
}

.mapCard__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--paper-alt);
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
}

.mapCard__badge svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.mapCard__code {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.mapCard iframe {
  display: block;
  width: 100%;
}

/* -------------------------------------------------------------------------
   Process steps
   ------------------------------------------------------------------------- */

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.processStep {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.processStep__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: #fff;
  margin-bottom: 16px;
}

.processStep__num svg {
  width: 24px;
  height: 24px;
}

.processStep h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.processStep p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* -------------------------------------------------------------------------
   Trust / CTA banner (color-blocked)
   ------------------------------------------------------------------------- */

.ctaBanner {
  padding: 72px 0;
  background: var(--ink);
  color: #fff;
}

.ctaBanner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
}

.ctaBanner h2 {
  color: #fff;
  font-size: clamp(24px, 3.4vw, 36px);
  margin: 0 0 14px;
}

.ctaBanner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 24px;
}

.ctaBanner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.ctaBanner__stat {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ctaBanner__statValue {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
}

.ctaBanner__statLabel {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* -------------------------------------------------------------------------
   AEO quick-answer strip
   ------------------------------------------------------------------------- */

.answerStrip {
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.answerStrip__box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.answerStrip__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.answerStrip__icon svg {
  width: 20px;
  height: 20px;
}

.answerStrip h2 {
  font-size: 17px;
  margin: 0 0 6px;
}

.answerStrip p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------
   About page
   ------------------------------------------------------------------------- */

.aboutHero__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.aboutIntro {
  max-width: 760px;
  margin-bottom: 48px;
}

.aboutGrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.aboutCard {
  padding: 28px 26px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.aboutCard:first-child {
  background: var(--primary);
  color: #fff;
}

.aboutCard:first-child .aboutCard__title,
.aboutCard:first-child .aboutCard__text {
  color: #fff;
}

.aboutCard__title {
  font-size: 19px;
  margin: 0 0 10px;
}

.aboutCard__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

.valuesBand {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--paper-alt);
  border: 1px solid var(--border-soft);
  margin-bottom: 48px;
}

.valuesBand__title {
  font-size: 22px;
  margin: 0 0 18px;
}

.valuesBand__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.valuesBand__list li {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border-soft);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.valuesBand__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  flex: 0 0 auto;
}

.napCard {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 30px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.napCard__title {
  margin: 0 0 12px;
  font-size: 20px;
}

.napCard__address {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--ink);
}

.napCard__line {
  margin: 4px 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.napCard__line a {
  color: var(--primary);
  text-decoration: underline;
}

/* -------------------------------------------------------------------------
   Service page — decision checklist / comparison table
   ------------------------------------------------------------------------- */

.decisionGrid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  margin-top: 24px;
}

.decisionCard {
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.decisionCard h3 {
  font-size: 18px;
  margin: 0 0 14px;
}

.decisionCard ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.decisionCard li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.decisionCard li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.compareTableWrap {
  overflow-x: auto;
  margin-top: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
}

.compareTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compareTable th,
.compareTable td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}

.compareTable thead th {
  background: var(--paper-alt);
  font-weight: 800;
}

/* What-to-expect three-point band */
.expectGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.expectCard {
  padding: 20px 20px 18px;
  border-radius: var(--radius-md);
  background: var(--paper-alt);
  border: 1px solid var(--border-soft);
}

.expectCard strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--primary);
}

.expectCard span {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.serviceLede p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.serviceLede p:last-child {
  margin-bottom: 0;
}

.definitionCallout {
  margin: 0 0 24px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

.definitionCallout strong {
  color: var(--accent-dark);
}

.stepsWhyGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.listCard {
  padding: 24px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.listCard h3 {
  font-size: 18px;
  margin: 0 0 14px;
}

.listCard ol,
.listCard ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.listCard li {
  padding-left: 26px;
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.listCard ol li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listCard ol {
  counter-reset: step;
}

.listCard ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

/* -------------------------------------------------------------------------
   FAQ accordion (native <details>) — service page, blog post
   ------------------------------------------------------------------------- */

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faqItem {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}

.faqItem summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 50px 18px 22px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  color: var(--ink);
}

.faqItem summary::-webkit-details-marker {
  display: none;
}

.faqItem summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.faqItem[open] summary::after {
  content: "−";
}

.faqItem[open] summary {
  border-bottom: 1px solid var(--border-soft);
}

.faqItem__a {
  margin: 0;
  padding: 16px 22px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------
   Blog
   ------------------------------------------------------------------------- */

.blogGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blogCard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blogCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blogCard__title {
  font-size: 18px;
  margin: 0 0 10px;
}

.blogCard__title a {
  text-decoration: none;
  color: var(--ink);
}

.blogCard__excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
  flex: 1;
}

.blogCard__cta {
  font-weight: 800;
  font-size: 13px;
  color: var(--primary);
}

.blogPost {
  padding: 56px 0 72px;
}

.blogPost__wrap {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.blogPost__byline {
  font-size: 13px;
  color: var(--ink-faint);
  font-weight: 700;
  margin: 0 0 22px;
}

.blogPost__intro {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 30px;
}

.blogPost__section {
  margin-bottom: 30px;
}

.blogPost__sectionTitle {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0 0 12px;
}

.blogPost__sectionText {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}

.takeawaysCard {
  margin: 30px 0;
  padding: 26px 28px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
}

.takeawaysCard h2 {
  font-size: 18px;
  margin: 0 0 14px;
}

.takeawaysCard ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.takeawaysCard li {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
}

.takeawaysCard li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

/* -------------------------------------------------------------------------
   Legal pages
   ------------------------------------------------------------------------- */

.legal h2 {
  font-size: 20px;
  margin: 32px 0 12px;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.legal a {
  color: var(--primary);
  text-decoration: underline;
}

/* -------------------------------------------------------------------------
   Page hero (secondary pages: services index, blog index, legal) — a
   shorter color-blocked banner, not the full split hero.
   ------------------------------------------------------------------------- */

.pageHero {
  background: var(--primary);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.pageHero__badge {
  margin: 0 auto 18px;
}

.pageHero h1 {
  color: #fff;
  font-size: clamp(30px, 4.6vw, 46px);
  max-width: 780px;
  margin: 0 auto;
}

.pageHero p {
  margin: 16px auto 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.pageHero__actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* -------------------------------------------------------------------------
   Reveal-on-scroll
   ------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -------------------------------------------------------------------------
   Custom-script embed section (site.customScriptHome/customScriptContact)
   ------------------------------------------------------------------------- */

.customEmbed {
  padding: 40px 0;
}
