/* ==========================================================
   FindLocal.me — Standalone CSS (no external dependencies)
   ========================================================== */

/* ── Custom properties ──────────────────────────────────── */
:root {
  --brand-50:  #f0fdf4;
  --brand-100: #dcfce7;
  --brand-200: #bbf7d0;
  --brand-300: #86efac;
  --brand-400: #4ade80;
  --brand-500: #22c55e;
  --brand-600: #16a34a;
  --brand-700: #15803d;
  --brand-800: #166534;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.08);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--slate-50);
  color: var(--slate-800);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
svg { display: inline-block; vertical-align: middle; }
address { font-style: normal; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ── Utility ────────────────────────────────────────────── */
.container { max-width: 1152px; margin: 0 auto; padding: 0 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.hidden { display: none !important; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.navbar__inner {
  max-width: 1152px; margin: 0 auto; padding: .75rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar__brand {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: 1.2rem; color: var(--brand-600);
  text-decoration: none; letter-spacing: -.02em;
}
.navbar__brand svg { width: 28px; height: 28px; fill: var(--brand-500); flex-shrink: 0; }
.navbar__nav { display: flex; align-items: center; gap: 1.5rem; }
.navbar__link { font-size: .875rem; font-weight: 500; color: var(--slate-600); transition: color .15s; }
.navbar__link:hover { color: var(--brand-600); }
.navbar__cta {
  background: var(--brand-600); color: #fff;
  padding: .375rem 1rem; border-radius: 999px;
  font-size: .875rem; font-weight: 500;
  transition: background .15s;
}
.navbar__cta:hover { background: var(--brand-700); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-600) 55%, #10b981 100%);
  padding: 5rem 1rem; text-align: center; color: #fff;
}
.hero__blob {
  pointer-events: none; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.1); filter: blur(60px);
}
.hero__blob--tl { top: -6rem; left: -6rem; width: 18rem; height: 18rem; }
.hero__blob--br { bottom: -6rem; right: -6rem; width: 24rem; height: 24rem; }
.hero__inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero__eyebrow {
  display: block; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.75); font-size: .7rem; font-weight: 600; margin-bottom: .75rem;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15;
  margin-bottom: 1rem;
}
.hero__title span { text-decoration: underline; text-decoration-color: rgba(255,255,255,.5); text-underline-offset: 5px; }
.hero__subtitle {
  color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto;
}
.hero__search { max-width: 680px; margin: 0 auto; }
.hero__search-row { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 600px) { .hero__search-row { flex-direction: row; } }
.hero__input-wrap { position: relative; flex: 1; }
.hero__input-icon {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: var(--slate-400); pointer-events: none;
}
.hero__input {
  width: 100%; padding: 1rem 1rem 1rem 3rem; border-radius: var(--radius-lg);
  border: none; font-size: 1rem; color: var(--slate-800);
  box-shadow: var(--shadow-lg); outline: none;
}
.hero__input:focus { box-shadow: 0 0 0 4px rgba(74,222,128,.4), var(--shadow-lg); }
.hero__input::placeholder { color: var(--slate-400); }
.hero__btn {
  background: var(--slate-800); color: #fff; font-weight: 600; font-size: 1rem;
  padding: 1rem 2rem; border-radius: var(--radius-lg); white-space: nowrap;
  box-shadow: var(--shadow-lg); transition: background .15s;
}
.hero__btn:hover { background: var(--slate-900); }
.hero__tips { margin-top: .75rem; color: rgba(255,255,255,.7); font-size: .875rem; }
.hero__tips button { background: none; border: none; color: inherit; text-decoration: underline; cursor: pointer; padding: 0; font: inherit; transition: color .15s; }
.hero__tips button:hover { color: #fff; }

/* ── Directory Section ──────────────────────────────────── */
.directory { max-width: 1152px; margin: 0 auto; padding: 4rem 1rem; }
.directory__header {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .directory__header { flex-direction: row; align-items: center; justify-content: space-between; }
}
.directory__title { font-size: 1.5rem; font-weight: 700; color: var(--slate-800); }
.directory__count { font-size: .875rem; color: var(--slate-500); margin-top: .25rem; }
.directory__filter-wrap { display: flex; align-items: center; gap: .5rem; }
.directory__filter-label { font-size: .875rem; color: var(--slate-600); font-weight: 500; white-space: nowrap; }
.directory__filter {
  border: 1px solid var(--slate-200); border-radius: var(--radius-md);
  padding: .5rem .75rem; font-size: .875rem; background: #fff;
  box-shadow: var(--shadow-sm); outline: none; font-family: inherit;
  color: var(--slate-700);
}
.directory__filter:focus { box-shadow: 0 0 0 3px rgba(74,222,128,.3); }

/* ── Card Grid ──────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Business Card ──────────────────────────────────────── */
.biz-card {
  background: #fff; border-radius: var(--radius-xl);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: box-shadow .2s;
  animation: fadeUp .35s ease both;
}
.biz-card:hover { box-shadow: var(--shadow-md); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.biz-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; }
.biz-card__name { font-weight: 700; color: var(--slate-800); font-size: 1rem; line-height: 1.3; }
.biz-card__badge {
  display: inline-block; font-size: .7rem; font-weight: 600;
  padding: .2rem .55rem; border-radius: 999px; white-space: nowrap; flex-shrink: 0;
}
.biz-card__desc { font-size: .875rem; color: var(--slate-500); flex: 1; line-height: 1.55; }
.biz-card__location { display: flex; align-items: center; gap: .35rem; font-size: .75rem; color: var(--slate-500); }
.biz-card__location svg { width: 14px; height: 14px; fill: var(--brand-500); flex-shrink: 0; }
.biz-card__link {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  background: var(--brand-600); color: #fff; font-size: .875rem; font-weight: 600;
  padding: .625rem 1rem; border-radius: var(--radius-md); transition: background .15s;
  margin-top: .25rem;
}
.biz-card__link:hover { background: var(--brand-700); }
.biz-card__link svg { width: 14px; height: 14px; }

/* Badge colour variants */
.badge--bakery        { background: #fef9c3; color: #854d0e; }
.badge--auto          { background: #dbeafe; color: #1d4ed8; }
.badge--landscaping   { background: #dcfce7; color: #15803d; }
.badge--restaurant    { background: #ffedd5; color: #c2410c; }
.badge--plumbing      { background: #cffafe; color: #0e7490; }
.badge--photography   { background: #ede9fe; color: #6d28d9; }
.badge--it            { background: #e0e7ff; color: #3730a3; }
.badge--florist       { background: #fce7f3; color: #9d174d; }
.badge--legal         { background: #f1f5f9; color: #475569; }
.badge--fitness       { background: #ffe4e6; color: #be123c; }
.badge--farm          { background: #f7fee7; color: #3f6212; }
.badge--roofing       { background: #fef3c7; color: #92400e; }
.badge--default       { background: #f1f5f9; color: #475569; }

/* ── Empty State ────────────────────────────────────────── */
.empty-state {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 6rem 1rem; text-align: center;
}
.empty-state svg { width: 64px; height: 64px; color: var(--slate-300); margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.1rem; font-weight: 600; color: var(--slate-500); }
.empty-state p { color: var(--slate-400); font-size: .875rem; margin-top: .25rem; }
.empty-state__clear { margin-top: 1rem; font-size: .875rem; font-weight: 500; color: var(--brand-600); text-decoration: underline; background: none; border: none; cursor: pointer; }
.empty-state__clear:hover { color: var(--brand-700); }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner { background: var(--brand-700); color: #fff; padding: 4rem 1rem; text-align: center; }
.cta-banner__inner { max-width: 680px; margin: 0 auto; }
.cta-banner h2 { font-size: 2rem; font-weight: 700; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-banner strong { color: #fff; }
.cta-banner__btn {
  display: inline-block; background: #fff; color: var(--brand-700);
  font-weight: 700; padding: 1rem 2rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); transition: background .15s; font-size: 1rem;
}
.cta-banner__btn:hover { background: var(--brand-50); }

/* ── Footer ─────────────────────────────────────────────── */
.footer { background: var(--slate-800); color: var(--slate-400); padding: 2rem 1rem; text-align: center; font-size: .875rem; }
.footer__name { font-weight: 600; color: #fff; margin-bottom: .25rem; }
.footer__links { margin-top: 1rem; }
.footer__links a { color: var(--slate-400); transition: color .15s; }
.footer__links a:hover { color: #fff; }
.footer__sep { margin: 0 .5rem; }

/* =========================================================
   GET LISTED PAGE
   ========================================================= */

/* ── Page Hero (reuse .hero) ─────────────────────────────── */

/* ── Pricing ─────────────────────────────────────────────── */
.pricing { max-width: 880px; margin: 0 auto; padding: 5rem 1rem; }
.pricing__heading { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: .5rem; }
.pricing__sub { color: var(--slate-500); text-align: center; margin-bottom: 3rem; }
.pricing__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 700px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }

.pricing-card {
  position: relative; background: #fff; border-radius: var(--radius-2xl);
  border: 1px solid var(--slate-100); box-shadow: var(--shadow-md);
  padding: 2rem 2rem 2rem; display: flex; flex-direction: column;
}
.pricing-card__pill {
  position: absolute; top: -14px; left: 2rem;
  font-size: .7rem; font-weight: 700; padding: .2rem .75rem;
  border-radius: 999px; box-shadow: var(--shadow-sm); color: #fff;
}
.pricing-card__pill--green { background: var(--brand-600); }
.pricing-card__pill--slate { background: var(--slate-700); }
.pricing-card__title { font-size: 1.15rem; font-weight: 700; color: var(--slate-800); margin-top: .5rem; margin-bottom: .25rem; }
.pricing-card__subtitle { font-size: .875rem; color: var(--slate-500); margin-bottom: 1.5rem; }
.pricing-card__price { font-size: 3rem; font-weight: 800; color: var(--brand-600); margin-bottom: 1.5rem; line-height: 1; }
.pricing-card__price--slate { color: var(--slate-700); }
.pricing-card__price sup { font-size: 1.25rem; }
.pricing-card__price small { font-size: 1rem; font-weight: 400; color: var(--slate-400); }
.pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: .75rem; font-size: .875rem; color: var(--slate-700); flex: 1; margin-bottom: 2rem; }
.pricing-card__features li { display: flex; align-items: center; gap: .5rem; }
.pricing-card__features li svg { width: 16px; height: 16px; color: var(--brand-500); flex-shrink: 0; }
.pricing-card__btn {
  display: block; text-align: center; font-weight: 700; font-size: .9rem;
  padding: .875rem 1.5rem; border-radius: var(--radius-lg);
  transition: background .15s; box-shadow: var(--shadow-sm);
}
.pricing-card__btn--green { background: var(--brand-600); color: #fff; }
.pricing-card__btn--green:hover { background: var(--brand-700); }
.pricing-card__btn--slate { background: var(--slate-700); color: #fff; }
.pricing-card__btn--slate:hover { background: var(--slate-800); }

/* ── Pay Now ─────────────────────────────────────────────── */
.pay-now { background: #fff; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); padding: 5rem 1rem; }
.pay-now__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.pay-now h2 { font-size: 2rem; font-weight: 700; margin-bottom: .5rem; }
.pay-now__sub { color: var(--slate-500); margin-bottom: 2.5rem; }
.pay-now__row { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 600px) { .pay-now__row { flex-direction: row; } }

.pay-now-card {
  flex: 1; background: var(--slate-50);
  border: 1px solid var(--slate-200); border-radius: var(--radius-xl);
  padding: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.pay-now-card__label { font-weight: 600; color: var(--slate-700); }
.pay-now-card__price { font-size: 2rem; font-weight: 800; color: var(--brand-600); }
.pay-now-card__price--slate { color: var(--slate-700); }
.pay-now-card__price small { font-size: 1rem; font-weight: 400; color: var(--slate-400); }
.paypal-btn {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: #0070ba; color: #fff; font-weight: 700; font-size: .9rem;
  padding: .875rem 1.5rem; border-radius: var(--radius-lg); border: none;
  transition: background .15s; box-shadow: var(--shadow-sm); cursor: pointer;
}
.paypal-btn:hover { background: #003087; }
.paypal-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* ── Mail / In-person ────────────────────────────────────── */
.mail-section { max-width: 760px; margin: 0 auto; padding: 4rem 1rem; }
.mail-card {
  background: var(--brand-50); border: 1px solid var(--brand-200);
  border-radius: var(--radius-2xl); padding: 2rem;
}
.mail-card h2 { font-size: 1.5rem; font-weight: 700; color: var(--brand-800); margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.mail-card h2 svg { width: 24px; height: 24px; color: var(--brand-600); flex-shrink: 0; }
.mail-card > p { color: var(--brand-700); font-size: .875rem; margin-bottom: 1.5rem; }
.mail-card__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .mail-card__grid { grid-template-columns: repeat(2, 1fr); } }
.mail-subcard { background: #fff; border: 1px solid var(--brand-100); border-radius: var(--radius-xl); padding: 1.25rem; }
.mail-subcard h3 { font-weight: 700; color: var(--slate-800); margin-bottom: .5rem; font-size: .9rem; display: flex; align-items: center; gap: .4rem; }
.mail-subcard h3 svg { width: 18px; height: 18px; color: var(--brand-500); flex-shrink: 0; }
.mail-subcard p { font-size: .875rem; color: var(--slate-600); line-height: 1.55; }
.mail-subcard address { margin-top: .75rem; font-size: .875rem; font-weight: 500; color: var(--slate-700); background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-md); padding: .75rem 1rem; line-height: 1.7; }
.mail-subcard__contacts { margin-top: .75rem; font-size: .875rem; font-weight: 500; color: var(--slate-700); background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-md); padding: .75rem 1rem; }
.mail-subcard__contacts p + p { margin-top: .25rem; }
.mail-subcard__contacts a { color: var(--brand-600); }
.mail-subcard__contacts a:hover { text-decoration: underline; }
.mail-subcard__note { margin-top: .75rem; font-size: .75rem; color: var(--slate-500); }

/* ── Design Gallery ──────────────────────────────────────── */
.gallery { background: var(--slate-800); padding: 5rem 1rem; }
.gallery__inner { max-width: 1152px; margin: 0 auto; }
.gallery__eyebrow { text-transform: uppercase; letter-spacing: .12em; color: var(--brand-400); font-size: .7rem; font-weight: 600; text-align: center; margin-bottom: .5rem; }
.gallery h2 { font-size: 2rem; font-weight: 700; color: #fff; text-align: center; margin-bottom: .75rem; }
.gallery__sub { color: var(--slate-400); text-align: center; font-size: .875rem; max-width: 520px; margin: 0 auto 3rem; }
.gallery__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 700px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-card { background: var(--slate-700); border: 1px solid var(--slate-600); border-radius: var(--radius-xl); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.gallery-card__mock { position: relative; aspect-ratio: 4/3; overflow: hidden; display: flex; flex-direction: column; }
.gallery-card__chrome { display: flex; align-items: center; gap: .375rem; padding: .5rem .75rem; background: var(--slate-800); flex-shrink: 0; }
.gallery-card__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.gallery-card__chrome-bar { flex: 1; height: 12px; background: var(--slate-600); border-radius: 4px; margin-left: .5rem; }
.gallery-card__screen { flex: 1; padding: .75rem; display: flex; flex-direction: column; gap: .4rem; overflow: hidden; }
.gallery-card__preview-badge { position: absolute; bottom: .5rem; right: .5rem; font-size: .65rem; font-weight: 700; padding: .2rem .5rem; border-radius: 999px; color: #fff; }
.gallery-card__body { padding: 1.25rem; }
.gallery-card__title { font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: .35rem; }
.gallery-card__desc { color: var(--slate-400); font-size: .8rem; line-height: 1.55; }
.gallery-card__tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-top: .75rem; }
.gallery-card__tag { background: var(--slate-600); color: var(--slate-300); font-size: .65rem; padding: .15rem .5rem; border-radius: 999px; }

/* Modern mock styles */
.mock-modern { background: linear-gradient(135deg, #334155 0%, #475569 100%); }
.mock-modern .bar { height: 10px; border-radius: 4px; background: rgba(74,222,128,.5); }
.mock-modern .bar--wide { width: 75%; }
.mock-modern .bar--med  { width: 100%; background: rgba(255,255,255,.2); }
.mock-modern .bar--short { width: 83%; background: rgba(255,255,255,.2); }
.mock-modern .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; margin-top: .25rem; }
.mock-modern .cell { height: 36px; background: rgba(255,255,255,.08); border-radius: 6px; }

/* Heritage mock styles */
.mock-heritage { background: linear-gradient(135deg, #78350f50 0%, #92400e40 100%); }
.mock-heritage .bar { height: 10px; border-radius: 4px; background: rgba(251,191,36,.6); }
.mock-heritage .bar--wide { width: 66%; }
.mock-heritage .bar--med  { width: 100%; background: rgba(255,255,255,.15); }
.mock-heritage .bar--short { width: 80%; background: rgba(255,255,255,.15); }
.mock-heritage .list { display: flex; flex-direction: column; gap: .4rem; margin-top: .25rem; }
.mock-heritage .list-item { height: 28px; background: rgba(255,255,255,.08); border-radius: 4px; border-left: 3px solid rgba(251,191,36,.5); }

/* Professional mock styles */
.mock-professional { background: linear-gradient(135deg, #1e3a5f50 0%, #1d4ed840 100%); }
.mock-professional .top-row { display: flex; align-items: center; gap: .4rem; margin-bottom: .3rem; }
.mock-professional .logo-box { width: 24px; height: 24px; background: rgba(96,165,250,.45); border-radius: 4px; flex-shrink: 0; }
.mock-professional .title-bar { flex: 1; height: 14px; background: rgba(147,197,253,.4); border-radius: 4px; }
.mock-professional .bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,.15); }
.mock-professional .bar--wide { width: 100%; }
.mock-professional .bar--short { width: 66%; }
.mock-professional .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem; margin-top: .25rem; }
.mock-professional .cell { height: 32px; background: rgba(255,255,255,.08); border-radius: 4px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; padding: 4rem 1rem; }
.faq h2 { font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 2rem; }
.faq__list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-xl); overflow: hidden; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; font-weight: 600; color: var(--slate-800);
  cursor: pointer; user-select: none;
}
.faq-item summary svg { width: 20px; height: 20px; color: var(--slate-400); flex-shrink: 0; transition: transform .2s; }
details.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item__body { padding: 0 1.25rem 1.1rem; font-size: .875rem; color: var(--slate-600); line-height: 1.7; }
