/* ==========================================================================
   Go Denver Homes — a division of Annie's Action AI
   Inherits the Annie's Action AI Design System (Official Brand &
   Website Color Guide v1.0) verbatim, then extends it with the
   directory/profile components this site needs.
   ========================================================================== */

:root {
  /* Primary brand colors */
  --navy: #14263F;
  --blue: #1F78E8;
  --blue-hover: #1867C8;
  --green: #41C94A;
  --green-hover: #37AF3F;
  --soft-white: #F8FAFC;
  --white: #FFFFFF;

  /* Supporting colors */
  --light-gray: #EEF2F6;
  --medium-gray: #D5DEE8;
  --dark-gray: #667085;
  --nearly-black: #202632;

  /* Type */
  --font-headline: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radii */
  --radius-btn: 10px;
  --radius-card: 18px;
  --radius-form: 10px;
  --radius-img: 18px;

  /* Shadow */
  --shadow-card: 0 8px 24px rgba(20, 38, 63, 0.08);
  --shadow-card-hover: 0 14px 32px rgba(20, 38, 63, 0.14);

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--nearly-black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 16px; color: var(--dark-gray); }

a { color: var(--blue); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--green); }

img { max-width: 100%; display: block; border-radius: var(--radius-img); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.section-alt { background: var(--soft-white); }
.section-light-gray { background: var(--light-gray); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: var(--light-gray); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-dark .eyebrow { color: var(--green); }

.highlight { color: var(--blue); }
.accent { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-hover); color: var(--white); }
.btn-secondary { background: var(--white); border-color: var(--blue); color: var(--blue); }
.btn-secondary:hover { background: #EAF3FE; color: var(--blue-hover); }
.btn-success { background: var(--green); color: var(--white); }
.btn-success:hover { background: var(--green-hover); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: #0d1a2c; color: var(--white); }
.btn-outline-white { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20,38,63,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo-link { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-link svg { height: 40px; width: auto; flex-shrink: 0; }
.logo-wordmark { font-family: var(--font-headline); font-weight: 700; font-size: 1.15rem; color: var(--navy); white-space: nowrap; line-height: 1.2; }
.logo-wordmark .accent-word { color: var(--blue); }
.logo-wordmark .ai-word { color: var(--green); }
.logo-division { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.66rem; letter-spacing: 0.04em; color: var(--dark-gray); margin-top: 1px; }

.main-nav { display: flex; align-items: center; gap: 10px; }
.main-nav a {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav .nav-cta { white-space: nowrap; }
.main-nav a:hover { color: var(--blue); }
.main-nav a.active { border-bottom-color: var(--green); }
.nav-cta { margin-left: 8px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px 0; transition: all .2s ease; }

@media (max-width: 1180px) {
  .main-nav {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
    box-shadow: 0 12px 24px rgba(20,38,63,0.1);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--light-gray); }
  .nav-cta { margin-left: 0; margin-top: 12px; width: 100%; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero { padding: 96px 0 88px; background: var(--white); }
.hero .container { display: grid; grid-template-columns: 1.1fr 0.82fr; gap: 56px; align-items: center; }
.hero-copy p.lede { font-size: 1.15rem; color: var(--dark-gray); max-width: 52ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust { margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust .stat-num { font-family: var(--font-headline); font-weight: 700; color: var(--navy); font-size: 1.5rem; }
.hero-trust .stat-label { font-size: 0.85rem; color: var(--dark-gray); }

/* Annie portrait beside the hero copy */
.hero-portrait { margin: 0; position: relative; }
.hero-portrait picture { display: block; }
.hero-portrait img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius-img);
  box-shadow: 0 18px 44px rgba(20, 38, 63, 0.22);
}
.hero-portrait figcaption {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(20, 38, 63, 0.88);
  color: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  backdrop-filter: blur(4px);
}
.hero-portrait figcaption strong {
  display: block; font-family: var(--font-headline); font-weight: 700;
  font-size: 0.98rem; line-height: 1.2;
}
.hero-portrait figcaption span {
  display: block; font-size: 0.78rem; color: var(--light-gray); margin-top: 3px; line-height: 1.35;
}

/* Three proof cards, spanning the full hero width beneath both columns */
.hero-cards {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 60px; padding-top: 48px;
  border-top: 1px solid var(--light-gray);
}
.hero-visual-card { background: var(--soft-white); border-radius: var(--radius-card); padding: 24px; box-shadow: var(--shadow-card); }
.hero-visual-card .icon-badge { margin-bottom: 12px; }
.hero-visual-card h4 { margin: 0 0 6px; font-size: 1.02rem; color: var(--navy); }
.hero-visual-card p { margin: 0; font-size: 0.9rem; }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 420px; margin-left: auto; margin-right: auto; }
  .hero-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 44px; padding-top: 36px; }
}

/* ---------- Parent brand band (Annie's Action AI) ---------- */
.parent-band { text-align: center; }
.parent-band p { max-width: 64ch; margin: 0 auto 34px; font-size: 1.05rem; }
.parent-band-art {
  display: block; max-width: 960px; margin: 0 auto 34px;
  border-radius: var(--radius-img); overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
  transition: transform .2s ease, box-shadow .2s ease;
}
.parent-band-art:hover { transform: translateY(-4px); box-shadow: 0 28px 60px rgba(0, 0, 0, 0.48); }
.parent-band-art img { display: block; width: 100%; height: auto; }

/* Same artwork sitting on a light section (About) */
.parent-band-art.on-light { max-width: 900px; margin: 44px auto 32px; box-shadow: var(--shadow-card); }
.parent-band-art.on-light:hover { box-shadow: var(--shadow-card-hover); }

/* ---------- Icon badges ---------- */
.icon-badge { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: #EAF3FE; }
.icon-badge svg { width: 26px; height: 26px; stroke: var(--blue); }
.icon-badge.green { background: #E9FAEA; }
.icon-badge.green svg { stroke: var(--green); }
.icon-badge.navy { background: var(--light-gray); }
.icon-badge.navy svg { stroke: var(--navy); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-top-color .2s ease;
  border-top: 3px solid transparent;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-top-color: var(--blue); }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card .card-link { font-family: var(--font-headline); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; }

.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- Pricing ---------- */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.featured { border-color: var(--blue); box-shadow: 0 14px 32px rgba(31,120,232,0.16); }
.pricing-card .badge {
  position: absolute; top: -14px; left: 32px;
  background: var(--green); color: var(--white);
  font-family: var(--font-headline); font-weight: 600; font-size: 0.75rem;
  padding: 6px 14px; border-radius: 999px; letter-spacing: 0.04em;
}
.pricing-card .price { font-family: var(--font-headline); font-weight: 700; color: var(--navy); font-size: 2.2rem; margin: 6px 0 2px; }
.pricing-card .price span { font-size: 1rem; font-weight: 600; color: var(--dark-gray); }
.pricing-card .price-note { font-size: 0.85rem; color: var(--dark-gray); margin-bottom: 20px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 28px; flex-grow: 1; }
.pricing-card li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.94rem; color: var(--nearly-black); }
.pricing-card li svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--green); margin-top: 2px; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--navy); border-radius: var(--radius-card); padding: 64px; text-align: center; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--light-gray); max-width: 52ch; margin-left: auto; margin-right: auto; font-size: 1.05rem; }
.cta-banner .hero-actions { justify-content: center; }
@media (max-width: 620px) { .cta-banner { padding: 40px 24px; } }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: var(--font-headline); font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 8px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 16px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-form);
  background: var(--white);
  color: var(--nearly-black);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(31,120,232,0.14);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.85rem; color: var(--dark-gray); }
.form-success, .form-error { border-radius: var(--radius-form); padding: 16px 20px; font-size: 0.94rem; margin-bottom: 24px; display: none; }
.form-success { background: #E9FAEA; color: #1F7A28; border: 1px solid var(--green); }
.form-error { background: #FDEDEC; color: #B3261E; border: 1px solid #E8998F; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--white); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 14px; }
.footer-brand p { color: var(--light-gray); max-width: 34ch; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col a { display: block; color: #C9D6E8; margin-bottom: 12px; font-size: 0.94rem; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: #9FB1C9; }
.footer-parent { color: #C9D6E8; }
.footer-parent a { color: var(--green); }

/* ---------- Page header (interior pages) ---------- */
.page-header { background: var(--navy); padding: 72px 0 64px; }
.page-header .eyebrow { color: var(--green); }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: var(--light-gray); max-width: 60ch; font-size: 1.05rem; margin: 0; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #E9FAEA; color: #1F7A28;
  font-family: var(--font-headline); font-weight: 600; font-size: 0.82rem;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 18px;
}
.badge-pill svg { width: 14px; height: 14px; stroke: #1F7A28; }
.badge-pill.blue { background: #EAF3FE; color: var(--blue); }
.badge-pill.blue svg { stroke: var(--blue); }

/* ==========================================================================
   GO DENVER HOMES EXTENSIONS
   New components this division needs on top of the parent system.
   ========================================================================== */

/* ---------- The "AI for you, not against you" comparison ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col {
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid var(--medium-gray);
  background: var(--white);
}
.compare-col.against { border-color: #E8998F; background: #FDF6F5; }
.compare-col.foryou { border-color: var(--green); background: #F4FCF5; }
.compare-col h3 { display: flex; align-items: center; gap: 10px; }
.compare-col ul { list-style: none; padding: 0; margin: 18px 0 0; }
.compare-col li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.96rem; color: var(--nearly-black); }
.compare-col li:last-child { margin-bottom: 0; }
.compare-col li svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; }
.compare-col.against li svg { stroke: #B3261E; }
.compare-col.foryou li svg { stroke: var(--green); }

/* ---------- Agent directory ---------- */
.agent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .agent-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .agent-grid { grid-template-columns: 1fr; } }

.agent-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.agent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.agent-card-head { display: flex; gap: 16px; align-items: center; padding: 26px 26px 0; }
.agent-avatar {
  width: 68px; height: 68px; flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-headline); font-weight: 700; font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.agent-card-head h3 { margin: 0 0 2px; font-size: 1.12rem; }
.agent-brokerage { font-size: 0.86rem; color: var(--dark-gray); margin: 0; }
.agent-card-body { padding: 20px 26px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.agent-card-body p { font-size: 0.94rem; }
.agent-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.agent-tag {
  font-family: var(--font-headline); font-weight: 600;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--blue); background: #EAF3FE;
  padding: 5px 11px; border-radius: 999px;
}
.agent-tag.green { color: #1F7A28; background: #E9FAEA; }
.agent-tag.navy { color: var(--navy); background: var(--light-gray); }
.agent-card-foot { margin-top: auto; }

/* Directory filter bar */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
  margin-bottom: 44px;
}
@media (max-width: 900px) { .filter-bar { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .filter-bar { grid-template-columns: 1fr; } }
.filter-bar .form-field { margin-bottom: 0; }

/* ---------- Agent profile page ---------- */
.profile-header { background: var(--navy); padding: 64px 0; }
.profile-header .container { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
@media (max-width: 860px) { .profile-header .container { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.profile-avatar {
  width: 132px; height: 132px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-headline); font-weight: 700; font-size: 2.6rem;
  border: 4px solid rgba(255,255,255,0.18);
}
.profile-header h1 { color: var(--white); margin-bottom: 6px; }
.profile-header .profile-sub { color: var(--light-gray); font-size: 1.05rem; margin: 0 0 14px; }
.profile-header .agent-meta { margin-bottom: 0; }
.profile-header .agent-tag { background: rgba(255,255,255,0.12); color: var(--white); }
.profile-header .agent-tag.green { background: rgba(65,201,74,0.2); color: #A8ECAD; }

.profile-layout { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .profile-layout { grid-template-columns: 1fr; } }
.profile-aside {
  position: sticky; top: 104px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px;
}
@media (max-width: 900px) { .profile-aside { position: static; } }
.profile-aside h3 { font-size: 1.1rem; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 0 0 26px; }
.stat-block .stat-num { font-family: var(--font-headline); font-weight: 700; color: var(--navy); font-size: 1.5rem; line-height: 1.1; }
.stat-block .stat-label { font-size: 0.82rem; color: var(--dark-gray); }

.aeo-panel {
  background: #F4FCF5;
  border: 1px solid var(--green);
  border-radius: var(--radius-card);
  padding: 26px 28px;
}
.aeo-panel h3 { display: flex; align-items: center; gap: 10px; font-size: 1.08rem; }
.aeo-panel ul { list-style: none; padding: 0; margin: 14px 0 0; }
.aeo-panel li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; margin-bottom: 10px; color: var(--nearly-black); }
.aeo-panel li:last-child { margin-bottom: 0; }
.aeo-panel li svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--green); margin-top: 3px; }

/* ---------- Numbered step list ---------- */
.steps { counter-reset: step; display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .step-num {
  font-family: var(--font-headline); font-weight: 700;
  font-size: 0.9rem;
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step:nth-child(2) .step-num { background: var(--green); }
.step:nth-child(3) .step-num { background: var(--navy); }
.step h3 { font-size: 1.14rem; }

/* ---------- FAQ (AEO-friendly) ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--medium-gray); padding: 24px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.faq-item p { margin-bottom: 0; }

/* ---------- Market / coverage strip ---------- */
.market-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.market-chip {
  font-family: var(--font-headline); font-weight: 600; font-size: 0.86rem;
  background: var(--white); color: var(--navy);
  border: 1px solid var(--medium-gray);
  padding: 9px 18px; border-radius: 999px;
  transition: all .18s ease;
}
.market-chip:hover { border-color: var(--blue); color: var(--blue); }
.market-chip.soon { color: var(--dark-gray); border-style: dashed; }
