/* ============================================================
   Homepage — page-specific styles (Key Takeaways, FAQ)
   Reuses root tokens defined in main.css
   ============================================================ */

/* KEY TAKEAWAYS */
.key-takeaways {
  padding: 56px 0;
  background: var(--blue-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.kt-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 18px;
}
.kt-list {
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 900px;
}
.kt-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.kt-mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* FAQ (mirrors plans.css .faq-* pattern for visual consistency) */
.faq-section { padding: 100px 0; background: var(--bg-card); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  font-size: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.2s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .key-takeaways { padding: 40px 0; }
  .faq-section { padding: 64px 0; }
}
