/* ==========================================================================
   Whop Review Template — Style Sheet
   Dark theme matching Whop's design language.
   Mobile-first responsive design.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Backgrounds */
  --bg-body:       #0d0d0d;
  --bg-header:     #121212;
  --bg-card:       #1a1a1a;
  --bg-card-hover: #222222;
  --bg-input:      #242424;

  /* Text */
  --text-primary:   #ffffff;
  --text-secondary: #a0a0a0;
  --text-tertiary:  #6b6b6b;

  /* Brand / CTA */
  --color-primary:       #1754D8;
  --color-primary-hover:  #1e63f0;
  --color-primary-active: #1248b8;

  /* Accents */
  --color-star:    #FFD700;
  --color-success: #22c55e;
  --color-danger:  #ef4444;

  /* Borders */
  --border-color: #2a2a2a;

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;

  /* Spacing */
  --header-height: 60px;
  --container-max:  1120px;
  --container-narrow: 760px;
}


/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

ul, ol { list-style: none; }


/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}


/* --------------------------------------------------------------------------
   4. Typography Helpers
   -------------------------------------------------------------------------- */
.section {
  padding: 2rem 0;
}

.section--compact {
  padding: 1.5rem 0;
}

.section__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section__text {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.section__text strong {
  color: var(--text-primary);
  font-weight: 600;
}


/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.6875rem 1.5rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover { text-decoration: none; }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 0 20px rgba(23, 84, 216, 0.3);
}
.btn--primary:active {
  background: var(--color-primary-active);
  transform: scale(0.98);
}

.btn--outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}
.btn--outline:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.btn--lg {
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
}

.btn--sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

.btn--block {
  display: flex;
  width: 100%;
}


/* --------------------------------------------------------------------------
   6. Stars Component
   -------------------------------------------------------------------------- */
.stars {
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 2px;
}

.stars__empty {
  color: #333;
}

.stars__filled {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--color-star);
}

.stars--sm  { font-size: 0.875rem; letter-spacing: 1px; }
.stars--lg  { font-size: 1.5rem; letter-spacing: 3px; }


/* --------------------------------------------------------------------------
   7. Rating Inline
   -------------------------------------------------------------------------- */
.rating-inline {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.rating-inline__score {
  font-weight: 700;
  font-size: 0.9375rem;
}

.rating-inline__count {
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.rating-inline--sm .rating-inline__score { font-size: 0.8125rem; }
.rating-inline--sm .rating-inline__count { font-size: 0.75rem; }


/* --------------------------------------------------------------------------
   8. Badges
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.badge--verified {
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-success);
}

.badge--paid {
  background: rgba(34, 197, 94, 0.1);
  color: var(--color-success);
  font-size: 0.6875rem;
}

.badge--trial {
  background: rgba(34, 197, 94, 0.15);
  color: var(--color-success);
}


/* --------------------------------------------------------------------------
   9. Tags
   -------------------------------------------------------------------------- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-full);
}


/* --------------------------------------------------------------------------
   10. Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.header__logo:hover {
  text-decoration: none;
  opacity: 0.85;
}

.header__toc {
  display: none;
  gap: 1.5rem;
}

.header__toc-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.header__toc-link:hover {
  color: var(--text-primary);
  text-decoration: none;
}

@media (min-width: 768px) {
  .header__toc {
    display: flex;
  }
}


/* --------------------------------------------------------------------------
   11. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
}

.hero__image-container img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 220px;
  object-fit: cover;
}

.hero__meta {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.hero__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.hero__subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}


/* --------------------------------------------------------------------------
   12. Pricing Card (sidebar)
   -------------------------------------------------------------------------- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  text-align: left;
}

.pricing-card .rating-inline {
  width: 100%;
}

.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  width: 100%;
  margin-bottom: 0;
}

/* Products available badge */
.products-available {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FA4616;
  background: #ffffff;
  border: 1px solid #FA4616;
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-full);
}

/* Stats list inside the sidebar card */
.sidebar-stats {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sidebar-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4375rem 0;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-stat:first-child {
  border-top: 1px solid var(--border-color);
}

.sidebar-stat__label {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

.sidebar-stat__value {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}


/* --------------------------------------------------------------------------
   13. Stats Bar
   -------------------------------------------------------------------------- */
.stats {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.stats--compact {
  padding: 0.75rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.stat-card__value {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-card__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
  font-weight: 500;
}


/* --------------------------------------------------------------------------
   14. Pros & Cons
   -------------------------------------------------------------------------- */
.proscons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.proscons__col {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.proscons__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.proscons__heading--pros { color: var(--color-success); }
.proscons__heading--cons  { color: var(--color-danger); }

.proscons__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.proscons__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.proscons__col--pros .proscons__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.proscons__col--cons .proscons__list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--color-danger);
  font-weight: 700;
}


/* --------------------------------------------------------------------------
   15. Features
   -------------------------------------------------------------------------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: border-color 0.15s ease;
}

.feature-item:hover {
  border-color: #3a3a3a;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 84, 216, 0.12);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
}

.feature-item__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-item__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* --------------------------------------------------------------------------
   16. Pricing Section (mid-page CTA)
   -------------------------------------------------------------------------- */
.pricing-section {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-card);
}

#pricing {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.pricing-intro {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.pricing-intro .section__title {
  text-align: center;
}

.pricing-intro .section__text {
  text-align: center;
  margin-bottom: 0;
}

.pricing-highlight {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.375rem;
  margin: 1.5rem 0;
}

.pricing-highlight__amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pricing-highlight__period {
  font-size: 1.125rem;
  color: var(--text-tertiary);
}


/* --------------------------------------------------------------------------
   17. Reviews
   -------------------------------------------------------------------------- */
.reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.reviews-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.reviews-summary__number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.reviews-summary__total {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* Bar chart */
.reviews-summary__bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.bar-row__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  width: 2.25rem;
  text-align: right;
  flex-shrink: 0;
}

.bar-row__track {
  flex: 1;
  height: 8px;
  background: var(--bg-input);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-row__fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.6s ease;
}

.bar-row__fill--5 { background: var(--color-success); }
.bar-row__fill--4 { background: var(--color-success); }
.bar-row__fill--3 { background: var(--text-tertiary); }
.bar-row__fill--2 { background: var(--text-tertiary); }
.bar-row__fill--1 { background: var(--color-danger); }

.bar-row__pct {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  width: auto;
  min-width: 2.5rem;
  text-align: right;
  flex-shrink: 0;
}

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transition: border-color 0.15s ease;
}

.review-card:hover {
  border-color: #3a3a3a;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__author {
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.review-card__username {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-left: auto;
  flex-shrink: 0;
}

.review-card__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* --------------------------------------------------------------------------
   18. FAQ
   -------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.125rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 1rem;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text-secondary);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  padding-bottom: 1.125rem;
}

.faq-item__answer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* --------------------------------------------------------------------------
   19. Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  padding: 4rem 0;
}

.final-cta__title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.final-cta__text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 1.5rem;
}

.final-cta__sub {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}


/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
}

.footer__inner {
  text-align: center;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 0.75rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}


/* --------------------------------------------------------------------------
   21. Who For Cards
   -------------------------------------------------------------------------- */
.who-for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.who-for-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.who-for-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.who-for-card__icon {
  font-size: 1rem;
  font-weight: 700;
}

.who-for-card__icon--yes { color: var(--color-success); }
.who-for-card__icon--no { color: var(--color-danger); }

.who-for-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.who-for-card__list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.who-for-card--yes .who-for-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-success);
}

.who-for-card--no .who-for-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-danger);
}

@media (min-width: 640px) {
  .who-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* --------------------------------------------------------------------------
   22. Quick Verdict (TL;DR)
   -------------------------------------------------------------------------- */
.quick-verdict {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.quick-verdict__inner {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quick-verdict__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-verdict__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-verdict__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FA4616;
  background: rgba(250, 70, 22, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.quick-verdict__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.quick-verdict__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.quick-verdict__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.quick-verdict__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.btn--outline-orange {
  background: transparent;
  color: #FA4616;
  border: 1px solid rgba(250, 70, 22, 0.4);
}

.btn--outline-orange:hover {
  border-color: #FA4616;
  background: rgba(250, 70, 22, 0.08);
  text-decoration: none;
}

/* Trust-o-Meter */
.trust-meter {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.trust-meter__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.trust-meter__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
}

.trust-meter__score {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-meter__gauge {
  position: relative;
  height: 8px;
  background: var(--bg-input);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.trust-meter__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, #ef4444 0%, #f59e0b 35%, #22c55e 70%, #22c55e 100%);
  transition: width 0.8s ease;
}

.trust-meter__indicators {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  color: var(--text-tertiary);
}

.trust-meter__indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.trust-meter__indicator--active {
  color: var(--color-success);
  font-weight: 600;
}

@media (min-width: 768px) {
  .quick-verdict__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .quick-verdict__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .trust-meter {
    width: 200px;
    flex-shrink: 0;
    padding-top: 0;
    padding-left: 1.5rem;
    border-top: none;
    border-left: 1px solid var(--border-color);
    justify-content: center;
  }
}


/* --------------------------------------------------------------------------
   23. Product Cards
   -------------------------------------------------------------------------- */
.product-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  border-color: #c0c0c0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-card__header {
  margin-bottom: 0.5rem;
  min-height: 3.5rem;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.product-card__subtitle {
  font-size: 0.75rem;
  color: #6b6b6b;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.product-card__price--free {
  color: var(--color-success);
}

.product-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6b6b6b;
}

.product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
  min-height: 1.5rem;
}

.product-card__badge {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.1875rem 0.4375rem;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  color: #6b6b6b;
}

.product-card__badge--trial {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--color-success);
  color: var(--color-success);
}

.product-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.product-card__features li {
  font-size: 0.8125rem;
  color: #4a4a4a;
  line-height: 1.4;
  padding-left: 1.125rem;
  position: relative;
}

.product-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 600;
  font-size: 0.75rem;
}

.product-card__why {
  background: #f5f5f5;
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.75rem;
  margin-bottom: 0.75rem;
  margin-top: auto;
}

.product-card__why-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  margin-bottom: 0.125rem;
}

.product-card__why p {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
}

.btn--cta {
  background: #FA4616;
  color: #fff;
  font-weight: 600;
}

.btn--cta:hover {
  background: #e03d13;
  box-shadow: 0 0 16px rgba(250, 70, 22, 0.25);
}

@media (min-width: 640px) {
  .product-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 960px) {
  .product-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .product-card__header {
    min-height: auto;
  }

  .product-card__title {
    font-size: 1.0625rem;
  }

  .product-card__price {
    font-size: 1.75rem;
  }

  .product-card__features li {
    font-size: 0.875rem;
  }
}


/* --------------------------------------------------------------------------
   24. Verdict Box
   -------------------------------------------------------------------------- */
.verdict-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-top: 4px solid var(--color-primary);
}

.verdict-box .section__title {
  margin-bottom: 0.75rem;
}

.verdict-box__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   25. Bonus Sidebar (Desktop)
   -------------------------------------------------------------------------- */
.bonus-sidebar {
  display: none;
  position: fixed;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bonus-sidebar.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.bonus-sidebar__content {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.bonus-sidebar__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FA4616;
  background: rgba(250, 70, 22, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.bonus-sidebar__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.bonus-sidebar__text {
  font-size: 0.8125rem;
  color: #6b6b6b;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.bonus-sidebar__cta {
  margin-bottom: 0.75rem;
}

.bonus-sidebar__scarcity {
  font-size: 0.75rem;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.bonus-sidebar__scarcity-icon {
  font-size: 0.875rem;
}

/* Whop Orange button */
.btn--whop-orange {
  background: #FA4616;
  color: #fff;
}

.btn--whop-orange:hover {
  background: #e03d13;
  box-shadow: 0 0 20px rgba(250, 70, 22, 0.3);
  text-decoration: none;
}

.btn--whop-orange:active {
  background: #c73510;
  transform: scale(0.98);
}

@media (min-width: 1280px) {
  .bonus-sidebar {
    display: block;
  }
}


/* --------------------------------------------------------------------------
   26. Mobile Sticky CTA
   -------------------------------------------------------------------------- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 0.75rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
}

.mobile-cta__info {
  display: flex;
  flex-direction: column;
}

.mobile-cta__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
}

.mobile-cta__scarcity {
  font-size: 0.75rem;
  color: #888;
}

/* Add padding so footer isn't hidden behind mobile CTA */
body { padding-bottom: 70px; }


/* --------------------------------------------------------------------------
   27. Responsive — Tablet (768px+)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .hero__title {
    font-size: 1.75rem;
  }

  .hero__image-container img {
    max-height: 280px;
  }

  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .proscons {
    flex-direction: row;
  }

  .proscons__col {
    flex: 1;
  }

  .reviews-summary {
    flex-direction: row;
    align-items: flex-start;
  }

  .reviews-summary__score {
    min-width: 140px;
  }

  .reviews-summary__bars {
    flex: 1;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta__title {
    font-size: 2rem;
  }
}


/* --------------------------------------------------------------------------
   28. Responsive — Desktop (1024px+)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .hero__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .hero__content {
    flex: 1;
  }

  .hero__sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
  }

  .hero__title {
    font-size: 2rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  /* Hide mobile CTA on desktop */
  .mobile-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}


/* --------------------------------------------------------------------------
   29. Animations & Utilities
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
