*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose: #E8587A;
  --rose-light: #FCE4EB;
  --rose-dark: #C03060;
  --blush: #FDF0F4;
  --cream: #FDFAF8;
  --plum: #2D1A2E;
  --plum-mid: #5A3560;
  --text: #2D1A2E;
  --text-muted: #7A5F7E;
  --text-light: #B09AB5;
  --gold: #D4A843;
  --gold-light: #FBF3E0;
  --white: #FFFFFF;
  --border: rgba(232, 88, 122, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #2D1A2E 0%, #5A3560 50%, #2D1A2E 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 24px 96px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,88,122,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212,168,67,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,88,122,0.2);
  border: 1px solid rgba(232,88,122,0.4);
  color: #F9A8BE;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 5.5vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: italic;
  color: #F9A8BE;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.hero-img-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 32px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(232,88,122,0.4);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,88,122,0.5);
}

.hero-guarantee {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* ─── WAVE ─── */
.wave {
  display: block;
  width: 100%;
  height: 60px;
  background: var(--blush);
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-top: -2px;
}

/* ─── SECTIONS ─── */
.section {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.section-full { padding: 80px 24px; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--plum);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--rose);
}

.section-body {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ─── DOR ─── */
.pain-section {
  background: var(--blush);
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 40px auto 0;
}

.pain-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: left;
}

.pain-icon {
  width: 40px;
  height: 40px;
  background: var(--rose-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.pain-icon svg { width: 20px; height: 20px; }

.pain-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 6px;
}

.pain-card p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── TRANSFORMAÇÃO ─── */
.transform-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.transform-visual {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 100%);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.transform-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,88,122,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.transform-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.transform-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.transform-amount sup {
  font-size: 1.4rem;
  font-weight: 400;
  vertical-align: super;
}

.transform-period {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.transform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 100px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg { width: 12px; height: 12px; }

/* ─── MÉTODO ─── */
.method-section {
  background: var(--plum);
  padding: 80px 24px;
  text-align: center;
}

.method-section .section-label { color: #F9A8BE; }
.method-section .section-title { color: white; }
.method-section .section-body { color: rgba(255,255,255,0.6); margin: 0 auto; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 48px auto 0;
}

.method-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: attr(data-num);
  position: absolute;
  top: -10px; right: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(232,88,122,0.12);
  line-height: 1;
  pointer-events: none;
}

.method-tag {
  display: inline-block;
  background: rgba(232,88,122,0.2);
  color: #F9A8BE;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.method-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.method-card p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ─── CARROSSEL ─── */
.carousel {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

/* Gallery: 2 por tela no mobile, 4 no desktop */
.gallery-carousel .carousel-slide {
  width: calc(50% - 6px);
  min-width: calc(50% - 6px);
}

/* Depoimentos: 1 por tela no mobile */
.dep-carousel .carousel-slide {
  width: calc(100% - 0px);
  min-width: calc(100% - 0px);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.carousel-btn:hover svg { stroke: white; }

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--plum);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}

.carousel-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--rose);
}

/* Carrossel sobre fundo escuro */
.dep-carousel + .carousel-controls .carousel-btn {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.dep-carousel + .carousel-controls .carousel-btn svg { stroke: white; }
.dep-carousel + .carousel-controls .carousel-btn:hover { background: var(--rose); border-color: var(--rose); }
.dep-carousel + .carousel-controls .carousel-dot { background: rgba(255,255,255,0.25); }
.dep-carousel + .carousel-controls .carousel-dot.active { background: var(--rose); }

/* ─── GALERIA ─── */
.gallery-section {
  background: var(--cream);
  padding: 80px 24px;
  text-align: center;
}

.gallery-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--blush);
  width: 100%;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-img:hover img { transform: scale(1.05); }

/* ─── PROVA SOCIAL ─── */
.social-section {
  background: var(--blush);
  padding: 80px 24px;
  text-align: center;
}

.dep-img-card {
  border-radius: 14px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  width: 100%;
}

.dep-img-card img {
  width: 100%;
  height: auto;
  display: block;
}

.social-prints {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: 32px;
  padding-bottom: 4px;
}

.social-prints::-webkit-scrollbar { display: none; }

.social-prints img {
  border-radius: 12px;
  border: 1px solid var(--border);
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 85%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

/* ─── CURRÍCULO ─── */
.curriculum-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}

.module-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  background: white;
  transition: border-color 0.2s;
}

.module-card:hover { border-color: rgba(232,88,122,0.35); }

.module-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.module-header--bonus {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.module-num {
  width: 30px;
  height: 30px;
  background: var(--rose-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--rose);
  flex-shrink: 0;
}

.module-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--plum);
}

.module-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

.bonus-tag {
  display: inline-block;
  background: var(--gold-light);
  color: #8A6A10;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.course-preview {
  margin: 32px auto;
  max-width: 700px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(45,26,46,0.08);
}

.course-preview img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── COMPARATIVO ─── */
.compare-section {
  background: var(--blush);
  padding: 80px 24px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 40px auto 0;
}

.compare-col {
  border-radius: 20px;
  overflow: hidden;
}

.compare-header {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.compare-col.bad .compare-header {
  background: #f0f0f0;
  color: #888;
}

.compare-col.good .compare-header {
  background: var(--rose);
  color: white;
}

.compare-items {
  background: white;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 20px 20px;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 13px;
  font-weight: 400;
}

.compare-item:last-child { border-bottom: none; }

.compare-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.compare-col.bad .compare-dot { background: #f5f5f5; }
.compare-col.bad .compare-dot::after { content: ''; width: 8px; height: 2px; background: #ccc; border-radius: 2px; display: block; }
.compare-col.good .compare-dot { background: var(--rose-light); }

.compare-col.bad .compare-item { color: #999; }
.compare-col.good .compare-item { color: var(--text-muted); }

/* ─── BÔNUS ─── */
.bonus-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 40px auto 0;
  max-width: 640px;
  text-align: left;
}

.bonus-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bonus-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gold-light);
  border: 1px solid rgba(212,168,67,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.bonus-info { flex: 1; min-width: 0; }

.bonus-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 2px;
}

.bonus-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.bonus-price {
  text-align: right;
  flex-shrink: 0;
}

.bonus-original {
  font-size: 11px;
  color: var(--text-light);
  text-decoration: line-through;
}

.bonus-free {
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
}

.bonus-total {
  margin-top: 28px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.bonus-total strong {
  font-weight: 700;
  color: var(--plum);
}

/* ─── PREÇO ─── */
.pricing-section {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,88,122,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-section .section-label { color: #F9A8BE; }
.pricing-section .section-title { color: white; margin-bottom: 40px; }

.price-card {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.price-original {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-current {
  font-family: 'Poppins', sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
}

.price-current sup {
  font-size: 1.5rem;
  font-weight: 400;
  vertical-align: super;
}

.price-installment {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
}

.feature-dot {
  width: 18px;
  height: 18px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-dot svg { width: 10px; height: 10px; }

.btn-buy {
  display: block;
  background: var(--rose);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 18px;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(232,88,122,0.35);
  transition: all 0.2s;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-buy:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.guarantee-box {
  margin-top: 20px;
  padding: 14px;
  background: var(--blush);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.guarantee-icon {
  width: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-text { font-size: 12px; font-weight: 400; color: var(--text-muted); line-height: 1.5; }
.guarantee-text strong { color: var(--plum); font-weight: 700; }

/* ─── BIO ─── */
.bio-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.bio-visual {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.bio-visual-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.bio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(45,26,46,0.92));
  padding: 32px 20px 20px;
}

.bio-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.bio-num-card {
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.bio-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.bio-num-label {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--blush);
  padding: 80px 24px;
}

.faq-list {
  max-width: 680px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--plum);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-toggle {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-toggle svg { width: 10px; height: 10px; }

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--rose);
  padding: 80px 24px;
  text-align: center;
}

.final-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: white;
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.2;
}

.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 32px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--rose);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  min-height: 56px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ─── FOOTER ─── */
footer {
  background: var(--plum);
  padding: 28px 24px;
  text-align: center;
}

footer p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
}

footer a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}

.text-center { text-align: center; }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
════════════════════════════════════════ */
@media (max-width: 900px) {
  .gallery-carousel .carousel-slide { width: calc(50% - 6px); min-width: calc(50% - 6px); }
  .dep-carousel .carousel-slide { width: calc(50% - 6px); min-width: calc(50% - 6px); }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (max 600px)
════════════════════════════════════════ */
@media (max-width: 600px) {

  /* Hero */
  .hero { padding: 48px 20px 64px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats { gap: 20px; margin-top: 40px; }
  .hero-stat-num { font-size: 1.5rem; }
  .stat-divider { display: none; }
  .btn-primary { width: 100%; max-width: 360px; padding: 16px 24px; }

  /* Wave */
  .wave { height: 40px; }

  /* Sections */
  .section-full { padding: 56px 20px; }
  .section { padding: 56px 20px; }
  .section-title { font-size: 1.5rem; }
  .section-body { font-size: 0.95rem; }

  /* Pain */
  .pain-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }

  /* Transform */
  .transform-section { grid-template-columns: 1fr; gap: 32px; padding: 56px 20px; }
  .transform-amount { font-size: 2.6rem; }

  /* Method */
  .method-section { padding: 56px 20px; }
  .method-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }

  /* Gallery */
  .gallery-section { padding: 56px 20px; }
  .gallery-carousel .carousel-slide { width: calc(50% - 6px); min-width: calc(50% - 6px); }

  /* Social */
  .social-section { padding: 56px 20px; }
  .dep-carousel .carousel-slide { width: calc(100% - 0px); min-width: calc(100% - 0px); }
  .social-prints img { width: 80%; }

  /* Curriculum */
  .curriculum-section { padding: 56px 20px; }
  .curriculum-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }

  /* Compare */
  .compare-section { padding: 56px 20px; }
  .compare-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }

  /* Bonus */
  .bonus-section { padding: 56px 20px; }
  .bonus-item { flex-wrap: wrap; }
  .bonus-price { margin-left: auto; }

  /* Pricing */
  .pricing-section { padding: 56px 20px; }
  .price-card { padding: 28px 20px; }
  .price-current { font-size: 3rem; }
  .btn-buy { font-size: 0.95rem; }

  /* Bio */
  .bio-section { grid-template-columns: 1fr; gap: 28px; padding: 56px 20px; }
  .bio-visual-img { aspect-ratio: 3/4; }

  /* FAQ */
  .faq-section { padding: 56px 20px; }

  /* Final CTA */
  .final-cta { padding: 56px 20px; }
  .final-cta h2 { font-size: 1.5rem; }
  .btn-white { width: 100%; max-width: 360px; padding: 16px 24px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — DESKTOP (min 900px)
════════════════════════════════════════ */
@media (min-width: 900px) {
  .gallery-carousel .carousel-slide { width: calc(25% - 9px); min-width: calc(25% - 9px); }
  .dep-carousel .carousel-slide { width: calc(33.333% - 8px); min-width: calc(33.333% - 8px); }
}
