.section-reviews-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background-color: var(--color-canvas);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rev-aurora-container {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 140%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.rev-aurora-blob {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  animation: auroraFloat 12s infinite ease-in-out alternate;
}

.rev-aurora-blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 122, 34, 0.15);
  
  top: 10%;
  left: 20%;
}

.rev-aurora-blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(100, 100, 255, 0.1);
  
  bottom: 10%;
  right: 15%;
  animation-delay: -5s;
}

@keyframes auroraFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -50px) scale(1.1);
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-rating-badge .stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.hero-rating-badge .rating-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-heading);
}

.hero-spaced-title {
  margin-bottom: 1.5rem;
}

.hero-narrow-description {
  max-width: 700px;
  margin: 0 auto;
}


.reviews-marquee-wrap {
  position: relative;
  padding: 2rem 0;
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--color-surface), transparent);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--color-surface), transparent);
}

.reviews-marquee {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: scrollMarquee 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.mq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FF7A22;
  
}

.mq-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  flex-shrink: 0;
  display: block;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.section-wall {
  padding: 6rem 0;
}

.bg-light {
  background-color: #FAF8F5;
  
}

.dark-title {
  color: #1a1a1a;
}

.dark-subtitle {
  color: #555;
}

.section-header-spaced {
  margin-bottom: 4rem;
}

.subtitle-spaced {
  margin-top: 1rem;
}

.scroll-grid-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 3rem;
  
}

.scroll-grid {
  display: flex;
  overflow: hidden;
  
  width: 100%;
}

.scroll-grid+.scroll-grid {
  margin-top: 1.5rem;
}

.scroll-grid-content {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollMarqueeRight 40s linear infinite;
}

.scroll-grid-content.reverse {
  animation: scrollMarqueeLeft 40s linear infinite;
}

.scroll-grid:hover .scroll-grid-content {
  animation-play-state: paused;
}

@keyframes scrollMarqueeRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes scrollMarqueeLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.scroll-grid-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.left-fade {
  left: 0;
  background: linear-gradient(to right, #FAF8F5 20%, transparent);
}

.right-fade {
  right: 0;
  background: linear-gradient(to left, #FAF8F5 20%, transparent);
}


.rev-card-flat {
  min-width: 320px;
  max-width: 350px;
  background-color: #F4F1ED;
  
  border-radius: 12px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  scroll-snap-align: start;
  flex-shrink: 0;
  border: 1px solid #EAE6DF;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.stars-flat {
  display: flex;
  gap: 4px;
}

.stars-flat svg {
  width: 18px;
  height: 18px;
  fill: #FA7268;
  
}

.rev-text-flat {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.rev-author-flat {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar-flat {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info-flat h4 {
  margin: 0;
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: 600;
}

.author-info-flat p {
  margin: 0 0 0 0;
  color: #888;
  font-size: 0.85rem;
}


.section-evidence {
  padding: 6rem 0;
  background-color: var(--color-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.eyebrow-spaced {
  margin-bottom: 1rem;
  display: inline-block;
}

.comparison-table-wrapper {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table td {
  font-size: 1rem;
  color: var(--color-text-body);
}

.comparison-table td strong {
  color: var(--color-text-heading);
  font-weight: 600;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .diy-col {
  width: 33%;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table .ct-col {
  width: 38%;
  background: rgba(255, 122, 34, 0.05);
  
  position: relative;
}

.comparison-table th.ct-col {
  color: #FF7A22;
  font-weight: 700;
  border-top: 2px solid #FF7A22;
}

.comparison-table .ct-cell,
.comparison-table .diy-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comparison-table .ct-cell span {
  font-weight: 600;
  color: var(--color-text-heading);
}

@media (max-width: 768px) {

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .comparison-table .diy-col,
  .comparison-table .ct-col {
    width: auto;
  }

  .inline-svg {
    width: 16px;
    height: 16px;
  }
}



.section-cta {
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--color-surface);
}

.cta-gradient-box {
  background: linear-gradient(135deg, #FF7A22 0%, #D43F00 100%);
  border-radius: 24px;
  padding: 4rem 2rem;
  box-shadow: 0 20px 40px rgba(255, 122, 34, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  max-width: 900px;
  margin: 0 auto;
}

.cta-title-light {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-subtitle-light {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.btn-glow {
  background-color: #ffffff;
  color: #D43F00;
  border: none;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: inline-block;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  background-color: #f8f8f8;
  color: #D43F00;
}

.trust-light {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}


.section-faq {
  padding: 6rem 0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #F4F1ED;
  border: 1px solid #EAE6DF;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  border-color: #dfd7cc;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  
}


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

.faq-icon {
  color: #FF7A22;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  color: #555;
  line-height: 1.6;
  font-size: 1.05rem;
}

.faq-answer p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {

  .rev-aurora-blob,
  .marquee-content,
  .rev-card,
  .play-console-mockup {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}


@media (max-width: 768px) {

  
  .section-reviews-hero {
    padding: 5rem 1rem 3rem;
  }

  .hero-badge-wrap {
    margin-bottom: 1.5rem;
  }

  .hero-rating-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .hero-rating-badge .stars {
    font-size: 0.9rem;
  }

  .hero-spaced-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-narrow-description {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  
  .reviews-marquee-wrap {
    padding: 1.5rem 0;
  }

  .marquee-item {
    font-size: 0.85rem;
    padding: 0 1.25rem;
  }

  
  .section-wall {
    padding: 4rem 0;
  }

  .section-header-spaced {
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .rev-card-flat {
    min-width: 260px;
    max-width: 280px;
    padding: 1.25rem;
    gap: 0.85rem;
    border-radius: 10px;
  }

  .rev-text-flat {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .stars-flat svg {
    width: 14px;
    height: 14px;
  }

  .author-avatar-flat {
    width: 36px;
    height: 36px;
  }

  .author-info-flat h4 {
    font-size: 0.85rem;
  }

  .author-info-flat p {
    font-size: 0.75rem;
  }

  
  .section-comparison {
    padding: 4rem 0;
  }

  .comparison-table-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
    margin: 0 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 600px;
    
  }

  
  .section-cta {
    padding: 4rem 1rem;
  }

  .cta-gradient-box {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }

  .cta-title-light {
    font-size: 1.75rem;
  }

  .cta-subtitle-light {
    font-size: 1rem;
  }

  .btn-glow {
    width: 100%;
    text-align: center;
    padding: 0.875rem 2rem;
  }

  
  .section-faq {
    padding: 4rem 1rem;
  }

  .faq-question {
    padding: 1.25rem 1rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1.25rem;
    font-size: 0.95rem;
  }
}