section .wrap { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 1024px;}

/* ─── Section header ────────────────────────────────────────── */
.faq-header {
  margin-bottom: 56px;
}

/* ─── Group block ───────────────────────────────────────────── */
.faq-group {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 720px;
}

.faq-group__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gray-txt);
  margin-bottom: 12px;
}

.faq-group__label::before {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.faq-list { margin-top: 44px; display: flex; flex-direction: column; max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--gray-line)}
.faq-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; text-align: left;
}
.faq-q { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.45; }
.faq-chevron-wrap {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gray-line);
  transition: border-color .22s, color .22s;
}
.faq-trigger.open .faq-chevron-wrap { border-color: var(--accent); color: var(--accent); }
.faq-trigger.open .faq-chevron-wrap svg { transform: rotate(180deg); }
.faq-chevron-wrap svg { transition: transform .3s; }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.faq-body.open { grid-template-rows: 1fr; }
.faq-inner { overflow: hidden; }
.faq-inner p { font-size: 13px; color: var(--gray-txt); line-height: 1.7; padding-bottom: 20px; }


/* ─── CTA strip at the bottom ─────────────────────────────────── */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 52px;
  text-align: center;
  gap: 24px;
  padding: 88px 0;
}

.cta-h2 {
  font-size: clamp(26px,3vw,42px);
  font-weight: 900; 
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--navy);
  margin-bottom: 16px; }

.cta-sub {
  font-size: 15px;
  color: var(--gray-txt);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 10px;
}
.btn-cta-wa {
  font-family: 'Montserrat',sans-serif; font-size: 14px; font-weight: 600;
  color: var(--navy); background: #fff; border: 1.5px solid var(--gray-line);
  border-radius: 10px; padding: 15px 28px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .18s, color .18s; text-decoration: none;
}

.btn-cta-wa:hover { border-color: var(--accent); color: var(--accent); }
 
/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 740px){
  .nav-links, .nav-btns { display: none;}
  .hamburger { display: block; }
}
@media (max-width: 720px) {
  .faq-section { padding: 56px 0 72px; }
  .faq-header { margin-bottom: 40px; }
  .faq-trigger { padding: 16px 18px; }
  .faq-trigger__text { font-size: 14px; }
  .faq-panel__content { padding: 0 18px 18px; padding-top: 14px; font-size: 14px; }
  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }
  .faq-cta__btn { width: 100%; justify-content: center; }
}
