/* ─── CONTAINER ─── */
.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── FAQ BODY ─── */
.faq-body {
  padding: 64px 24px 80px;
}
.faq-body .container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

/* ─── TOC SIDEBAR ─── */
.faq-toc {
  position: sticky;
  top: 90px;
}
.faq-toc h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.faq-toc ul {
  list-style: none;
}
.faq-toc ul li {
  margin-bottom: 2px;
}
.faq-toc ul li a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: all 0.18s;
  line-height: 1.4;
}
.faq-toc ul li a:hover,
.faq-toc ul li a.active {
  background: var(--green-light);
  color: var(--green);
  border-left-color: var(--green);
}

/* ─── FAQ LIST ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ─── FAQ ITEM ─── */
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open {
  box-shadow: var(--shadow);
  border-color: var(--green-mid);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.18s;
}
.faq-question:hover {
  background: var(--green-light);
}
.faq-item.open .faq-question {
  background: var(--green-light);
  color: var(--green-dark);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.25s;
}
.faq-item.open .faq-icon {
  background: var(--green);
  transform: rotate(45deg);
}
.faq-icon svg {
  stroke: var(--green);
  transition: stroke 0.18s;
}
.faq-item.open .faq-icon svg {
  stroke: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-item.open .faq-answer {
  max-height: 1000px;
}
.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer-inner p + p {
  margin-top: 12px;
}
.faq-answer-inner strong {
  color: var(--text);
}
.faq-answer-inner ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
}
.faq-answer-inner li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.faq-answer-inner a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}
.faq-answer-inner a:hover {
  text-decoration: underline;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--cream);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-inner h2 em {
  font-style: normal;
  color: var(--green);
}
.cta-inner p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-yes {
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 16px 40px;
  border-radius: 50px;
  transition: background 0.18s, transform 0.15s;
  display: inline-block;
}
.btn-yes:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .faq-body .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-toc {
    position: static;
  }
}
@media (max-width: 640px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-yes {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
