/* ════════════════════════════════════════
   Additional Pages Shared Styles v3
   (Coupons, Pricing, Features, Review, Alternatives)
════════════════════════════════════════ */

/* ── PAGE HERO (compact) ── */
.page-hero {
  padding: 34px 0 30px;
  background: #09090b;
  border-bottom: 1px solid #27272a;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(236,72,153,.09) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .hero-badge { margin-bottom: 9px; }
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800; color: #fff; margin-bottom: 9px; line-height: 1.22;
  position: relative; z-index: 1;
}
.page-hero p {
  color: #71717a; font-size: .88rem;
  max-width: 560px; margin: 0 auto;
  position: relative; z-index: 1;
  line-height: 1.6;
}
.page-hero-actions {
  display: flex; gap: 9px; justify-content: center;
  flex-wrap: wrap; margin-top: 14px;
  position: relative; z-index: 1;
}

/* ── PAGE HERO with carousel grid ── */
.page-hero.has-carousel {
  text-align: left;
  padding: 36px 0 32px;
}
.page-hero.has-carousel::before {
  background: radial-gradient(ellipse 65% 75% at 68% 50%, rgba(236,72,153,.1) 0%, transparent 65%);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative; z-index: 1;
}
.page-hero-content {}
.page-hero-content .hero-badge { margin-bottom: 9px; }
.page-hero-content h1 {
  margin: 0 0 9px;
  max-width: unset;
}
.page-hero-content p {
  margin: 0 0 14px;
  max-width: 480px;
}
.page-hero.has-carousel .page-hero-actions {
  justify-content: flex-start;
  margin-top: 0;
}
.page-hero-carousel {}

.page-hero.has-carousel .page-hero-content .breadcrumb {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .page-hero.has-carousel { text-align: center; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero.has-carousel .page-hero-actions { justify-content: center; }
  .page-hero-content p { margin-left: auto; margin-right: auto; }
  .page-hero-carousel .swipe-carousel { max-height: 320px; }
}
.breadcrumb {
  font-size: .74rem; color: #52525b; margin-bottom: 10px;
  display: flex; align-items: center; gap: 5px; justify-content: center;
  position: relative; z-index: 1;
}
.breadcrumb a { color: #71717a; }
.breadcrumb a:hover { color: #ec4899; }
.breadcrumb span { color: #52525b; }

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 7px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #18181b; border: 1px solid #27272a;
  border-radius: 12px; overflow: hidden;
  transition: all .25s;
}
.faq-item:hover { border-color: rgba(236,72,153,.3); }
.faq-item.open  { border-color: rgba(236,72,153,.4); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; cursor: pointer; font-weight: 600;
  color: #e4e4e7; font-size: .88rem;
  transition: all .25s; user-select: none;
  gap: 10px;
}
.faq-question:hover { background: rgba(236,72,153,.07); }
.faq-question i { color: #ec4899; transition: transform .3s; font-size: .74rem; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 16px 13px;
  color: #71717a; font-size: .85rem; line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* Light section FAQ */
.light-section .faq-item { background: #fff; border-color: #e4e4e7; }
.light-section .faq-item.open { border-color: rgba(236,72,153,.4); }
.light-section .faq-question { color: #09090b; }
.light-section .faq-question:hover { background: rgba(236,72,153,.05); }
.light-section .faq-answer { color: #52525b; }

/* ── REVIEW STARS ── */
.stars { color: #f59e0b; font-size: .92rem; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.25);
  padding: 5px 14px; border-radius: 99px;
}
.rating-num { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: .92rem; color: #f59e0b; }
.rating-badge-label { font-size: .8rem; color: #71717a; }

/* ── PROS / CONS ── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros-box, .cons-box {
  background: #18181b; border-radius: 14px; padding: 20px;
}
.pros-box { border: 1px solid rgba(34,197,94,.25); }
.cons-box { border: 1px solid rgba(239,68,68,.2); }
.pros-box h4 { color: #22c55e; margin-bottom: 12px; font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.cons-box h4 { color: #ef4444; margin-bottom: 12px; font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.pros-box li, .cons-box li {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: .83rem; color: #a1a1aa; margin-bottom: 7px; line-height: 1.55;
}
.pros-box li i { color: #22c55e; margin-top: 2px; flex-shrink: 0; }
.cons-box li i { color: #ef4444; margin-top: 2px; flex-shrink: 0; }

/* Light section pros/cons */
.light-section .pros-box,
.light-section .cons-box { background: #fff; }
.light-section .pros-box li,
.light-section .cons-box li { color: #3f3f46; }

/* ── REVIEW SCORE BARS ── */
.score-row {
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px;
}
.score-row-top {
  display: flex; justify-content: space-between; align-items: center;
}
.score-label { font-size: .84rem; color: #e4e4e7; }
.score-value { font-weight: 700; color: #f59e0b; font-size: .84rem; }
.score-bar-bg { background: #27272a; border-radius: 99px; height: 5px; }
.score-bar-fill { background: linear-gradient(90deg,#ec4899,#f36ab1); height: 100%; border-radius: 99px; }

/* ── SCORE PANEL (review page quick scores) ── */
.score-panel {
  background: #111113;
  border: 1px solid rgba(236,72,153,.2);
  border-radius: var(--radius); padding: 16px 18px; margin: 14px 0;
}
.score-panel h4 { color: #fff; margin-bottom: 14px; font-size: .92rem; font-weight: 700; }

/* ── VERDICT BOX ── */
.verdict-box {
  border-radius: 16px; padding: 24px 28px;
  border: 1px solid rgba(236,72,153,.3);
  background: #111113;
  text-align: center;
}
.verdict-box .rating-badge { margin: 0 auto 14px; }
.verdict-box h3 {
  font-size: 1.05rem; color: #fff; margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
}
.verdict-box p  { font-size: .86rem; color: #a1a1aa; line-height: 1.7; margin-bottom: 12px; }

/* Light verdict */
.light-section .verdict-box { background: #fff5f9; border-color: rgba(236,72,153,.3); }
.light-section .verdict-box h3 { color: #09090b; }
.light-section .verdict-box p  { color: #3f3f46; }

/* ── CHOICE BOX (alternatives bottom) ── */
.choice-box {
  background: #111113; border: 1px solid rgba(236,72,153,.3);
  border-radius: 16px; padding: 28px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.choice-box h3 { color: #fff; font-size: 1.05rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.choice-box p  { color: #a1a1aa; font-size: .86rem; line-height: 1.65; max-width: 580px; }

/* ── REVIEW OVERVIEW TWO-COL LAYOUT ── */
.review-overview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start;
}
.review-overview-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 700; color: #fff; margin-bottom: 10px;
}
.review-overview-text p {
  font-size: .86rem; color: #a1a1aa; line-height: 1.65; margin-bottom: 9px;
}
.review-overview-img { display: flex; flex-direction: column; gap: 10px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
  .review-overview-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .page-hero { padding: 24px 0 20px; }
  .page-hero h1 { font-size: 1.3rem; }
}
