/* LTPS — main.css */

/* Variables */
:root {
  --red:        #ed4040;
  --red-dark:   #c73535;
  --red-deeper: #a02828;
  --red-light:  #fff0f0;
  --black:      #1a1a1a;
  --gray-dark:  #2d2d2d;
  --gray-mid:   #6b6b6b;
  --gray-light: #e8e8e8;
  --bg:         #f4f4f6;
  --white:      #ffffff;
  --card-shadow: 0 2px 12px rgba(0,0,0,.10);
  --card-shadow-hover: 0 8px 32px rgba(0,0,0,.18);
  --radius:     10px;
  --radius-sm:  6px;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

/* Base */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.site-logo {
  flex-shrink: 0;
  display: block;
}

.site-logo img {
  width: 200px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
  transition: color .2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: .3s;
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }

  .site-nav.open {
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    border-top: 1px solid var(--gray-light);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    gap: 16px;
    z-index: 99;
  }
}

/* Hero (Homepage) */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #2d1010 60%, #3d1515 100%);
  color: var(--white);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/icons/logo.svg') no-repeat right -60px center / 400px;
  opacity: .03;
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(237,64,64,.2);
  border: 1px solid rgba(237,64,64,.4);
  color: #ff8080;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 2px;
}

/* Section Headers */
.section {
  padding: 48px 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
}

.section-icon {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.3px;
}

.section-count {
  margin-left: auto;
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 500;
}

/* Featured Cards (Top 5) */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) {
  .featured-grid {
    grid-template-columns: repeat(5, minmax(200px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .featured-grid .card-featured {
    scroll-snap-align: start;
  }
}

@media (max-width: 700px) {
  .featured-grid {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
  }
}

.card-featured {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--card-shadow);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}

/* Cover link — makes the whole card clickable, buttons sit above it */
.card-cover-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.card-featured-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: .85;
  transition: opacity .3s;
}

.card-featured:hover .card-featured-img {
  opacity: .7;
}

.card-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
}

/* Rank badge */
.card-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: white;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
  z-index: 2;
}

.card-rank.rank-1 {
  background: linear-gradient(135deg, #ffd700, #ff9500);
  color: #1a1a1a;
  width: 40px;
  height: 40px;
  font-size: 20px;
}

/* Score badge */
.card-score {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  z-index: 2;
}

.score-value {
  color: var(--red);
  font-size: 15px;
}

/* Card bottom info */
.card-featured-info {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 12px 14px;
  z-index: 2;
}

.card-category-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.1);
  padding: 2px 7px;
  border-radius: 3px;
  margin-bottom: 5px;
}

.card-site-name {
  font-size: 16px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 4px;
}

.card-lifetime-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: inline-block;
  background: rgba(0,0,0,.55);
  padding: 2px 7px;
  border-radius: 4px;
  backdrop-filter: blur(2px);
}

.card-discount-badge {
  display: inline-block;
  background: #2ea043;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
  line-height: 1.2;
}

.card-lifetime-label {
  font-size: 10px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .5px;
  display: inline-block;
  background: rgba(0,0,0,.45);
  padding: 1px 6px;
  border-radius: 3px;
}

.card-featured-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.btn-read {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}

.btn-read:hover { background: rgba(255,255,255,.2); }

.btn-visit {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: var(--red);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}

.btn-visit:hover { background: var(--red-dark); }

/* List Cards (All Sites) */
.sites-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-list {
  display: grid;
  grid-template-columns: 44px 120px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--card-shadow);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}

.card-list:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}

/* Rank number */
.list-rank {
  font-size: 22px;
  font-weight: 900;
  color: var(--gray-light);
  text-align: center;
  line-height: 1;
  user-select: none;
}

.list-rank.top10 {
  color: #d0d0d0;
}

/* Thumbnail */
.list-thumb-link { flex-shrink: 0; display: block; }
.list-thumb {
  width: 120px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity .2s;
}
.list-thumb-link:hover .list-thumb { opacity: .8; }

.list-name-link { text-decoration: none; color: inherit; }
.list-name-link:hover .list-name { color: var(--red); }

/* Info block */
.list-info {
  min-width: 0;
}

.list-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.list-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--red);
  background: var(--red-light);
  padding: 2px 8px;
  border-radius: 3px;
}

.list-score-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-mid);
}

.list-score-pill .score-num {
  color: var(--black);
}

.list-updated {
  font-size: 11px;
  color: var(--gray-mid);
}

.card-updated-tag {
  display: inline-block;
  font-size: 10px;
  color: rgba(255,255,255,.7);
  margin-left: 6px;
}

.list-pros {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pro-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--gray-mid);
}

.pro-item::before {
  content: '✓';
  color: #4cbb17;
  font-weight: 700;
  font-size: 12px;
}

/* Price + CTA block */
.list-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 140px;
}

.list-price {
  text-align: right;
}

.list-price-was {
  font-size: 13px;
  color: var(--gray-mid);
  text-decoration: line-through;
  line-height: 1.2;
}

.badge-bonus {
  display: inline-block;
  background: #1a7a3c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  vertical-align: middle;
  letter-spacing: .3px;
  margin-left: 4px;
}

.list-price-amount {
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.list-price-label {
  font-size: 11px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.list-btns {
  display: flex;
  gap: 8px;
}

.btn-sm-outline {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-mid);
  border: 1px solid var(--gray-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all .2s;
}

.btn-sm-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-sm-red {
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: var(--red);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}

.btn-sm-red:hover { background: var(--red-dark); }

@media (max-width: 900px) {
  .card-list {
    grid-template-columns: 36px 90px 1fr;
    grid-template-rows: auto auto;
  }
  .list-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-light);
    padding-top: 10px;
    margin-top: 4px;
    min-width: unset;
  }
  .list-price { text-align: left; }
}

@media (max-width: 600px) {
  .card-list {
    grid-template-columns: 30px 80px 1fr;
    padding: 12px 14px;
    gap: 10px;
  }
  .list-thumb { width: 80px; height: 56px; }
  .list-name { font-size: 15px; }
  .list-pros { display: none; }
}

/* Review Page */
.review-page {
  padding: 36px 0 64px;
}

.review-breadcrumb {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.review-breadcrumb a { color: var(--red); }
.review-breadcrumb a:hover { text-decoration: underline; }

.review-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .review-layout { grid-template-columns: 1fr; }
}

/* Review hero */
.review-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--card-shadow);
}

.review-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.review-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
}

.review-hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 20px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.review-title-main {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -.3px;
}

.review-score-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 10px 16px;
  min-width: 80px;
  flex-shrink: 0;
}

.review-score-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.review-score-label {
  font-size: 10px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* Pros/cons card */
.review-quickview {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--card-shadow);
}

.quickview-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
}

.pros-list, .cons-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pros-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #4cbb17;
  margin-bottom: 6px;
}

.cons-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--red);
  margin-bottom: 6px;
}

.pro-entry, .con-entry {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--black);
  line-height: 1.4;
}

.pro-entry::before {
  content: '✓';
  color: #4cbb17;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.con-entry::before {
  content: '✗';
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Review content */
.review-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--card-shadow);
  font-size: 16px;
  line-height: 1.75;
  color: var(--black);
}

.review-subtitle {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.3px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}

.review-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin: 24px 0 10px;
}

.review-content p {
  margin-bottom: 16px;
}

.review-content ul, .review-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.review-content ul li { list-style: disc; margin-bottom: 6px; }
.review-content ol li { list-style: decimal; margin-bottom: 6px; }

.review-content img {
  border-radius: var(--radius-sm);
  margin: 16px auto;
  max-width: 100%;
  height: auto !important;
  width: auto !important;
  max-height: 400px;
  display: block;
  object-fit: contain;
}

.review-content a {
  color: var(--red);
  text-decoration: underline;
}

/* (author styles moved to Review Inline CTA section) */

/* Review Sidebar */
.review-sidebar {
  position: sticky;
  top: 76px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-light) transparent;
}

.sidebar-cta-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.sidebar-cta-header {
  background: linear-gradient(135deg, var(--black), #3d1515);
  padding: 20px;
  text-align: center;
}

.sidebar-site-name {
  color: white;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.sidebar-category {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.sidebar-price-block {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid var(--gray-light);
}

.sidebar-lifetime-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.sidebar-lifetime-label {
  font-size: 12px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 4px;
}

.sidebar-plans {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-light);
}

.sidebar-plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--bg);
}

.sidebar-plan-row:last-child { border-bottom: none; }

.plan-period { color: var(--gray-mid); }
.plan-price { font-weight: 700; color: var(--black); }
.plan-lifetime .plan-period { color: var(--red); font-weight: 700; }
.plan-lifetime .plan-price { color: var(--red); font-size: 16px; }

.sidebar-btns {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-buy-now {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: linear-gradient(to bottom, var(--red) 0%, var(--red-deeper) 50%, var(--red) 100%);
  background-size: auto 200%;
  color: white;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  padding: 14px;
  border-radius: var(--radius);
  transition: all .3s;
  letter-spacing: .3px;
}

.btn-buy-now:hover { background-position: bottom center; }

.btn-buy-sub {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.btn-read-review {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-mid);
  padding: 10px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  transition: all .2s;
}

.btn-read-review:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Keystats card */
.sidebar-stats {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.stats-header {
  background: var(--black);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 16px;
}

.stats-group {
  padding: 12px 16px;
  border-bottom: 1px solid var(--bg);
}

.stats-group:last-child { border-bottom: none; }

.stats-group-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #c87a3a;
  margin-bottom: 8px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--bg);
}

.stat-row:last-child { border-bottom: none; }

.stat-label { color: var(--gray-mid); font-weight: 500; }
.stat-value { color: var(--black); font-weight: 600; text-align: right; max-width: 55%; }

/* Static / Editorial Pages */
.static-page {
  padding: 48px 0 64px;
}

.page-header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.page-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.4px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-title span { color: var(--red); }

.page-content-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 48px;
  box-shadow: var(--card-shadow);
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
}

@media (max-width: 768px) {
  .page-content-wrap { padding: 24px 20px; }
}

/* Collapsible text blocks on homepage */
.text-collapse {
  max-height: 150px;
  overflow: hidden;
  position: relative;
  transition: max-height .4s ease;
  cursor: pointer;
  padding: 20px 48px 24px;
}
.text-collapse::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  pointer-events: none;
}
.text-collapse.expanded {
  max-height: 2000px;
}
.text-collapse.expanded::after {
  display: none;
}
.text-collapse h1 {
  font-size: 1.3rem;
  margin: 0 0 4px;
}
.text-collapse h2 {
  font-size: 1rem;
  margin: 0 0 8px;
  border-left: none;
  padding-left: 0;
}
.text-collapse h3 {
  font-size: 1rem;
  margin: 0 0 8px;
}
.text-collapse p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .text-collapse { max-height: 120px; padding: 16px 20px 20px; }
}

.page-content-wrap h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 28px 0 12px;
  color: var(--black);
  border-left: 3px solid var(--red);
  padding-left: 12px;
}

.page-content-wrap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--black);
}

.page-content-wrap p { margin-bottom: 16px; }

.page-content-wrap ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content-wrap ul li {
  list-style: disc;
  margin-bottom: 6px;
}

.page-content-wrap ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content-wrap ol li {
  list-style: decimal;
  margin-bottom: 6px;
}

.page-content-wrap a {
  color: var(--red);
  text-decoration: underline;
}

.page-content-wrap img {
  border-radius: var(--radius-sm);
  margin: 16px auto;
  max-width: 100%;
}

.page-content-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}

.page-content-wrap th {
  background: var(--black);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.page-content-wrap td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-light);
}

.page-content-wrap tr:nth-child(even) td {
  background: var(--bg);
}

/* Sticky Mobile CTA */
.sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    border-top: 2px solid var(--red);
    box-shadow: 0 -4px 16px rgba(0,0,0,.15);
    padding: 10px 16px;
  }
  .sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .sticky-cta-info {
    min-width: 0;
  }
  .sticky-cta-name {
    font-weight: 800;
    font-size: 16px;
    color: var(--black);
    display: block;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-cta-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    flex-wrap: wrap;
  }
  .sticky-cta-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
  }
  .sticky-cta-price s {
    color: var(--gray-mid);
    font-weight: 400;
    font-size: 11px;
  }
  .sticky-cta-badge {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1.3;
  }
  .sticky-cta-badge--green {
    background: #e6f4ea;
    color: #1a7a3c;
  }
  .sticky-cta-btn {
    flex-shrink: 0;
    background: var(--red);
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
  }
  .sticky-cta-btn:hover {
    background: var(--red-dark);
  }
  .review-page ~ .site-footer {
    padding-bottom: 70px;
  }
}

/* Redirect Page */
.redirect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black), #2d1010);
}

.redirect-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  margin: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.redirect-logo {
  width: 120px;
  margin: 0 auto 24px;
}

.redirect-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.redirect-sub {
  color: var(--gray-mid);
  font-size: 15px;
  margin-bottom: 28px;
}

.redirect-btn {
  display: block;
  background: linear-gradient(to bottom, var(--red), var(--red-dark));
  color: white;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  letter-spacing: .5px;
  margin-bottom: 12px;
  transition: opacity .2s;
}

.redirect-btn:hover { opacity: .9; }

.redirect-note {
  font-size: 12px;
  color: var(--gray-mid);
}

/* Review Inline CTA */
.review-cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, var(--black), #2d1010);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.inline-cta-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inline-cta-name {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.inline-cta-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.inline-cta-price span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-left: 6px;
  vertical-align: middle;
}

.btn-visit-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  padding: 14px 28px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.btn-visit-large:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* Sidebar visit button */
.btn-sidebar-visit {
  display: block;
  text-align: center;
  background: var(--red);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}

.btn-sidebar-visit:hover { background: var(--red-dark); }

/* Lifetime plan row highlight in sidebar */
.plan-lifetime-row .stat-label {
  color: var(--red);
  font-weight: 700;
}

.plan-lifetime-row .stat-value {
  color: var(--red);
  font-weight: 800;
  font-size: 15px;
}

/* Author compact */
.reviewer-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--gray-dark);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 40px;
}

.reviewer-card-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--red);
}

.reviewer-card-body {
  flex: 1;
  min-width: 0;
}

.reviewer-card-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-mid);
  margin-bottom: 2px;
}

.reviewer-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.reviewer-card-bio {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
}

.reviewer-card-bio a {
  color: var(--red);
  text-decoration: none;
}

.reviewer-card-link {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
}

.reviewer-card-link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .reviewer-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }
}

/* Footer */
.site-footer {
  background: var(--gray-dark);
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
  margin-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

.footer-brand {
  max-width: 240px;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--red);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin-top: 12px;
  line-height: 1.5;
}

/* Utilities */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-red { color: var(--red); }
.text-gray { color: var(--gray-mid); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ═══════════════════════════════════════════════════════════════════
   Review V2 — What You Get, Value Calculator, FAQ
   ═══════════════════════════════════════════════════════════════════ */

.v2-section-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

/* ── Verified badge ── */
.v2-verified-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #4cbb17;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 8px;
  letter-spacing: .3px;
}

.v2-updated-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 8px;
  margin-left: 6px;
  letter-spacing: .3px;
}

/* ── Verdict ── */
.v2-verdict {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  box-shadow: var(--card-shadow);
}

.v2-verdict-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}

.v2-verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .v2-verdict-grid { grid-template-columns: 1fr; }
}

.v2-verdict-buy, .v2-verdict-skip {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-verdict-heading {
  font-size: 14px;
  font-weight: 700;
  color: #4cbb17;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.v2-verdict-heading--skip {
  color: var(--red);
}

/* ── Related Reviews ── */
.v2-related {
  margin-top: 32px;
}

.v2-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .v2-related-grid { grid-template-columns: 1fr; }
}

.v2-related-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--card-shadow);
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}

.v2-related-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.v2-related-card--next {
  text-align: right;
}

.v2-related-dir {
  font-size: 12px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.v2-related-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.v2-related-score {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}

/* ── Sidebar CTA ── */
.v2-sidebar-cta {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 24px 16px;
  text-align: center;
  border: 2px solid var(--red);
}

.v2-sidebar-cta-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
}

.v2-sidebar-price-old {
  font-size: 16px;
  color: var(--gray-mid);
  text-decoration: line-through;
}

.v2-sidebar-price-now {
  font-size: 42px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.v2-sidebar-price-label {
  font-size: 12px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 4px;
}

.v2-sidebar-plans {
  border-top: 1px solid var(--gray-light);
  margin: 0 -16px 16px;
  padding: 12px 16px 0;
}

.v2-sidebar-plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-mid);
  padding: 4px 0;
}

.v2-sidebar-plan-row s {
  color: var(--gray-mid);
  font-weight: 400;
  margin-right: 4px;
}

.v2-sidebar-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 20px;
}

/* ── What You Get ── */
.v2-what-you-get {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--card-shadow);
}

.v2-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 600px) {
  .v2-features-grid { grid-template-columns: repeat(2, 1fr); }
}

.v2-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  gap: 6px;
}

.v2-feature-icon {
  width: 28px;
  height: 28px;
  color: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v2-feature-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
}

.v2-feature-name {
  font-size: 11px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Value Calculator ── */
.v2-value-calc {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--card-shadow);
}

.v2-value-subtitle {
  font-size: 14px;
  color: var(--gray-mid);
  margin-bottom: 20px;
  line-height: 1.4;
}

.v2-calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 600px) {
  .v2-calc-grid { grid-template-columns: 1fr; }
}

.v2-calc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  gap: 8px;
  border: 2px solid transparent;
}

.v2-calc-highlight {
  border-color: var(--red);
  background: var(--red-light);
}

.v2-calc-period {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--gray-mid);
}

.v2-calc-monthly {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-mid);
  text-decoration: line-through;
}

.v2-calc-monthly small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
}

.v2-calc-lifetime {
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
}

.v2-calc-lifetime small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-mid);
}

.v2-calc-saving {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.v2-calc-positive {
  background: #e6f9e6;
  color: #2d8a2d;
}

.v2-calc-negative {
  background: #fff3e0;
  color: #b36b00;
}

.v2-calc-verdict {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-dark);
  text-align: center;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

/* ── FAQ ── */
.v2-faq {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  box-shadow: var(--card-shadow);
}

.v2-faq-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}

.v2-faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.v2-faq-item:last-child {
  border-bottom: none;
}

.v2-faq-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v2-faq-question::-webkit-details-marker { display: none; }

.v2-faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .2s;
}

details[open] .v2-faq-question::after {
  content: '−';
}

.v2-faq-answer {
  font-size: 14px;
  color: var(--gray-dark);
  padding: 0 0 16px;
  line-height: 1.6;
}
