/* VSL page specific styles */

/* ---- Header ---- */
.vsl-header{
  background:#111;
  padding:10px 0;
  text-align:center;
}
.vsl-header p{
  color:#fff;font-size:.85rem;font-weight:600;letter-spacing:.3px;
  margin:0;
}
.vsl-header span{color:var(--gold)}

/* ---- Hero ---- */
.vsl-hero{
  background:linear-gradient(180deg,#111 0%,#1a1a1a 100%);
  padding:32px 0 40px;
  color:#fff;
  text-align:center;
}
.vsl-hero h1{
  color:#fff;
  font-size:clamp(1.4rem,4.5vw,2rem);
  max-width:640px;
  margin:0 auto 16px;
}
.vsl-hero h1 span{color:var(--gold)}
.viewer-count{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:50px;
  padding:6px 16px;
  font-size:.85rem;
  color:#ddd;
  margin-bottom:20px;
}
.viewer-dot{
  width:8px;height:8px;border-radius:50%;
  background:#f00;
  animation:blink 1.2s ease-in-out infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}

/* ---- Video container ---- */
.video-wrap{
  position:relative;
  max-width:640px;
  margin:0 auto;
  border-radius:12px;
  overflow:hidden;
  background:#000;
  box-shadow:0 8px 40px rgba(0,0,0,.5);
}
.video-wrap iframe,
.video-wrap video{
  display:block;
  width:100%;
  aspect-ratio:16/9;
  border:none;
}
/* Video progress bar */
.video-progress{
  position:absolute;bottom:0;left:0;right:0;height:4px;
  background:rgba(255,255,255,.2);
  z-index:10;
}
.video-progress-fill{
  height:100%;background:var(--brand);
  width:0%;transition:width .5s linear;
}
/* Engagement overlay (shows after inactivity) */
.engagement-overlay{
  position:absolute;inset:0;z-index:20;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;justify-content:center;
  flex-direction:column;gap:16px;
  text-align:center;padding:24px;
}
.engagement-overlay.active{display:flex}
.engagement-overlay p{color:#fff;font-size:1.1rem;font-weight:600}
.engagement-overlay button{
  background:var(--brand);color:#fff;
  padding:14px 32px;border-radius:50px;
  font-weight:800;font-size:1rem;
}

/* ---- Watch note ---- */
.watch-note{
  text-align:center;
  color:#bbb;
  font-size:.85rem;
  margin-top:12px;
}
.watch-note span{color:var(--gold);font-weight:600}

/* ---- Video CTA (appears below video after threshold) ---- */
.video-cta-section{
  max-width:640px;margin:32px auto 0;
  text-align:center;
  opacity:0;transform:translateY(16px);
  transition:opacity .6s,transform .6s;
  pointer-events:none;
}
.video-cta-section.revealed{opacity:1;transform:none;pointer-events:auto}
.video-cta-section h2{font-size:clamp(1.2rem,3.5vw,1.6rem);margin-bottom:16px}

/* ---- Social proof bar ---- */
.social-proof-bar{
  background:var(--bg-light);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:12px 0;
}
.sp-bar-inner{
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:8px 24px;
  text-align:center;
}
.sp-stat{font-size:.85rem;font-weight:700;color:#111}
.sp-stat span{display:block;color:var(--muted);font-weight:400;font-size:.78rem}

/* ---- Bonus section ---- */
.bonus-card{
  display:flex;gap:16px;align-items:flex-start;
  background:#fff;border:1px solid var(--border);
  border-radius:12px;padding:20px;
  margin-bottom:16px;
}
.bonus-thumb{
  width:80px;height:80px;flex-shrink:0;
  border-radius:8px;overflow:hidden;
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  background:#fff;
}
.bonus-thumb img{width:100%;height:100%;object-fit:cover}
.bonus-content .bonus-label{
  font-size:.75rem;font-weight:700;color:var(--brand);
  text-transform:uppercase;letter-spacing:.5px;
  margin-bottom:4px;
}
.bonus-content h3{font-size:1rem;margin-bottom:4px}
.bonus-price{font-size:.85rem}
.bonus-price del{color:#bbb}
.bonus-price strong{color:var(--green)}

/* ---- FAQ ---- */
.faq-item{
  border-bottom:1px solid var(--border);
}
.faq-question{
  width:100%;text-align:left;
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 0;
  font-weight:700;font-size:1rem;
  cursor:pointer;gap:12px;
}
.faq-icon{
  font-size:1.4rem;flex-shrink:0;
  transition:transform .25s;
  color:var(--brand);
}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-answer{
  max-height:0;overflow:hidden;
  transition:max-height .35s ease;
  font-size:.95rem;line-height:1.7;color:var(--muted);
}
.faq-item.open .faq-answer{max-height:400px}
.faq-answer-inner{padding-bottom:16px}

/* ============================================================
   TESTIMONIALS — two-row drag-scroll infinite carousel
   Works on desktop and mobile
   ============================================================ */

.testi-section{
  background:#f9f9f9;
  overflow:hidden;
}

.testi-rail{
  overflow:hidden;
  position:relative;
  padding:4px 0;
  /* fade edges for depth */
  -webkit-mask-image:linear-gradient(to right,transparent 0,#000 5%,#000 95%,transparent 100%);
  mask-image:linear-gradient(to right,transparent 0,#000 5%,#000 95%,transparent 100%);
}

.testi-track{
  display:flex;
  gap:12px;
  width:max-content;
}

/* Card */
.tcard-c{
  width:272px;
  flex-shrink:0;
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:12px;
  padding:16px;
  display:flex;
  flex-direction:column;
}

/* Shared card internals */
.tcard-top{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.tcard-photo{
  width:40px;height:40px;border-radius:50%;
  object-fit:cover;flex-shrink:0;
  background:#f3f4f6;border:1.5px solid #e8e8e8;
}
.tcard-name{font-weight:700;font-size:.85rem;line-height:1.2;color:#1a1a1a}
.tcard-loc{font-size:.7rem;color:#9ca3af;margin-bottom:2px}
.tcard-stars{font-size:.78rem;color:#f59e0b;line-height:1;letter-spacing:1px}
.tcard-quote{font-size:.83rem;color:#4b5563;line-height:1.6;flex:1;margin-bottom:8px}
.tcard-date{font-size:.68rem;color:#d1d5db;margin-top:auto}

/* ── Article page legacy ── */
.testimonial-grid{display:grid;grid-template-columns:1fr;gap:16px}
@media(min-width:600px){.testimonial-grid{grid-template-columns:repeat(2,1fr)}}
.testimonial-card{background:#fff;border:1px solid var(--border);border-radius:12px;padding:20px}
.tcard-header{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.tcard-avatar{width:44px;height:44px;border-radius:50%;background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.1rem;flex-shrink:0}
.tcard-verified{font-size:.75rem;color:var(--green)}
.tcard-body{font-size:.9rem;color:#333;line-height:1.6;font-style:italic}
