/* ===========================================================================
   Farzand Beta — کانال آموزشی فرزندپروری حمید طبائی
   Premium, conversion-focused landing page.
   All classes are scoped with `.fb-` prefix to avoid collisions.
   Mirrors the smart-counselor design system with distinguishing sections.
   =========================================================================== */

.fb-page {
  --fb-bg: #fafafb;
  --fb-bg-soft: #f3f0ff;
  --fb-bg-dark: #0f0a1f;
  --fb-bg-deeper: #0a0717;
  --fb-text: #1a1530;
  --fb-text-muted: #5a5872;
  --fb-text-soft: #75718e;
  --fb-text-light: #e8e6f2;
  --fb-primary: #6b4cff;
  --fb-primary-deep: #4e34d3;
  --fb-primary-soft: #efeaff;
  --fb-accent: #d4af6f;
  --fb-accent-deep: #b8924e;
  --fb-accent-soft: #fdf6e9;
  --fb-success: #16a34a;
  --fb-line: #e6e2f0;
  --fb-line-soft: #efedf6;
  --fb-shadow-sm: 0 2px 8px rgba(20, 14, 56, 0.06);
  --fb-shadow: 0 12px 32px rgba(20, 14, 56, 0.08);
  --fb-shadow-lg: 0 24px 60px rgba(20, 14, 56, 0.12);
  --fb-radius: 1.25rem;
  --fb-radius-lg: 1.75rem;

  padding-bottom: 5rem;
  color: var(--fb-text);
  background: var(--fb-bg);
}

.fb-container {
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- Buttons ---------- */
.fb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.fb-btn--lg { padding: 1.125rem 2rem; font-size: 1rem; }
.fb-btn--gold {
  background: linear-gradient(135deg, #e6c98a 0%, #c9a25c 100%);
  color: #2a1c08;
  box-shadow: 0 10px 28px rgba(184, 146, 78, 0.35);
}
.fb-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(184, 146, 78, 0.45);
}
.fb-btn--solid {
  background: var(--fb-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(107, 76, 255, 0.3);
}
.fb-btn--solid:hover {
  background: var(--fb-primary-deep);
  transform: translateY(-2px);
}
.fb-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.fb-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.fb-btn-icon {
  width: 1.1rem;
  height: 1.1rem;
  transform: rotate(180deg);
}
.fb-btn:active { transform: scale(0.97); }
.fb-btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

.fb-inline-link {
  color: var(--fb-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
}
.fb-inline-link:hover { color: var(--fb-primary-deep); }

.fb-mt-md { margin-top: 1.5rem; }

/* ---------- Alert ---------- */
.fb-alert {
  position: fixed;
  top: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  max-width: 32rem;
  width: calc(100% - 2rem);
  padding: 0.875rem 1.25rem;
  border-radius: 1rem;
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #664d03;
  font-size: 0.9rem;
  box-shadow: var(--fb-shadow);
}
.fb-alert.hidden { display: none; }
.fb-alert a { color: var(--fb-primary); font-weight: 700; text-decoration: underline; }

/* ---------- Reveal animation ---------- */
.fb-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section base ---------- */
.fb-section {
  padding: 5rem 0;
  position: relative;
}
.fb-section--tight { padding: 2.5rem 0; }
.fb-section--soft { background: var(--fb-bg-soft); }
.fb-section--dark {
  background: linear-gradient(150deg, #14102b 0%, #1e1545 50%, #2a1a4a 100%);
  color: var(--fb-text-light);
  overflow: hidden;
}
.fb-section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3.5rem;
}
.fb-section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fb-primary);
  background: var(--fb-primary-soft);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.fb-section-eyebrow--light {
  color: #f1ecff;
  background: rgba(255, 255, 255, 0.1);
}
.fb-section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}
.fb-section-title--light { color: #fff; }
.fb-section-sub {
  font-size: 1.05rem;
  color: var(--fb-text-muted);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 700px) {
  .fb-section { padding: 3.5rem 0; }
  .fb-section-title { font-size: 1.75rem; }
  .fb-section-sub { font-size: 1rem; }
}

/* ---------- HERO ---------- */
.fb-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
  background: linear-gradient(160deg, #0a0717 0%, #1a0e36 40%, #2b1957 75%, #432086 100%);
  color: #fff;
}
.fb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.fb-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
}
.fb-hero-glow--1 {
  width: 32rem; height: 32rem;
  top: -8rem; right: -8rem;
  background: radial-gradient(circle, #d4af6f 0%, transparent 60%);
}
.fb-hero-glow--2 {
  width: 30rem; height: 30rem;
  bottom: -6rem; left: -6rem;
  background: radial-gradient(circle, #7b5cff 0%, transparent 60%);
}
.fb-hero-glow--3 {
  width: 24rem; height: 24rem;
  top: 30%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0.4;
}
.fb-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.fb-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .fb-hero-inner { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

.fb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 111, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f5d796;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.fb-pulse-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: #d4af6f;
  box-shadow: 0 0 0 0 rgba(212, 175, 111, 0.7);
  animation: fb-pulse 2s infinite;
}
@keyframes fb-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 111, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(212, 175, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 111, 0); }
}

.fb-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: #fff;
}
.fb-hero-accent {
  background: linear-gradient(120deg, #f5d796 0%, #d4af6f 50%, #b8924e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.fb-hero-sub {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #d4cfe6;
  margin: 0 0 2.25rem;
  max-width: 36rem;
}
.fb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.fb-hero-actions svg { width: 1rem; height: 1rem; }
.fb-hero-trust {
  font-size: 0.85rem;
  color: #aea7cc;
  margin: 0;
  line-height: 1.8;
}

/* Hero video mock card */
.fb-hero-card {
  position: relative;
  perspective: 1200px;
}
.fb-video-mock {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--fb-radius-lg);
  padding: 1rem;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(212, 175, 111, 0.1) inset;
  transform: rotate(-1.5deg);
  transition: transform 0.5s ease;
}
.fb-video-mock:hover { transform: rotate(0deg); }
.fb-video-mock-video {
  width: 100%;
  border-radius: 1rem;
  display: block;
}
.fb-video-mock-poster {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 1rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 111, 0.4), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(123, 92, 255, 0.4), transparent 60%),
    linear-gradient(135deg, #1a1130 0%, #2c1a55 50%, #432086 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-video-mock-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  animation: fb-shine 4s linear infinite;
}
@keyframes fb-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.fb-video-mock-play {
  position: relative;
  z-index: 1;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6c98a, #c9a25c);
  color: #2a1c08;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
  box-shadow: 0 10px 30px rgba(184, 146, 78, 0.5);
  opacity: 0.85;
}
.fb-video-mock-play svg { width: 1.6rem; height: 1.6rem; padding-right: 0.2rem; }
.fb-video-mock-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  text-align: right;
}
.fb-video-mock-title { font-weight: 700; margin: 0 0 0.2rem; font-size: 0.95rem; }
.fb-video-mock-duration { font-size: 0.78rem; color: #d4cfe6; margin: 0; }

/* ---------- Stats strip ---------- */
.fb-stats-strip {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, var(--fb-bg) 0%, var(--fb-bg-soft) 100%);
  border-bottom: 1px solid var(--fb-line);
}
.fb-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 700px) {
  .fb-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.fb-stat {
  position: relative;
  padding: 0.5rem 0.75rem;
}
.fb-stat + .fb-stat::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--fb-line);
}
.fb-stat-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--fb-primary) 0%, var(--fb-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.fb-stat-label {
  font-size: 0.85rem;
  color: var(--fb-text-muted);
  font-weight: 600;
}

/* ---------- Problems ---------- */
.fb-problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.fb-problem-card {
  background: #fff;
  border-radius: var(--fb-radius);
  padding: 1.5rem;
  box-shadow: var(--fb-shadow-sm);
  border: 1px solid var(--fb-line-soft);
  transition: transform 0.25s, box-shadow 0.25s;
}
.fb-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fb-shadow);
  border-color: var(--fb-primary-soft);
}
.fb-problem-icon {
  display: inline-flex;
  width: 3rem; height: 3rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--fb-primary-soft), #fff);
  color: var(--fb-primary);
  align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.fb-problem-icon svg { width: 1.5rem; height: 1.5rem; }
.fb-problem-title { font-size: 1.05rem; font-weight: 700; margin: 0 0 0.5rem; }
.fb-problem-text { font-size: 0.9rem; color: var(--fb-text-muted); line-height: 1.8; margin: 0; }

.fb-problems-cta {
  text-align: center;
  margin: 2.5rem auto 0;
  font-size: 1.05rem;
  color: var(--fb-text);
  font-weight: 600;
  max-width: 40rem;
  line-height: 1.8;
}

/* ---------- Solution ---------- */
.fb-solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 880px) {
  .fb-solution-grid { grid-template-columns: 1.3fr 1fr; gap: 4rem; }
}
.fb-solution-text {
  font-size: 1.02rem;
  line-height: 2;
  color: #d6d2e8;
  margin: 0 0 1rem;
}
.fb-solution-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 24rem;
  margin: 0 auto;
}
.fb-solution-shape {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  animation: fb-float 9s ease-in-out infinite;
}
.fb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.fb-orb--1 {
  width: 12rem; height: 12rem;
  top: 10%; right: -10%;
  background: #d4af6f;
  opacity: 0.3;
}
.fb-orb--2 {
  width: 10rem; height: 10rem;
  bottom: 5%; left: -8%;
  background: #7b5cff;
  opacity: 0.4;
}
.fb-orb--3 {
  width: 7rem; height: 7rem;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #fff;
  opacity: 0.08;
}
@keyframes fb-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

/* ---------- Instructor ---------- */
.fb-instructor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #fbf9ff 100%);
  border: 1px solid var(--fb-line);
  border-radius: var(--fb-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--fb-shadow);
}
@media (min-width: 800px) {
  .fb-instructor {
    grid-template-columns: auto 1fr;
    gap: 3rem;
    padding: 3rem;
  }
}
.fb-instructor-portrait {
  position: relative;
  width: 12rem;
  height: 12rem;
  margin: 0 auto;
  flex-shrink: 0;
}
.fb-instructor-monogram {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at top right, rgba(245, 215, 150, 0.6), transparent 60%),
    linear-gradient(135deg, var(--fb-accent) 0%, var(--fb-primary) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow:
    0 20px 50px rgba(67, 32, 134, 0.3),
    inset 0 0 0 4px rgba(255, 255, 255, 0.15);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-family: inherit;
}
.fb-instructor-portrait-glow {
  position: absolute;
  inset: -2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 111, 0.25) 0%, transparent 60%);
  filter: blur(20px);
  z-index: 0;
}
.fb-instructor-body { text-align: right; }
.fb-instructor-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--fb-text);
}
.fb-instructor-role {
  font-size: 0.95rem;
  color: var(--fb-primary);
  font-weight: 700;
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--fb-line);
}
.fb-instructor-bio {
  font-size: 1rem;
  line-height: 2;
  color: var(--fb-text-muted);
  margin: 0 0 1.75rem;
}
.fb-instructor-achievements {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .fb-instructor-achievements { grid-template-columns: repeat(3, 1fr); }
}
.fb-achievement {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem;
  background: var(--fb-primary-soft);
  border-radius: var(--fb-radius);
  border: 1px solid rgba(107, 76, 255, 0.12);
}
.fb-achievement-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fb-accent), var(--fb-accent-deep));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.1rem;
}
.fb-achievement-icon svg { width: 0.9rem; height: 0.9rem; }
.fb-achievement-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: var(--fb-text);
}
.fb-achievement-text {
  font-size: 0.82rem;
  color: var(--fb-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Methods ---------- */
.fb-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.fb-method-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--fb-line);
  border-radius: var(--fb-radius);
  padding: 1.75rem;
  box-shadow: var(--fb-shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  overflow: hidden;
}
.fb-method-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--fb-primary-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s;
}
.fb-method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fb-shadow);
  border-color: var(--fb-primary);
}
.fb-method-card:hover::before { opacity: 1; }
.fb-method-card > * { position: relative; z-index: 1; }
.fb-method-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-deep));
  color: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.fb-method-title { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.6rem; }
.fb-method-text { font-size: 0.92rem; color: var(--fb-text-muted); line-height: 1.8; margin: 0; }

/* ---------- Transformation ---------- */
.fb-transform {
  background: #fff;
  border-radius: var(--fb-radius-lg);
  overflow: hidden;
  box-shadow: var(--fb-shadow);
  border: 1px solid var(--fb-line);
}
.fb-transform-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  background: linear-gradient(120deg, #f8f6fd 0%, #ede8fb 100%);
  border-bottom: 1px solid var(--fb-line);
}
.fb-transform-col {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.fb-transform-col--before { color: #94556b; }
.fb-transform-col--after { color: var(--fb-success); }
.fb-transform-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
.fb-transform-dot--before { background: #e8b6c5; box-shadow: 0 0 0 3px rgba(232, 182, 197, 0.25); }
.fb-transform-dot--after { background: var(--fb-success); box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2); }
.fb-transform-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid var(--fb-line-soft);
  align-items: center;
}
.fb-transform-row:last-child { border-bottom: none; }
.fb-transform-row:nth-child(even) { background: #fbfaff; }
.fb-transform-cell {
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}
.fb-transform-cell--before {
  color: var(--fb-text-soft);
  font-style: italic;
}
.fb-transform-cell--after {
  color: var(--fb-text);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.fb-transform-arrow {
  color: var(--fb-primary);
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-transform-arrow svg { width: 1.4rem; height: 1.4rem; }
.fb-transform-check {
  flex-shrink: 0;
  display: inline-flex;
  width: 1.25rem; height: 1.25rem;
  align-items: center; justify-content: center;
  background: var(--fb-success);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.15rem;
}
@media (max-width: 700px) {
  .fb-transform-head { display: none; }
  .fb-transform-row {
    grid-template-columns: 1fr;
    padding: 0.75rem 0;
  }
  .fb-transform-arrow {
    display: none;
  }
  .fb-transform-cell::before {
    content: attr(data-label);
    display: block;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.05em;
  }
  .fb-transform-cell--before::before { color: #94556b; }
  .fb-transform-cell--after::before { color: var(--fb-success); }
}

/* ---------- Features ---------- */
.fb-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.fb-feature-card {
  background: #fff;
  border: 1px solid var(--fb-line);
  border-radius: var(--fb-radius);
  padding: 1.75rem;
  box-shadow: var(--fb-shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.fb-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fb-shadow);
}
.fb-feature-icon {
  display: inline-flex;
  width: 3rem; height: 3rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--fb-accent), var(--fb-accent-deep));
  color: #fff;
  align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.fb-feature-icon svg { width: 1.5rem; height: 1.5rem; }
.fb-feature-title { font-size: 1.05rem; font-weight: 700; margin: 0 0 0.5rem; }
.fb-feature-text { font-size: 0.92rem; color: var(--fb-text-muted); line-height: 1.8; margin: 0; }

/* ---------- Sample lessons ---------- */
.fb-samples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .fb-samples-grid { grid-template-columns: repeat(3, 1fr); }
}
.fb-sample-card {
  background: linear-gradient(160deg, #fff 0%, #faf8ff 100%);
  border: 1px solid var(--fb-primary-soft);
  border-radius: var(--fb-radius);
  padding: 1.5rem;
  box-shadow: var(--fb-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.fb-sample-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fb-shadow);
}
.fb-sample-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.fb-sample-num {
  display: inline-flex;
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--fb-accent), var(--fb-accent-deep));
  color: #fff;
  align-items: center; justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
}
.fb-sample-cat {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fb-primary);
  background: var(--fb-primary-soft);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.fb-sample-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--fb-text);
  line-height: 1.5;
}
.fb-sample-text {
  font-size: 0.88rem;
  color: var(--fb-text-muted);
  line-height: 1.8;
  margin: 0 0 1.25rem;
  flex: 1;
}
.fb-sample-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #fbfaff;
  border-radius: 0.85rem;
  border: 1px solid var(--fb-line-soft);
}
.fb-sample-audio {
  flex: 1;
  height: 2rem;
  min-width: 0;
}
.fb-sample-placeholder {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #fbfaff 0%, #f3effd 100%);
  border-radius: 0.85rem;
  border: 1px dashed var(--fb-line);
}
.fb-sample-play {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-deep));
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
  opacity: 0.85;
}
.fb-sample-play svg { width: 0.95rem; height: 0.95rem; padding-right: 0.1rem; }
.fb-sample-wave {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  height: 1.8rem;
  overflow: hidden;
}
.fb-sample-wave span {
  width: 0.18rem;
  background: linear-gradient(180deg, var(--fb-primary), var(--fb-accent));
  border-radius: 999px;
  opacity: 0.55;
  animation: fb-wave 1.4s ease-in-out infinite;
}
.fb-sample-wave span:nth-child(1)  { height: 35%; animation-delay: 0.00s; }
.fb-sample-wave span:nth-child(2)  { height: 60%; animation-delay: 0.10s; }
.fb-sample-wave span:nth-child(3)  { height: 80%; animation-delay: 0.20s; }
.fb-sample-wave span:nth-child(4)  { height: 50%; animation-delay: 0.30s; }
.fb-sample-wave span:nth-child(5)  { height: 70%; animation-delay: 0.40s; }
.fb-sample-wave span:nth-child(6)  { height: 90%; animation-delay: 0.50s; }
.fb-sample-wave span:nth-child(7)  { height: 45%; animation-delay: 0.60s; }
.fb-sample-wave span:nth-child(8)  { height: 65%; animation-delay: 0.70s; }
.fb-sample-wave span:nth-child(9)  { height: 80%; animation-delay: 0.80s; }
.fb-sample-wave span:nth-child(10) { height: 55%; animation-delay: 0.90s; }
.fb-sample-wave span:nth-child(11) { height: 75%; animation-delay: 1.00s; }
.fb-sample-wave span:nth-child(12) { height: 40%; animation-delay: 1.10s; }
.fb-sample-wave span:nth-child(n+13) { height: 60%; animation-delay: 1.20s; }
@keyframes fb-wave {
  0%, 100% { transform: scaleY(0.6); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 0.85; }
}
.fb-sample-duration {
  font-size: 0.78rem;
  color: var(--fb-text-soft);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- Intro video ---------- */
.fb-intro-video {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: var(--fb-radius-lg);
  overflow: hidden;
  box-shadow: var(--fb-shadow-lg);
  border: 1px solid var(--fb-line);
  background: #000;
}
.fb-intro-video-player {
  display: block;
  width: 100%;
  border-radius: var(--fb-radius-lg);
}
.fb-intro-video-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at top left, rgba(212, 175, 111, 0.35), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(123, 92, 255, 0.35), transparent 55%),
    linear-gradient(135deg, #0a0717 0%, #1a0e36 50%, #2b1957 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}
.fb-intro-video-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.fb-intro-video-play {
  position: relative;
  z-index: 1;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6c98a, #c9a25c);
  color: #2a1c08;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
  box-shadow:
    0 12px 32px rgba(184, 146, 78, 0.5),
    0 0 0 8px rgba(212, 175, 111, 0.15);
  opacity: 0.9;
  animation: fb-intro-pulse 2.4s ease-in-out infinite;
}
.fb-intro-video-play svg { width: 2rem; height: 2rem; padding-right: 0.25rem; }
@keyframes fb-intro-pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(184, 146, 78, 0.5), 0 0 0 8px rgba(212, 175, 111, 0.15); }
  50% { box-shadow: 0 12px 32px rgba(184, 146, 78, 0.5), 0 0 0 16px rgba(212, 175, 111, 0); }
}
.fb-intro-video-meta {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.fb-intro-video-label {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #f5d796;
}
.fb-intro-video-coming {
  font-size: 0.82rem;
  margin: 0;
  color: #d4cfe6;
}

/* ---------- Curriculum ---------- */
.fb-curriculum {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.fb-curriculum-group {
  background: #fff;
  border: 1px solid var(--fb-line);
  border-radius: var(--fb-radius);
  box-shadow: var(--fb-shadow-sm);
  overflow: hidden;
}
.fb-curriculum-summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.18s;
}
.fb-curriculum-summary::-webkit-details-marker { display: none; }
.fb-curriculum-summary:hover { background: var(--fb-primary-soft); }
.fb-curriculum-title { display: flex; align-items: center; gap: 1rem; }
.fb-curriculum-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.fb-curriculum-name { font-size: 1.05rem; font-weight: 700; margin: 0 0 0.2rem; color: var(--fb-text); }
.fb-curriculum-count { font-size: 0.82rem; color: var(--fb-text-muted); margin: 0; font-weight: 600; }
.fb-curriculum-chevron {
  width: 1.6rem; height: 1.6rem;
  flex-shrink: 0;
  color: var(--fb-primary);
}
.fb-curriculum-chevron svg { width: 1rem; height: 1rem; }
.fb-curriculum-group[open] .fb-curriculum-chevron { transform: rotate(180deg); }
.fb-curriculum-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.5rem 1.5rem;
  counter-reset: fb-lesson;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--fb-line-soft);
}
.fb-curriculum-lesson {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: #fbfaff;
  border-radius: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--fb-text);
}
.fb-curriculum-lesson-num {
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--fb-primary);
  font-weight: 700;
  background: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--fb-primary-soft);
  margin-top: 0.1rem;
}
.fb-curriculum-lesson-title { flex: 1; }

/* ---------- Steps ---------- */
.fb-section--steps {
  background: linear-gradient(180deg, var(--fb-bg) 0%, var(--fb-bg-soft) 100%);
}
.fb-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: fb-step;
}
@media (min-width: 800px) {
  .fb-steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
  .fb-steps::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    right: 12%;
    left: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--fb-primary), var(--fb-primary) 4px, transparent 4px, transparent 10px);
    z-index: 0;
  }
}
.fb-step {
  background: #fff;
  border-radius: var(--fb-radius);
  padding: 2rem 1.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--fb-shadow);
  position: relative;
  z-index: 1;
  border: 1px solid var(--fb-line);
}
.fb-step-num {
  width: 3.5rem; height: 3.5rem;
  margin: -3.75rem auto 1.25rem;
  background: linear-gradient(135deg, var(--fb-accent), var(--fb-accent-deep));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(184, 146, 78, 0.4);
  border: 4px solid #fff;
}
.fb-step-title {
  font-size: 1.05rem; font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--fb-text);
}
.fb-step-text {
  font-size: 0.9rem;
  color: var(--fb-text-muted);
  line-height: 1.85;
  margin: 0;
}
.fb-steps-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--fb-text-soft);
  margin: 2.5rem 0 0;
}

/* ---------- Pricing ---------- */
.fb-section--pricing {
  background:
    linear-gradient(180deg, var(--fb-bg) 0%, #f5f1ff 100%),
    radial-gradient(circle at top right, rgba(212, 175, 111, 0.08), transparent 60%);
}
.fb-pricing-empty {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: center;
  background: #fff;
  border-radius: var(--fb-radius);
  border: 1px dashed var(--fb-line);
  color: var(--fb-text-muted);
}
.fb-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 68rem;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .fb-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.fb-price-card {
  background: #fff;
  border-radius: var(--fb-radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--fb-shadow);
  border: 1.5px solid var(--fb-line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.fb-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fb-shadow-lg);
}
.fb-price-card--featured {
  background: linear-gradient(155deg, #1a1130 0%, #2c1a55 50%, #432086 100%);
  color: #fff;
  border: 2px solid var(--fb-accent);
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(67, 32, 134, 0.3), 0 0 0 1px rgba(212, 175, 111, 0.25) inset;
}
.fb-price-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}
@media (max-width: 880px) {
  .fb-price-card--featured { transform: none; }
  .fb-price-card--featured:hover { transform: translateY(-4px); }
}
.fb-price-badge {
  position: absolute;
  top: -1rem; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e6c98a, #b8924e);
  color: #2a1c08;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(184, 146, 78, 0.35);
}
.fb-price-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
}
.fb-price-card--featured .fb-price-name { color: #f5d796; }
.fb-price-duration {
  font-size: 0.9rem;
  color: var(--fb-text-muted);
  margin: 0 0 1.5rem;
}
.fb-price-card--featured .fb-price-duration { color: #b9b1d8; }
.fb-price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}
.fb-price-value {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fb-text);
  line-height: 1;
}
.fb-price-card--featured .fb-price-value {
  background: linear-gradient(120deg, #fff 0%, #f5d796 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fb-price-currency {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fb-text-muted);
}
.fb-price-card--featured .fb-price-currency { color: #d4cfe6; }
.fb-price-permonth {
  font-size: 0.85rem;
  color: var(--fb-text-soft);
  margin: 0 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--fb-line);
}
.fb-price-permonth--empty { font-style: italic; }
.fb-price-card--featured .fb-price-permonth {
  color: #aea7cc;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.fb-price-permonth strong { color: var(--fb-primary); }
.fb-price-card--featured .fb-price-permonth strong { color: #f5d796; }
.fb-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.fb-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fb-text);
}
.fb-price-card--featured .fb-price-features li { color: #ece9f5; }
.fb-price-check {
  flex-shrink: 0;
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: var(--fb-primary-soft);
  color: var(--fb-primary);
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.15rem;
}
.fb-price-check svg { width: 0.8rem; height: 0.8rem; }
.fb-price-card--featured .fb-price-check {
  background: rgba(212, 175, 111, 0.2);
  color: #f5d796;
}
.fb-price-buy { width: 100%; }

.fb-price-secondary {
  font-size: 0.85rem;
  color: var(--fb-text-muted);
  margin: 0 0 1rem;
  letter-spacing: 0;
}
.fb-price-card--featured .fb-price-secondary { color: #c9c2e0; }
.fb-price-secondary strong {
  font-weight: 700;
  color: var(--fb-text);
}
.fb-price-card--featured .fb-price-secondary strong { color: #f5d796; }

.fb-paymode-switch {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto 2.5rem;
  max-width: 56rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(123, 92, 255, 0.08), rgba(212, 175, 111, 0.08));
  border: 1px dashed rgba(123, 92, 255, 0.35);
  border-radius: 1rem;
  text-decoration: none;
  color: var(--fb-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.fb-paymode-switch:hover,
.fb-paymode-switch:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(123, 92, 255, 0.6);
  box-shadow: 0 6px 22px rgba(123, 92, 255, 0.12);
}
.fb-paymode-switch-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  background: rgba(123, 92, 255, 0.12);
  color: var(--fb-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-paymode-switch-icon svg { width: 1.25rem; height: 1.25rem; }
.fb-paymode-switch-body {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fb-text);
}
.fb-paymode-switch-body strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--fb-text);
}
.fb-paymode-switch-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  background: var(--fb-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.fb-paymode-switch-cta svg { width: 0.9rem; height: 0.9rem; }
@media (max-width: 640px) {
  .fb-paymode-switch {
    flex-direction: column;
    align-items: stretch;
    text-align: start;
  }
  .fb-paymode-switch-cta {
    align-self: flex-start;
  }
}

.fb-pricing-guarantees {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 60rem;
  margin-inline: auto;
}
.fb-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--fb-radius);
  border: 1px solid var(--fb-line);
}
.fb-guarantee-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.8rem;
  background: var(--fb-accent-soft);
  color: var(--fb-accent-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fb-guarantee-icon svg { width: 1.25rem; height: 1.25rem; }
.fb-guarantee-title { font-size: 0.95rem; font-weight: 700; margin: 0 0 0.2rem; color: var(--fb-text); }
.fb-guarantee-text { font-size: 0.82rem; color: var(--fb-text-muted); margin: 0; line-height: 1.6; }

/* ---------- Testimonials ---------- */
.fb-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .fb-testimonials { grid-template-columns: repeat(3, 1fr); }
}
.fb-testimonial {
  position: relative;
  background: #fff;
  border-radius: var(--fb-radius);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--fb-shadow-sm);
  border: 1px solid var(--fb-line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.fb-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--fb-shadow);
}
.fb-testimonial-quote {
  position: absolute;
  top: -1rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fb-accent), var(--fb-accent-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(184, 146, 78, 0.3);
}
.fb-testimonial-quote svg { width: 1.1rem; height: 1.1rem; }
.fb-testimonial-text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--fb-text);
  margin: 0 0 1.5rem;
  flex: 1;
}
.fb-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--fb-line);
}
.fb-testimonial-avatar {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}
.fb-testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
  color: var(--fb-text);
}
.fb-testimonial-role {
  font-size: 0.78rem;
  color: var(--fb-text-muted);
  margin: 0;
}

/* ---------- FAQ ---------- */
.fb-faq-wrap { max-width: 50rem; }
.fb-faq {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.fb-faq-item {
  background: #fff;
  border-radius: var(--fb-radius);
  border: 1px solid var(--fb-line);
  box-shadow: var(--fb-shadow-sm);
  overflow: hidden;
}
.fb-faq-summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  color: var(--fb-text);
  transition: background 0.18s;
}
.fb-faq-summary::-webkit-details-marker { display: none; }
.fb-faq-summary:hover { background: var(--fb-primary-soft); }
.fb-faq-q { font-size: 1rem; line-height: 1.6; }
.fb-faq-chevron {
  width: 1.6rem; height: 1.6rem;
  flex-shrink: 0;
  color: var(--fb-primary);
}
.fb-faq-chevron svg { width: 1rem; height: 1rem; }
.fb-faq-item[open] .fb-faq-chevron { transform: rotate(180deg); }
.fb-faq-a {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--fb-text-muted);
  border-top: 1px solid var(--fb-line-soft);
  padding-top: 1rem;
}

/* ---------- Final CTA ---------- */
.fb-final-cta {
  background: linear-gradient(150deg, #0a0717 0%, #2b1957 50%, #432086 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.fb-final-cta::before {
  content: '';
  position: absolute;
  width: 30rem; height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, #d4af6f 0%, transparent 60%);
  top: -10rem; left: -10rem;
  opacity: 0.3;
  filter: blur(60px);
}
.fb-final-cta::after {
  content: '';
  position: absolute;
  width: 30rem; height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, #7b5cff 0%, transparent 60%);
  bottom: -10rem; right: -10rem;
  opacity: 0.3;
  filter: blur(60px);
}
.fb-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}
.fb-final-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  color: #fff;
}
.fb-final-sub {
  font-size: 1.1rem;
  line-height: 2;
  color: #d4cfe6;
  margin: 0 0 2.25rem;
}
.fb-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- Sticky mobile CTA ---------- */
.fb-sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 40;
}
.fb-sticky-cta[hidden] { display: none; }
.fb-sticky-link {
  display: block;
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(135deg, #e6c98a 0%, #c9a25c 100%);
  color: #2a1c08;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(184, 146, 78, 0.45);
}
@media (min-width: 700px) {
  .fb-sticky-cta { display: none; }
}
