/* === KiddosCompass Design System === */

:root {
  --teal: #3BA7A0;
  --teal-dark: #2E8A84;
  --teal-light: #E8F6F5;
  --coral: #F47C6A;
  --coral-light: #FFF0EE;
  --golden: #E8B872;
  --golden-light: #FFF8EC;
  --purple: #9B8EC4;
  --purple-light: #F3F0FA;
  --sky: #5AAFE6;
  --sky-light: #EDF6FD;
  --bg: #FAF9F7;
  --surface: #F1F1F3;
  --text: #2E2E2E;
  --muted: #6A6A6A;
  --white: #FFFFFF;
  --border: #E4E4E7;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --radius: 12px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === NAV === */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
}

.nav-links a:hover {
  background: var(--teal-light);
  color: var(--teal);
}

.nav-saved {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--coral);
  background: var(--coral-light);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.nav-saved:hover { border-color: var(--coral); }
.nav-saved svg { width: 14px; height: 14px; }

.nav-signup {
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 500;
  padding: 8px 16px !important;
  font-size: 0.82rem !important;
  transition: background 0.2s;
}
.nav-signup:hover {
  background: var(--teal-dark);
}

/* === NAV SEARCH === */

.nav-search-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
}

.nav-search-btn:hover {
  background: var(--teal-light);
  color: var(--teal);
  border-color: var(--teal);
}

.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  padding: 80px 24px 24px;
}

.search-overlay.active { display: block; }

.search-overlay-inner {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
}

.search-overlay-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.search-overlay-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: none;
}

.search-overlay-bar input::placeholder { color: var(--muted); }

.search-overlay-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.search-overlay-close:hover { color: var(--text); }

.search-overlay-results {
  overflow-y: auto;
  padding: 8px 0;
}

.search-result-group {
  padding: 8px 20px 4px;
}

.search-result-group-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 6px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: var(--text);
}

.search-result-item:hover { background: var(--teal-light); }

.search-result-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
}

.search-result-icon.faq-icon { background: var(--golden-light); color: var(--golden); }
.search-result-icon.biz-icon { background: var(--teal-light); color: var(--teal); }

.search-result-text {
  flex: 1;
  min-width: 0;
}

.search-result-name {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-empty {
  padding: 32px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a2e2e;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.85);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px 36px;
  max-width: 800px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: normal;
  color: var(--golden);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.search-box {
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  outline: none;
  background: var(--white);
}

.search-box input::placeholder { color: #999; }

.search-box svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

/* === CATEGORY SHORTCUTS (hero pills) === */
.cat-shortcuts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

.cat-shortcut {
  padding: 8px 18px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.cat-shortcut:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

/* === SECTION === */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.section-count {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}

.section-link {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
}

/* === CATEGORY CARDS === */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cat-card {
  border-radius: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.cat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-card-text { flex: 1; min-width: 0; }

.cat-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text);
  line-height: 1.3;
}

.cat-card p { font-size: 0.78rem; color: var(--muted); }

/* Color variants */
.cat-card[data-color="teal"]   { background: #E8F6F5; border-color: #C8E9E7; }
.cat-card[data-color="coral"]  { background: #FFF0EE; border-color: #FDDDD8; }
.cat-card[data-color="golden"] { background: #FFF8EC; border-color: #F5E6C4; }
.cat-card[data-color="purple"] { background: #F3F0FA; border-color: #DDD8F0; }
.cat-card[data-color="sky"]    { background: #EDF6FD; border-color: #C8E3F8; }

.cat-card[data-color="teal"]   .cat-card-icon { background: var(--teal);   color: #fff; }
.cat-card[data-color="coral"]  .cat-card-icon { background: var(--coral);  color: #fff; }
.cat-card[data-color="golden"] .cat-card-icon { background: var(--golden); color: #fff; }
.cat-card[data-color="purple"] .cat-card-icon { background: var(--purple); color: #fff; }
.cat-card[data-color="sky"]    .cat-card-icon { background: var(--sky);    color: #fff; }

/* Hover arrow */
.cat-card::after {
  content: '\2192';
  position: absolute;
  right: 18px;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}
.cat-card[data-color="teal"]::after   { color: var(--teal); }
.cat-card[data-color="coral"]::after  { color: var(--coral); }
.cat-card[data-color="golden"]::after { color: var(--golden); }
.cat-card[data-color="purple"]::after { color: var(--purple); }
.cat-card[data-color="sky"]::after    { color: var(--sky); }
.cat-card:hover::after { opacity: 1; transform: translateX(0); }

/* === BUSINESS CARDS === */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.biz-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.biz-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.biz-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
}

.biz-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-card-cat-pill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.biz-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.biz-badge--top {
  background: #D4A853;
  color: #fff;
}

.biz-badge--fav {
  background: var(--teal);
  color: #fff;
}

.biz-card-votes {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 500;
}

.biz-card-body {
  padding: 14px 18px 18px;
}

.biz-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.biz-card-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.biz-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.biz-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--muted);
}

.biz-card-rating .stars { display: flex; gap: 1px; }
.biz-rating-num { font-weight: 600; color: var(--text); }
.biz-review-ct { font-size: 0.75rem; color: var(--muted); }

.biz-card-city {
  font-size: 0.78rem;
  color: var(--muted);
}

/* === CATEGORY PAGE HERO === */
.cat-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1a1a;
}

.cat-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.cat-hero-content {
  position: relative;
  z-index: 2;
  padding: 32px 24px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.cat-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cat-hero-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.breadcrumb--light a { color: rgba(255,255,255,0.7); }
.breadcrumb--light a:hover { color: #fff; }
.breadcrumb--light span { color: rgba(255,255,255,0.4); }
.breadcrumb--light { margin-bottom: 12px; }

/* === FILTERS === */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}

.filter-select {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  outline: none;
}

.filter-select:focus { border-color: var(--teal); }

/* === EMAIL CAPTURE === */
.subscribe-section {
  background: linear-gradient(135deg, var(--coral-light) 0%, #FFF8EC 100%);
  border: 1px solid #FDDDD8;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.subscribe-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.subscribe-section p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  justify-content: center;
}

.subscribe-cities {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.city-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
}

.city-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
  cursor: pointer;
}

.subscribe-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: var(--white);
}

.subscribe-form input:focus { border-color: var(--teal); }

.subscribe-form button {
  padding: 12px 28px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.subscribe-form button:hover { background: #e36b5a; }

/* === STATS BAR === */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

/* === FOOTER === */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a { color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 0.75rem;
}
.footer-legal a { color: #999; transition: color 0.2s; }
.footer-legal a:hover { color: var(--teal); }

/* === LEGAL PAGES === */
.legal-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text);
}
.legal-content p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  margin: 0 0 16px 20px;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.8;
}
.legal-content a {
  color: var(--teal);
  text-decoration: underline;
}

/* === PAGE HEADER (category/city pages) === */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header .breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.page-header .breadcrumb a { color: var(--teal); }

.page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.page-header p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* === EMPTY STATE === */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
}

.empty-state h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.6rem; white-space: normal; }
  .hero { min-height: 280px; }
  .cat-grid { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .filters-bar { flex-direction: column; }
  .stats-bar { gap: 24px; }
  .stat-num { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 240px; }
  .hero h1 { font-size: 1.3rem; white-space: normal; }
  .hero-content { padding: 32px 16px 28px; }
  .section { padding: 32px 16px; }
  .nav { padding: 0 16px; }
  .nav-links { gap: 4px; }
  .nav-links a { padding: 6px 10px; font-size: 0.8rem; }
  .stats-bar { flex-wrap: wrap; gap: 16px; padding: 24px 16px; }
  .news-card { min-width: 260px; }
}

/* === News Slider === */
.news-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.news-slider-track {
  display: flex;
  gap: 16px;
  animation: newsSlide 30s linear infinite;
  will-change: transform;
}

.news-slider-track:hover {
  animation-play-state: paused;
}

@keyframes newsSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.news-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 12px rgba(59,167,160,0.12);
  transform: translateY(-2px);
}

.news-card-cat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--teal-dark);
}

.news-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.news-cat-dot[data-cat="Education"] { background: var(--sky); }
.news-cat-dot[data-cat="Health & Safety"] { background: var(--coral); }
.news-cat-dot[data-cat="Events"] { background: var(--purple); }
.news-cat-dot[data-cat="New Openings"] { background: var(--teal); }
.news-cat-dot[data-cat="Sports & Activities"] { background: var(--coral); }

.news-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-snippet {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}

.news-card-source { font-weight: 500; }
.news-card-date { opacity: 0.8; }

/* === FAQ PAGE === */

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
}

.faq-category {
  margin-bottom: 36px;
}

.faq-category h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal-light);
}

.faq-item {
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.faq-question {
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '-';
}

.faq-question:hover {
  color: var(--teal-dark);
}

.faq-answer {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}
