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

:root {
  --bg: #F8F6F3;
  --card-bg: #FFFFFF;
  --card-border: #E8E4DF;
  --brand: #f9105b;
  --brand-hover: #d90d4e;
  --brand-glow: rgba(249,16,91,0.08);
  --white: #ffffff;
  --text: #1E293B;
  --text-secondary: #334155;
  --gray: #94A3B8;
  --light-gray: #94A3B8;
  --dark-gray: #F1EDE8;
  --green: #10b981;
  --font: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============= HEADER ============= */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 20px;
  position: relative;
  z-index: 100;
  background: var(--bg);
}

.back-btn {
  position: absolute;
  left: 16px;
  background: rgba(0,0,0,0.05);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.back-btn:hover { background: rgba(0,0,0,0.1); }
.back-btn svg path { stroke: var(--text); }

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1px;
}

.logo-hiit {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
}

.logo-louv {
  color: var(--brand);
  padding-left: 4px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
}

.header-right {
  position: absolute;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* ============= PROGRESS BAR ============= */
.progress-container {
  padding: 0 20px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
}

.progress-bar {
  flex: 1;
  height: 3px;
  background: #E0DCD7;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0%;
}

.progress-text {
  font-size: 13px;
  color: var(--gray);
  min-width: 35px;
  text-align: right;
}

/* ============= MAIN ============= */
.main {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px 120px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-content {
  animation: slideIn 0.3s ease;
}

/* ============= LANDING PAGE ============= */
/* Landing v3 — gancho louvor + fé */
.landing-v3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px 40px;
  gap: 0;
}

/* Brand Title */
.landing-brand-title {
  font-size: 23px;
  font-weight: 900;
  color: var(--brand);
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
  margin-top: 28px;
  margin-bottom: 20px;
}

/* Social proof badge */
.landing-social {
  width: 100%;
  background: #fff0f5;
  border: 1px solid #ffd6e5;
  border-radius: 16px;
  padding: 14px 16px;
  text-align: left;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.landing-social-number {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 28px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1.15;
}

.landing-social-check {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.landing-social-text {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.45;
}

/* Objection badge */
.landing-objection-badge {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50px;
  padding: 5px 12px;
  margin-bottom: 32px;
}

/* Counter */
.landing-counter {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
}

.landing-counter span {
  color: var(--text-secondary);
  font-weight: 700;
}

/* CTA button */
.landing-cta {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.3px;
  white-space: nowrap;
  animation: btnPulse 2.2s ease-in-out infinite;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(249, 16, 91, 0.35);
}

.landing-cta:hover {
  background: var(--brand-hover);
  transform: scale(1.02);
  animation: none;
}

.age-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--card-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.age-card:hover {
  transform: scale(1.02);
  border-color: var(--brand);
}

/* ============= QUIZ HEADING ============= */
.quiz-heading {
  text-align: center;
  font-size: clamp(20px, 6vw, 26px);
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  margin: 20px 0 12px;
  color: var(--text);
  text-wrap: balance;
}

.quiz-subheading {
  text-align: center;
  color: #1E293B;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
  opacity: 0.75;
}

/* ============= IMAGE CARDS (body type) ============= */
.image-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.image-cards.vertical {
  flex-direction: column;
}

.image-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 2px solid var(--card-border);
  padding: 0 0 0 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.image-card:hover {
  border-color: var(--brand);
  transform: scale(1.01);
}

.image-card-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.image-card-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;
}

.image-card-img img.image-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============= OPTIONS (single select) ============= */
.option-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.option-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  border: 2px solid var(--card-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.option-item:hover {
  border-color: var(--brand);
}

.option-item.selected {
  border-color: var(--brand);
  background: var(--brand-glow);
}

.option-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.option-content {
  flex: 1;
}

.option-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.option-desc {
  font-size: 12px;
  color: #475569;
  margin-top: 2px;
}

/* ============= CHECKBOX (multi-select) ============= */
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.checkbox-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  border: 2px solid var(--card-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.checkbox-item:hover {
  border-color: var(--brand);
}

.checkbox-item.selected {
  border-color: var(--brand);
  background: var(--brand-glow);
}

.checkbox-item.selected .checkbox-box {
  background: var(--brand);
  border-color: var(--brand);
}

.checkbox-content {
  flex: 1;
}

.checkbox-box {
  width: 22px;
  height: 22px;
  border: 2px solid #CBD5E1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.checkbox-box svg {
  opacity: 0;
  transition: opacity 0.2s;
}

.checkbox-item.selected .checkbox-box svg {
  opacity: 1;
}

/* ============= TEXT BUTTON ============= */
.text-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  padding: 12px;
  text-decoration: underline;
  display: block;
  margin: 8px auto;
}

/* ============= CONTINUE BUTTON ============= */
.continue-btn {
  display: block;
  width: 100%;
  margin: 24px auto 0;
  padding: 18px 24px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.3px;
  animation: btnPulse 2.2s ease-in-out infinite;
  transition: background 0.2s, transform 0.15s;
}

.continue-btn:hover {
  background: var(--brand-hover);
  transform: scale(1.02);
  animation: none;
}

.continue-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  animation: none;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,16,91,0.5); transform: scale(1); }
  50%       { box-shadow: 0 0 0 10px rgba(249,16,91,0); transform: scale(1.015); }
}

/* ============= FEEDBACK BANNER ============= */
.feedback-banner {
  background: var(--brand-glow);
  border: 1px solid var(--brand);
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
  animation: fadeIn 0.3s ease;
}

.feedback-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.feedback-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============= PROBLEM AREAS ============= */
.problem-areas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.problem-body-img {
  position: relative;
  width: 45%;
  flex-shrink: 0;
}

.body-photo {
  width: 100%;
  border-radius: 12px;
}

.body-svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.body-svg-overlay path {
  fill: rgba(249,16,91,0.0);
  stroke: transparent;
  stroke-width: 2;
  cursor: pointer;
  transition: fill 0.3s;
}

.body-svg-overlay path:hover {
  fill: rgba(249,16,91,0.15);
}

.body-svg-overlay path.active {
  fill: rgba(249,16,91,0.35);
  stroke: var(--brand);
}

.problem-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.problem-btn {
  background: var(--card-bg);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font);
}

.problem-btn:hover { border-color: var(--brand); }

.problem-btn.selected {
  border-color: var(--brand);
  background: var(--brand-glow);
  color: var(--brand);
}

/* ============= INFO PAGE ============= */
.info-page {
  text-align: center;
  padding: 30px 0;
}

.info-image {
  font-size: 60px;
  margin-bottom: 16px;
}

.info-stat {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.info-text {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 12px;
}

.info-note {
  font-size: 11px;
  color: #666;
  margin-top: 16px;
  font-style: italic;
}

/* ============= INFO GRAPH (results projection) ============= */
.results-graph {
  margin: 20px 0;
}

.graph-container {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px 16px;
}

.graph-area {
  position: relative;
}

.graph-svg {
  width: 100%;
  height: auto;
}

.graph-labels-x {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px 0;
  font-size: 11px;
  color: var(--text-secondary);
}

.graph-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 12px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ============= LEVELS INFO (cortisol chart) ============= */
.levels-chart {
  position: relative;
  height: 200px;
  margin: 20px 0;
  padding: 0 10px;
}

.levels-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100%;
  padding-bottom: 30px;
}

.levels-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-width: 20px;
}

.levels-labels {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
}

.level-label {
  font-size: 11px;
}

.level-label.cortisol { color: var(--text); }
.level-label.testosterone { color: var(--brand); }

/* ============= SLEEP INFO ============= */
.sleep-gauge {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.gauge-circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 700;
  color: var(--brand);
}

.sleep-bars {
  margin: 20px 0;
}

.sleep-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.sleep-bar-label {
  font-size: 13px;
  color: var(--text-secondary);
  min-width: 90px;
  text-align: right;
}

.sleep-bar-track {
  flex: 1;
  height: 8px;
  background: #E0DCD7;
  border-radius: 4px;
  overflow: hidden;
}

.sleep-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease;
}

.sleep-section-title {
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0 8px;
  text-align: left;
}

/* ============= INPUT ============= */
.input-container {
  padding: 20px 0;
}

.quiz-input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid #CBD5E1;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.3s;
  margin-top: 16px;
}

.quiz-input:focus {
  border-bottom-color: var(--brand);
}

.quiz-input::placeholder {
  color: #94A3B8;
}

.unit-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  justify-content: center;
}

.unit-btn {
  background: var(--card-bg);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.2s;
}

.unit-btn.active {
  border-color: var(--brand);
  color: var(--brand);
}

/* ============= DUAL INPUT ============= */
.dual-field {
  margin-top: 20px;
}

.dual-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============= INPUT WITH BANNER (account creation) ============= */
.account-banner {
  background: var(--brand-glow);
  border: 1px solid var(--brand);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 16px;
}

.account-banner-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.account-banner-sub {
  font-size: 13px;
  color: var(--text-secondary);
}

.account-substep {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 10px;
  margin-top: 8px;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 12px;
}

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

/* ============= TINDER (like/dislike) ============= */
.tinder-counter {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.tinder-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.tinder-cards-stack {
  position: relative;
  width: 260px;
  height: 280px;
}

.tinder-card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--card-border);
}

.tinder-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--card-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 2;
}

.tinder-image {
  font-size: 80px;
  margin-bottom: 16px;
}

.tinder-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  padding: 0 16px;
}

.tinder-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.tinder-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--card-bg);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  font-family: var(--font);
  color: var(--text);
  font-size: 12px;
}

.tinder-btn:hover { border-color: var(--brand); transform: scale(1.05); }
.tinder-btn-icon { font-size: 24px; }

/* ============= LIKERT SCALE ============= */
.likert-container {
  margin-top: 20px;
  text-align: center;
}

.likert-statement {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 12px;
  font-style: italic;
}

.likert-scale {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}

.likert-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: var(--font);
}

.likert-btn:hover {
  border-color: var(--brand);
  transform: scale(1.1);
}

.likert-btn.selected {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  transform: scale(1.15);
}

.likert-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* ============= FITNESS AGE ============= */
.fitness-age-loading {
  text-align: center;
  padding: 60px 0;
}

.fitness-age-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #E0DCD7;
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

.fitness-age-result {
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.fitness-age-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand);
  margin: 16px 0;
}

.fitness-age-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.fitness-age-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.fitness-age-label {
  font-size: 12px;
  color: var(--text-secondary);
}

.fitness-age-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.fitness-age-col.danger .fitness-age-num {
  color: var(--brand);
}

.fitness-age-vs {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============= LOADING ============= */
.loading-spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  border: 4px solid #E0DCD7;
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-item {
  margin-bottom: 16px;
}

.loading-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
}

.loading-pct {
  color: var(--brand);
  font-weight: 600;
}

.loading-track {
  height: 4px;
  background: #E0DCD7;
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s;
}

/* ============= TRANSFORMATION PLAN CARD ============= */
.transformation-plan-card {
  background: var(--card-bg);
  border: 1.5px solid var(--brand);
  border-radius: 16px;
  padding: 20px 18px;
  margin: 20px 0 16px;
  text-align: left;
}

.transformation-plan-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.transformation-plan-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
}

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

.tp-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.transformation-plan-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tp-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tp-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.social-proof-line {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #92400E;
  margin-top: 4px;
  text-align: left;
}

/* ============= SLIDER (fat level) ============= */
.slider-container {
  text-align: center;
  padding: 20px 0;
}

.slider-body-image {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.fat-level-img {
  width: 260px;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.slider-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px;
}

.range-slider {
  padding: 0 10px;
}

.range-slider input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--brand) var(--val, 50%), #E0DCD7 var(--val, 50%));
  border-radius: 3px;
  outline: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  cursor: pointer;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--brand);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* ============= CHART (weight projection) ============= */
.chart-container {
  text-align: center;
  padding: 20px 0;
}

.chart-date {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--brand);
  margin: 8px 0 20px;
}

.chart-visual {
  margin: 20px 0;
}

.chart-svg-wrap {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px 10px;
}

/* ============= GRID (duration) ============= */
.grid-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.grid-option {
  background: var(--card-bg);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
  text-align: center;
}

.grid-option:hover {
  border-color: var(--brand);
}

.grid-option .option-icon {
  font-size: 28px;
}

.grid-option .option-title {
  font-size: 14px;
  font-weight: 500;
}

/* ============= TAGS (food preferences) ============= */
.tags-section {
  margin-top: 16px;
}

.tags-category {
  margin-bottom: 20px;
}

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

.tags-category-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.tags-category-optional {
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--card-bg);
  padding: 2px 8px;
  border-radius: 10px;
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--card-bg);
  border: 2px solid var(--brand);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tag.selected,
.tag:not(.selected) {
  background: var(--brand);
  color: var(--white);
}

.tag:not(.selected) {
  background: transparent;
  color: var(--brand);
}

/* ============= YES/NO BUTTONS ============= */
.yes-no-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.yes-no-btn {
  flex: 1;
  max-width: 200px;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: transform 0.15s;
}

.yes-no-btn:hover { transform: scale(1.03); }

.yes-no-btn.no {
  background: var(--card-bg);
  color: var(--text);
}

.yes-no-btn.yes {
  background: var(--brand);
  color: var(--white);
}

/* ============= HALFWAY ============= */
.halfway-badge {
  display: inline-block;
  background: var(--brand-glow);
  border: 1px solid var(--brand);
  color: var(--brand);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.halfway-icon {
  font-size: 60px;
  margin-bottom: 16px;
}

/* ============= HEALTH LIST ============= */
.health-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.health-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--card-border);
}

.health-list li::before {
  content: '• ';
  color: var(--brand);
  font-weight: bold;
}

/* ============= GAUGE SMALL (info-yes-no) ============= */
.gauge-circle-small {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.gauge-value-small {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
}

/* ============= PAYWALL (O Altar) ============= */
.paywall {
  padding-bottom: 40px;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #1E293B;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 280px;
}
.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.cta-urgency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff5f8;
  border: 1px solid rgba(249,16,91,0.15);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.cta-urgency-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.timer-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
}

/* Pricing Cards */
.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}

.pricing-card:hover { border-color: #CBD5E1; }

.pricing-card.selected {
  border-color: var(--brand);
  background: var(--brand-glow);
}

.pricing-card.popular {
  border-color: #CBD5E1;
}

.pricing-card.popular.selected {
  border-color: var(--brand);
}

.pricing-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-radio {
  width: 20px;
  height: 20px;
  accent-color: var(--brand);
  flex-shrink: 0;
}

.pricing-info {
  flex: 1;
}

.pricing-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.pricing-old-price {
  font-size: 12px;
  color: var(--text-secondary);
}

.pricing-old-price s { color: #666; }
.pricing-old-price b { color: var(--text); }

.pricing-discount {
  display: inline-block;
  background: rgba(249,16,91,0.15);
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

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

.price-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  display: block;
}

.price-period {
  font-size: 11px;
  color: var(--text-secondary);
}

/* CTA */
.paywall-cta {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f9105b 0%, #d90d4e 100%);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.4px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(249,16,91,0.35), 0 2px 8px rgba(249,16,91,0.2);
  animation: btnPulseBrand 2.4s ease-in-out infinite;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-bottom: 12px;
}

/* shimmer sweep */
.paywall-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  animation: ctaShimmer 2.4s ease-in-out infinite;
}

@keyframes ctaShimmer {
  0%   { left: -75%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

@keyframes btnPulseBrand {
  0%, 100% { box-shadow: 0 6px 24px rgba(249,16,91,0.35), 0 2px 8px rgba(249,16,91,0.2); transform: scale(1); }
  50%       { box-shadow: 0 8px 32px rgba(249,16,91,0.5), 0 4px 16px rgba(249,16,91,0.3); transform: scale(1.018); }
}

/* Botão da roleta — mantém cor rosa/brand */
.wheel-spin-btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.3px;
  animation: btnPulse 2.2s ease-in-out infinite;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 12px;
}

.wheel-spin-btn:hover {
  background: var(--brand-hover);
  transform: scale(1.02);
  animation: none;
}

.paywall-cta:hover {
  background: linear-gradient(135deg, #ff2a6d 0%, #f9105b 100%);
  transform: scale(1.02);
  box-shadow: 0 10px 36px rgba(249,16,91,0.55);
  animation: none;
}

.paywall-cta:active {
  transform: scale(0.98);
  box-shadow: 0 4px 16px rgba(249,16,91,0.3);
}

/* Secondary CTA (after FAQ) */
.paywall-cta-secondary {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #f9105b 0%, #d90d4e 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 12px;
  opacity: 0.9;
}

.paywall-cta-secondary:hover {
  background: linear-gradient(135deg, #ff2a6d 0%, #f9105b 100%);
  transform: scale(1.02);
  opacity: 1;
}

.paywall-section-label {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  text-transform: none;
  letter-spacing: -0.2px;
  margin: 24px 0 10px;
  line-height: 1.3;
}

.pricing-gift-note {
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
  text-align: left;
  margin: -4px 0 12px;
  line-height: 1.4;
}

/* CTA section */
.cta-section {
  margin: 20px 0 4px;
}

.cta-trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 10px;
  flex-wrap: wrap;
}

/* Guarantee */
.guarantee-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.guarantee-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-days {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.guarantee-text {
  font-size: 7px;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.guarantee-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.guarantee-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Reviews */
.reviews-section {
  margin-bottom: 24px;
}

.reviews-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

/* ============= CAROUSEL ============= */
.carousel-track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  border-radius: 16px;
  scrollbar-width: none;
}

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

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.carousel-img {
  width: 100%;
  display: block;
  object-fit: contain;
  height: auto;
  max-height: none;
}

.carousel-body {
  padding: 14px 16px;
}

.carousel-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 4px 0 6px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--brand);
  transform: scale(1.3);
}

/* Carousel wrap & arrows */
.carousel-wrap {
  position: relative;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-arrow:hover {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.carousel-arrow.prev { left: 8px; }
.carousel-arrow.next { right: 8px; }

.review-stars {
  font-size: 14px;
  margin-bottom: 4px;
}

.review-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 6px;
}

.review-verified {
  font-size: 11px;
  color: var(--green);
}

/* FAQ */
.faq-section {
  margin: 24px 0;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform 0.2s;
}

details[open] .faq-question::after {
  content: '−';
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 16px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Footer */
.paywall-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
}

.paywall-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.paywall-social a {
  color: var(--text);
  text-decoration: none;
}

.paywall-copyright {
  font-size: 11px;
  color: #94A3B8;
}

/* ============= TRAINING SUMMARY ============= */
.training-summary-list {
  margin: 20px 0;
  text-align: left;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.training-summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.training-check {
  font-size: 18px;
}

/* ============= BEFORE / AFTER (chart) ============= */
.before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.before-after-item {
  text-align: center;
  flex: 1;
  max-width: 140px;
}

.before-after-item.dream {
  border: 2px solid var(--brand);
  border-radius: 12px;
  padding: 8px;
  background: var(--brand-glow);
}

.before-after-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.before-after-item.dream .before-after-label {
  color: var(--brand);
}

.before-after-img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.before-after-weight {
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
  color: var(--text);
}

.before-after-item.dream .before-after-weight {
  color: var(--brand);
}

.before-after-arrow {
  font-size: 24px;
  color: var(--brand);
  font-weight: 700;
}

/* ============= DYNAMIC FEEDBACK ============= */
.feedback-selected {
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  text-align: left;
}

.feedback-item {
  font-size: 14px;
  color: var(--text);
  padding: 4px 0;
  font-weight: 500;
}

.feedback-stat {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  margin-top: 16px;
  text-align: center;
}

.feedback-percent {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  display: block;
  margin-bottom: 4px;
}

/* ============= WHO WE ARE (loading dinâmico) ============= */
.who-we-are-page {
  padding-top: 16px;
}

.who-loading-items {
  margin: 16px 0;
}

.who-loading-row {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

/* Loading bar state */
.who-loading-bar-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 10px 14px;
}

.who-loading-bar-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.who-loading-bar-track {
  background: #E8E4DF;
  border-radius: 99px;
  height: 8px;
  overflow: hidden;
}

.who-loading-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #ff6b9d);
  border-radius: 99px;
  transition: width 0.06s linear;
}

/* Result state */
.who-loading-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--card-border);
}

.who-loading-check {
  font-size: 16px;
  flex-shrink: 0;
}

.who-loading-label {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.who-loading-value {
  color: var(--text-secondary);
  flex: 1;
  text-align: right;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============= DISCOUNT WHEEL ============= */
.wheel-overlay {
  text-align: center;
  padding: 30px 0;
}

.wheel-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text);
}

.wheel-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 24px;
}

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

#wheelCanvas, #wheelCanvas2 {
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(249,16,91,0.3), 0 0 0 4px var(--brand);
}

.wheel-result-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.wheel-result-sub {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

/* Discount Banner */
.discount-banner {
  background: var(--brand);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ============= RESPONSIVE ============= */
@media (max-width: 480px) {
  .landing-cta { font-size: 14px; padding: 16px 16px; }
  .quiz-heading { font-size: 22px; }
  .image-card { min-height: 80px; }
  .image-card-img { width: 80px; height: 80px; }
  .tinder-cards-stack { width: 220px; height: 240px; }
  .likert-btn { width: 44px; height: 44px; font-size: 15px; }
  .fitness-age-value { font-size: 40px; }
  .grid-options { gap: 8px; }
  .grid-option { padding: 16px 12px; }
  .price-value { font-size: 20px; }
}

.paywall-bridge {
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.5;
  margin: 4px 0 20px;
}

/* ============= WHATS INCLUDED ============= */
.whats-included {
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  margin: 20px 0;
  border: 1px solid #f0eaf0;
  box-shadow: 0 2px 12px rgba(249,16,91,0.05);
}

.included-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.included-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand);
  margin-bottom: 4px;
}

.pricing-section {
  margin-top: 32px;
}

.plan-social-proof {
  font-size: 11px;
  color: #64748b;
  text-align: left;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
  transition: opacity 0.2s ease;
}

.cta-social-proof {
  text-align: center;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 10px;
}

/* ============= PROFILE RESULT CARD ============= */
.profile-result-card {
  background: linear-gradient(135deg, #1a0510 0%, #3b0a20 50%, #1a0510 100%);
  border-radius: 18px;
  padding: 20px;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249,16,91,0.25);
  box-shadow: 0 8px 32px rgba(249,16,91,0.15);
}

.profile-result-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(249,16,91,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Scanning state */
.profile-scanning {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  transition: opacity 0.35s ease;
}

.scanning-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.scanning-bar-wrap {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.scanning-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f9105b, #fb7185);
  border-radius: 4px;
  animation: scanFill 1.4s ease-out forwards;
}

@keyframes scanFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* Card content */
.profile-card-inner {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.profile-card-inner.visible {
  opacity: 1;
}

.profile-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,0.18);
  color: #4ade80;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.profile-card-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.profile-card-name em {
  color: #fb7185;
  font-style: normal;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.profile-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.profile-stat.show {
  opacity: 1;
  transform: translateY(0);
}

.profile-stat-icon {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 5px;
}

.profile-stat-label {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.profile-stat-value {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
  line-height: 1.2;
}
