@font-face {
  font-family: 'VanillaRavioli';
  src: url('https://afsennah.com/cdn/shop/t/29/assets/VanillaRavioli.woff2?v=30467556421220266441767604560') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('https://afsennah.com/cdn/shop/t/29/assets/Gotham-Medium.otf?v=127629324199392845061769428007') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('https://afsennah.com/cdn/shop/t/29/assets/Gotham-Bold.otf?v=103585810892258988451769428022') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f8f7fb;
  --text: #023130;
  --card-bg: #ffffff;
  --selected: rgba(2, 49, 48, 0.08);
  --accent: #dfbaff;
  --accent-light: rgba(2, 49, 48, 0.08);
  --success: #6bb77b;
  --danger: #e57373;
  --font-heading: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[x-cloak] {
  display: none !important;
}

/* Header */
.header {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--card-bg);
  border-bottom: 1px solid rgba(2, 49, 48, 0.08);
  margin-bottom: 1rem;
  padding: 0 1rem;
  gap: 1rem;
}

.header-cta {
  background-color: #f8f3ab;
  color: #1a365d;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.header-cta:hover {
  filter: brightness(1.05);
}

.header-cta i {
  width: 14px;
  height: 14px;
}

.header img {
  height: 24px;
  width: auto;
}

/* Screen Layout */
.screen {
  min-height: calc(100vh - 71px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
  padding-top: 1.5rem;
}

.container {
  width: 100%;
  max-width: 32rem;
  padding: 0 1rem;
  text-align: center;
}

.quiz-container {
  margin-top: 1.5rem;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 3px 1px #0000000a;
}

/* Progress Bar */
.progress-bar-wrapper {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.progress-bar {
  border-radius: 9999px;
  background: rgba(2, 49, 48, 0.08);
  height: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #e8c5ff 100%);
  border-radius: 9999px;
  transition: width 0.5s ease-out;
}

/* Typography */
.heading-xl {
  font-size: 1.875rem;
  line-height: 1.3;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.heading-md {
  font-size: 1.45rem;
  line-height: 1.3;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text);
}

.phase-label {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 0.5rem;
  text-align: center;
}

.opacity-80 { opacity: 0.8; }
.opacity-70 { opacity: 0.7; }
.opacity-50 { opacity: 0.5; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-6 { margin-top: 1.5rem; }

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

.underline-accent {
  text-decoration: underline;
  text-decoration-color: #57520830;
  text-decoration-thickness: 5px;
}

.font-semibold { font-weight: 600; }
.italic { }

.text-danger { color: var(--danger); }
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }


/* Buttons */
.cta-button {
  background-color: #f8f3ab;
  color: #1a365d;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 56px;
  min-width: fit-content;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.cta-button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cta-button:active {
  transform: scale(0.98) translateY(0);
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button i {
  width: 20px;
  height: 20px;
}

.cta-button-pulse {
  animation: subtlePulse 2s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

/* Quiz Options */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  background-color: #ffffff;
  border: 1px solid rgba(2, 49, 48, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  width: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-option:hover {
  border: 1px solid rgba(2, 49, 48, 0.2);
}

.quiz-option:active {
  transform: scale(0.98);
  border: 1.5px solid var(--text);
  background-color: #f6f6f6;
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-option.selected {
  border: 1.5px solid var(--text);
  background-color: #f6f6f6;
}

.quiz-option.selected:hover {
  border: 1.5px solid var(--text);
}

.quiz-option-simple {
  align-items: center;
  justify-content: space-between;
}

.emoji {
  font-size: 1.25rem;
  line-height: 1;
}

.emoji-md {
  font-size: 1.5rem;
  line-height: 1;
}

.emoji-lg {
  font-size: 2rem;
  line-height: 1;
}

.option-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.option-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}

.option-title {
  font-weight: 600;
  display: block;
}

.option-desc {
  font-size: 0.875rem;
  opacity: 0.7;
  display: block;
}

.note {
  font-size: 0.75rem;
  opacity: 0.6;
  display: block;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.checkmark {
  width: 20px;
  height: 20px;
  color: var(--text);
  flex-shrink: 0;
  margin-left: auto;
  animation: checkmarkAppear 0.2s ease-out;
}

@keyframes checkmarkAppear {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Icon Circles */
.icon-circle {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.danger-bg {
  background-color: rgba(229, 115, 115, 0.15);
}

.accent-bg {
  background-color: var(--selected);
}

.success-bg {
  background-color: rgba(107, 183, 123, 0.15);
}

/* Info Card */
.info-card {
  padding: 1rem;
  border-radius: 12px;
  background-color: var(--card-bg);
  border: 1px solid rgba(2, 49, 48, 0.1);
}

/* Comparison Visual */
.comparison-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.comparison-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.danger-border {
  background-color: rgba(229, 115, 115, 0.1);
  border: 2px dashed var(--danger);
}

.accent-border {
  background-color: var(--selected);
  border: 2px solid var(--accent);
}

.comparison-label {
  font-size: 0.75rem;
  font-weight: 500;
  display: block;
}

.comparison-value {
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
}

.comparison-value.danger {
  color: var(--danger);
}

.comparison-value.success {
  color: var(--success);
}

.comparison-arrow {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

/* Charts */
.chart-section {
  margin-bottom: 1rem;
}

.chart-container {
  padding: 1rem;
  border-radius: 12px;
  background-color: rgba(139, 125, 216, 0.08);
}

.chart-container canvas {
  height: 80px;
  margin-bottom: 0.5rem;
}

.chart-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

.legend-line {
  width: 0.75rem;
  height: 2px;
  border-radius: 2px;
}

.legend-line.danger {
  background-color: var(--danger);
  opacity: 0.6;
}

.legend-line.accent {
  background-color: var(--accent);
}

/* Results Page */
.results-screen .container {
  padding-bottom: 2rem;
}

.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--selected);
  color: var(--text);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-image {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  object-fit: cover;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.section-subtitle {
  font-size: 0.875rem;
  opacity: 0.7;
}

.result-card {
  padding: 1.25rem;
  border-radius: 10px;
  background-color: var(--card-bg);
  margin-bottom: 1rem;
}

.before-card {
  border: 2px solid rgba(229, 115, 115, 0.3);
}

.after-card {
  border: 2px solid rgba(107, 183, 123, 0.3);
}

.result-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.point-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.point-title {
  font-weight: 600;
  font-size: 0.875rem;
  display: block;
  text-align: left;
}

.point-desc {
  font-size: 0.875rem;
  opacity: 0.7;
  display: block;
  text-align: left;
}

.quality-meter {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(2, 49, 48, 0.1);
}

.meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.meter-label {
  font-size: 0.75rem;
  font-weight: 500;
}

.meter-value {
  font-size: 0.75rem;
  font-weight: 600;
}

.meter-value.danger {
  color: var(--danger);
}

.meter-value.success {
  color: var(--success);
}

.meter-bars {
  display: flex;
  gap: 0.375rem;
}

.meter-bar {
  height: 0.5rem;
  flex: 1;
  border-radius: 9999px;
  background-color: rgba(229, 115, 115, 0.2);
}

.meter-bar.filled.danger {
  background-color: var(--danger);
}

.meter-bar.filled.success {
  background-color: var(--success);
}

.after-card .meter-bar {
  background-color: rgba(107, 183, 123, 0.2);
}

.arrow-down {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.arrow-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--selected);
}

.arrow-circle i {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.guarantee-box {
  padding: 1rem;
  border-radius: 10px;
  background-color: rgba(107, 183, 123, 0.1);
  text-align: center;
}

.guarantee-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.guarantee-header i {
  width: 18px;
  height: 18px;
  color: var(--success);
}

.guarantee-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--success);
}

.guarantee-text {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease-out;
}

/* Screen transition animation */
.screen {
  animation: screenEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes screenEnter {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(2, 49, 48, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(2, 49, 48, 0.3);
}

/* Rating Buttons */
.rating-block {
  text-align: center;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.rating-buttons {
  display: flex;
  gap: 0.5rem;
}

.rating-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(2, 49, 48, 0.15);
  background: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.rating-btn:hover {
  border-color: rgba(2, 49, 48, 0.3);
}

.rating-btn.rating-active {
  background-color: #f8f3ab;
  border-color: #1a365d;
  color: #1a365d;
}

/* Loading Spinner */
.loading-spinner {
  display: flex;
  justify-content: center;
}

.spinner {
  width: 64px;
  height: 64px;
  border: 4px solid rgba(2, 49, 48, 0.1);
  border-top-color: var(--text);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Form Inputs */
.quiz-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(2, 49, 48, 0.15);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}

.quiz-input::placeholder {
  color: rgba(2, 49, 48, 0.4);
}

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

/* Score Circle */
.score-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbf7bd 0%, #f0eaa0 100%);
  border: 3px solid #1a365d;
}

.score-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
}

/* Before/After Carousel */
.ba-carousel {
  position: relative;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}

.ba-pair {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.ba-image {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.ba-image img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.ba-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.ba-label-after {
  background: rgba(107, 183, 123, 0.85);
}

/* Trust Bar */
.trust-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Inline Icons */
.inline-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25rem;
}

/* Loading Step Row */
.loading-step-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.loading-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--success);
}

/* Radar Chart */
.radar-card {
  padding: 1.25rem;
  border-radius: 12px;
  background-color: var(--card-bg);
  border: 1px solid rgba(2, 49, 48, 0.08);
}

.radar-chart-wrapper {
  max-width: 260px;
  margin: 0 auto;
}

.radar-legend {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.7rem;
}

.radar-legend-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.7;
}

.radar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 0.5rem;
}

.stat-card {
  flex: 1;
  padding: 1rem 0.5rem;
  border-radius: 12px;
  background-color: var(--card-bg);
  border: 1px solid rgba(2, 49, 48, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.stat-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  opacity: 0.6;
  line-height: 1.3;
}

/* Warning & Solution Cards */
.warning-card {
  padding: 1rem;
  border-radius: 12px;
  background-color: rgba(229, 115, 115, 0.06);
  border: 1px solid rgba(229, 115, 115, 0.15);
  text-align: left;
}

.solution-card {
  padding: 1rem;
  border-radius: 12px;
  background-color: rgba(107, 183, 123, 0.06);
  border: 1px solid rgba(107, 183, 123, 0.15);
  text-align: left;
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Testimonial Card */
.testimonial-card {
  padding: 1.25rem;
  border-radius: 12px;
  background-color: var(--card-bg);
  border: 1px solid rgba(2, 49, 48, 0.08);
  text-align: left;
}

.testimonial-quote {
  margin-bottom: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.testimonial-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #e8c5ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}

/* Result Carousel */
.result-carousel {
  position: relative;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.result-carousel-img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* IG Card */
.ig-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(2, 49, 48, 0.08);
}

.ig-img {
  width: 100%;
  display: block;
}

/* Sticky Banner */
.sticky-banner {
  position: sticky;
  top: 71px;
  z-index: 40;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-bottom: 1px solid rgba(2, 49, 48, 0.06);
}

/* Locked Report Preview */
.locked-report {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(2, 49, 48, 0.08);
  background: var(--card-bg);
}

.locked-report-content {
  padding: 1.25rem;
  filter: blur(4px);
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}

.report-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.report-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: var(--selected);
  color: var(--text);
}

.report-score-pill {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(107, 183, 123, 0.12);
  color: var(--text);
}

.report-body-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.report-chart-mini {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.report-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.report-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(2, 49, 48, 0.08);
}

.report-bars-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.report-bar-item {
  text-align: left;
}

.report-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(2, 49, 48, 0.06);
  overflow: hidden;
}

.report-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #e8c5ff 100%);
}

.locked-report-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
}

.lock-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid rgba(2, 49, 48, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Review Image */
.review-img-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(2, 49, 48, 0.08);
}

.review-img {
  width: 100%;
  display: block;
}

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

.opacity-0 { opacity: 0; }

/* Product Page */
.product-screen .container {
  padding-bottom: 2rem;
}

.product-hero-card {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid rgba(2, 49, 48, 0.08);
  overflow: hidden;
}

.product-img-main {
  width: 100%;
  background: #fafafa;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.product-img-main img {
  max-height: 320px;
  width: auto;
  object-fit: contain;
}

.product-img-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  overflow-x: auto;
}

.product-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: #fafafa;
  padding: 2px;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product-thumb-active {
  border-color: var(--text);
}

.product-info {
  padding: 1.25rem;
  text-align: left;
}

/* Variant Selector */
.variant-selector {
  display: flex;
  gap: 0.5rem;
}

.variant-btn {
  flex: 1;
  padding: 0.75rem;
  border: 1.5px solid rgba(2, 49, 48, 0.1);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-body);
  transition: all 0.2s ease;
  position: relative;
}

.variant-btn:hover {
  border-color: rgba(2, 49, 48, 0.25);
}

.variant-active {
  border-color: var(--text);
  background: rgba(2, 49, 48, 0.03);
}

.variant-size {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
}

.variant-price {
  display: block;
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.15rem;
}

.variant-save {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(107, 183, 123, 0.12);
  color: var(--success);
  margin-top: 0.3rem;
}

/* Product Pricing */
.product-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.product-compare {
  font-size: 0.875rem;
  color: var(--danger);
  text-decoration: line-through;
  opacity: 0.7;
}

.product-save-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(107, 183, 123, 0.12);
  color: var(--success);
}

/* Trust Row */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-micro {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  opacity: 0.5;
}

/* Profile Match Card */
.profile-match-card {
  background: var(--card-bg);
  border: 1px solid rgba(2, 49, 48, 0.08);
  border-radius: 12px;
  padding: 1rem;
}

.match-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(2, 49, 48, 0.06);
}

.match-label {
  font-size: 0.8rem;
  opacity: 0.6;
}

.match-value {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: right;
}

/* Mechanism Card */
.mechanism-card {
  background: var(--card-bg);
  border: 1px solid rgba(2, 49, 48, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
}

.mechanism-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(2, 49, 48, 0.06);
}

.mechanism-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--selected);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
}

.mechanism-title {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.mechanism-desc {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* Steps List */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid rgba(2, 49, 48, 0.08);
  border-radius: 12px;
  padding: 1rem;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.step-title {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.2rem;
}

.step-desc {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(2, 49, 48, 0.08);
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 0.875rem;
  gap: 0.75rem;
}

.faq-answer {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.6;
  padding-bottom: 1rem;
}

/* Guarantee Section */
.guarantee-card {
  background: rgba(107, 183, 123, 0.06);
  border: 1px solid rgba(107, 183, 123, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.guarantee-shield {
  display: flex;
  justify-content: center;
}

.guarantee-points {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.guarantee-point {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Responsive */
@media (min-width: 768px) {
  .quiz-container {
    padding: 2rem;
  }
}
