/* ── BADGE ── */
.badge {
  display: flex;
  justify-content: center;
  padding: 32px 0 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ── HEADLINE ── */
.headline-section {
  text-align: center;
  padding: 8px 0 0;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.25s;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 20px;
  font-weight: 400;
}

.headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 10px;
}

.headline em {
  font-style: italic;
  color: var(--accent);
}

.headline-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  margin: 20px auto;
  border-radius: 2px;
}

.subheadline {
  font-size: clamp(15px, 3.5vw, 18px);
  color: var(--text-soft);
  line-height: 1.65;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

.subheadline strong {
  color: var(--text);
  font-weight: 500;
}

/* ── IMAGE ── */
.image-section {
  margin: 36px 0 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.45s;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #E8D5B0 0%, #F5E6CC 50%, #EDD9B8 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
}

.image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,18,8,0.35) 100%);
  z-index: 1;
}

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

.image-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  font-style: italic;
}

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0 0 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.6s;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 400;
}

.trust-icon {
  font-size: 14px;
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.75s;
}

.quiz-intro {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 20px;
  line-height: 1.6;
}

.quiz-intro span {
  display: inline-block;
  background: var(--gold-light);
  color: var(--accent);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #C9A96E 0%, #B8860B 100%);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 20px 48px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(184,134,11,0.35), 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  min-height: 48px;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-cta:hover::before { left: 100%; }

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,134,11,0.45), 0 4px 12px rgba(0,0,0,0.12);
}

.btn-cta:active { transform: translateY(0); }

.btn-arrow {
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-cta:hover .btn-arrow { transform: translateX(4px); }

.btn-sub {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── SOCIAL PROOF ── */
.social-proof {
  margin-top: 44px;
  padding: 28px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.9s;
}

.proof-header {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 20px;
  font-weight: 500;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.av1 { background: linear-gradient(135deg, #C9A96E, #B8860B); }
.av2 { background: linear-gradient(135deg, #D4A5A5, #C07070); }
.av3 { background: linear-gradient(135deg, #A5C4D4, #7090C0); }

.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.testimonial-age {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 400;
}

.testimonial-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
  margin-top: 4px;
}

.stars {
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 2px;
  letter-spacing: 1px;
}

/* ── BOTTOM NOTE ── */
.bottom-note {
  text-align: center;
  margin-top: 32px;
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.05s;
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  .trust-strip { gap: 14px; }
  .btn-cta { padding: 18px 32px; font-size: 16px; }
  .social-proof { padding: 20px; }
}
