/* ============================================================
   FAQ + Final form section
   ============================================================ */

.faq-section {
  width: 100%;
  background: var(--gt-cream);
  font-family: var(--font-sans);
  direction: rtl;
  position: relative;
  overflow: hidden;
}

.faq-inner {
  padding: 80px 80px 96px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-head {
  text-align: center;
  margin-bottom: 56px;
}
.faq-headline {
  font-weight: 800;
  font-size: 60px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--gt-ink);
  margin: 0;
  text-wrap: balance;
}
.faq-sub {
  color: var(--gt-body);
  margin: 14px 0 0;
  font-size: 18px;
}

.faq-list {
  background: white;
  border: 1px solid var(--gt-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(110, 28, 64, 0.04);
}

.faq-row {
  border-bottom: 1px solid var(--gt-line);
  background: transparent;
  transition: background 240ms var(--ease-warm);
}
.faq-row:last-child { border-bottom: none; }
.faq-row.is-open { background: rgba(247, 215, 214, 0.18); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: right;
  direction: rtl;
  font-family: inherit;
}

.faq-num {
  font-size: 15px;
  font-weight: 600;
  color: var(--gt-muted);
  letter-spacing: 0.02em;
  min-width: 36px;
  transition: color 240ms var(--ease-warm);
}
.faq-row.is-open .faq-num { color: var(--gt-burgundy); }

.faq-q-text {
  flex: 1;
  font-size: 19px;
  font-weight: 600;
  color: var(--gt-ink);
  line-height: 1.35;
  text-wrap: balance;
  transition: all 240ms var(--ease-warm);
}
.faq-row.is-open .faq-q-text {
  font-weight: 700;
  color: var(--gt-burgundy-ink);
}

.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gt-cream);
  color: var(--gt-burgundy-ink);
  border: 1px solid var(--gt-line);
  flex-shrink: 0;
  transition: all 240ms var(--ease-warm);
}
.faq-row.is-open .faq-toggle {
  background: var(--gt-burgundy);
  color: white;
  border: none;
}
.faq-toggle svg { transition: transform 240ms var(--ease-warm); }
.faq-row.is-open .faq-toggle svg { transform: rotate(45deg); }

.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease-warm);
}
.faq-row.is-open .faq-a-wrap { max-height: 600px; }

.faq-a {
  padding: 0 84px 28px;
  color: var(--gt-body);
  font-size: 17px;
  line-height: 1.6;
  direction: rtl;
  text-wrap: pretty;
}

/* Pink seam */
.faq-seam {
  height: 8px;
  background: linear-gradient(90deg, transparent 0%, var(--gt-pink) 20%, var(--gt-pink) 80%, transparent 100%);
  opacity: 0.5;
}

/* Final form */
.final-form {
  position: relative;
  background: var(--gt-burgundy);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(247,215,214,0.18), transparent 55%),
    radial-gradient(circle at 85% 90%, rgba(247,215,214,0.10), transparent 50%);
  padding: 80px 60px;
  color: white;
  direction: rtl;
  font-family: var(--font-sans);
  overflow: hidden;
}
.final-form-deco {
  position: absolute;
  top: -80px;
  right: -60px;
  font-size: 480px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.final-form-inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.final-form-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gt-pink);
}
.final-form-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gt-pink);
  box-shadow: 0 0 8px var(--gt-pink);
}
.final-form h2 {
  font-weight: 800;
  font-size: 56px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
  color: white;
  text-wrap: balance;
}
.final-form h2 em { font-style: normal; color: var(--gt-pink); }
.final-form-lede {
  margin: 16px 0 36px;
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  text-wrap: pretty;
}

.final-form-card {
  background: var(--gt-cream);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  color: var(--gt-ink);
}

.final-tel {
  text-align: center;
  margin-top: 28px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}
.final-tel a {
  color: var(--gt-pink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(247,215,214,0.4);
}
.final-tel a:hover { color: white; }

@media (max-width: 768px) {
  .faq-inner { padding: 40px 16px 56px; max-width: 100%; }
  .faq-head { margin-bottom: 32px; }
  .faq-headline { font-size: 38px; }
  .faq-sub { font-size: 16px; }

  .faq-list { border-radius: 14px; }
  .faq-q { padding: 20px 18px; gap: 14px; }
  .faq-num { font-size: 14px; min-width: 28px; }
  .faq-q-text { font-size: 16px; }
  .faq-toggle { width: 32px; height: 32px; }
  .faq-a { padding: 0 60px 22px 18px; font-size: 15px; }

  .faq-seam { height: 6px; }

  .final-form { padding: 48px 20px; }
  .final-form-deco { font-size: 280px; top: -40px; right: -30px; }
  .final-form-inner { max-width: 100%; }
  .final-form-pill { font-size: 12px; }
  .final-form h2 { font-size: 38px; }
  .final-form-lede { font-size: 17px; margin: 12px 0 28px; }
  .final-form-card { padding: 20px; border-radius: 16px; }
  .final-tel { margin-top: 22px; font-size: 14px; }
}
