*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:'Poppins',sans-serif;
  background:#f3f3f6;
  color:#111;
  overflow-x:hidden;
}

/* background */
.bg-layer{position:fixed;inset:0;z-index:-1}
.bg-image{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.62;
  filter:brightness(.92) contrast(1.08) saturate(1.1);
}

/* layout */
.container{
  max-width:620px;
  margin:0 auto;
  padding:0 16px;
}

/* hero */
.hero{
  text-align:center;
  padding:18px 0 10px;
}
.hero-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.logo-wrapper{max-width:320px}
.logo{width:100%;display:block}

.hero-title{
  font-size:1.7rem;
  font-weight:900;
  color:#d21717;
  text-shadow:0 0 11px #ffe86e, 0 0 0px #ffcc00, 0 0 20px #ffaa00, 0 0 40px #ff8800;
}

/* urgency-badge — стекло + glow */
.urgency-badge{
  background:rgba(255,215,0,0.18);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  color:#111;
  padding:8px 24px;
  border-radius:50px;
  font-weight:900;
  font-size:1.05rem;
  letter-spacing:1px;
  box-shadow:0 6px 20px rgba(255,215,0,.5);
  border:1px solid rgba(255,215,0,0.35);
  text-shadow:0 0 10px rgba(255,215,0,0.7);
}

/* hero-card — стекло */
.hero-card{
  max-width:520px;
  background:rgba(30,30,30,0.28);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  color:#fff;
  border-radius:16px;
  padding:14px 16px;
  box-shadow:0 10px 26px rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,0.12);
  text-shadow:0 1px 4px rgba(0,0,0,0.6);
  
}

/* ЕДИНЫЙ БЛОК таймер + счётчик — фиксированный размер */
.unified-timer-joined {
  margin: 20px auto;
  width: 100%;
  max-width: 520px;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(20,20,20,0.92), rgba(30,30,30,0.88));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 3px solid #ffd700;
  box-shadow: 0 0 40px rgba(255,215,0,0.45);
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  transition: transform .25s ease, box-shadow .25s ease;
}

.timer-part {
  flex: 0 0 auto;
  margin-bottom: 18px;
}

.countdown-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.95;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 2.85rem;
  font-weight: 900;
}

/* closed state for countdown (no layout break) */
.countdown-closed{
  display:none;
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(255, 68, 68, 0.18);
  border: 1px solid rgba(255, 68, 68, 0.35);
  color:#ff4444;
  font-weight:900;
  letter-spacing:1px;
  text-shadow:0 0 12px rgba(255, 68, 68, 0.55);
  font-size:1.35rem;
}

.countdown-timer.is-closed .time-box,
.countdown-timer.is-closed .time-separator{ display:none; }
.countdown-timer.is-closed .countdown-closed{ display:block; }

.time-box {
  background: rgba(255,255,255,0.25);
  padding: 8px 14px;
  border-radius: 12px;
  min-width: 78px;
  text-align: center;
}

.time-box span { display: block; }
.time-box small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 2px;
  opacity: 0.9;
  color: #ffd700;
}

.time-separator {
  font-size: 2.4rem;
  font-weight: 300;
  opacity: 0.6;
}

.joined-part {
  flex: 0 0 auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,215,0,0.3);
}

.joined-text {
  font-size: 1.15rem;
  margin-bottom: 6px;
  text-shadow: 0 0 10px rgba(255,232,110,0.6);
}

.joined-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 16px #ffe86e, 0 0 8px #ffcc00;
  min-width: 220px;
  height: 60px;
  line-height: 1;
}

.fire-emoji {
  font-size: 2.4rem;
  filter: drop-shadow(0 0 8px #ff4444);
}

.unified-timer-joined:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 60px rgba(255,215,0,0.6);
}

/* video */
.creative-section{padding:16px 0 24px}
.video-wrapper{
  position:relative;
  max-width:520px;
  margin:0 auto;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  opacity:0;
  transform:translateY(14px);
  transition:.35s ease;
  cursor:pointer;
}
.creative-video{width:100%;display:block}

.play-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
}
.play-overlay.hidden{
  opacity:0;
  visibility:hidden;
}
.play-btn-img{width:78px;height:auto}

/* CTA */
.cta-block{text-align:center;margin-top:16px}

.join-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:520px;
  margin:0 auto;
  padding:20px 0;
  background: linear-gradient(180deg, #2AABEE 0%, #229ED9 100%);
  color:#ffffff;
  font-size:1.2rem;
  font-weight:900;
  letter-spacing:.2px;
  border:none;
  border-radius:16px;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 12px 32px rgba(34,158,217,.45), inset 0 0 0 1px rgba(255,255,255,.18);
  position:relative;
  overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease;
}
.join-btn:hover{
  transform: translateY(-3px);
  box-shadow:0 18px 40px rgba(34,158,217,.55), inset 0 0 0 1px rgba(255,255,255,.25);
}
.join-btn:active{transform: scale(.97)}

.join-btn::after{
  content:"";
  position:absolute;
  top:-60%;
  left:-60%;
  width:220%;
  height:220%;
  background: radial-gradient(circle, rgba(255,255,255,.25) 0%, rgba(255,255,255,0) 58%);
  opacity:0;
  animation:ctaPulse 2.6s infinite;
}
@keyframes ctaPulse{
  0%{opacity:0}
  30%{opacity:.4}
  60%{opacity:0}
  100%{opacity:0}
}

/* live-profit — белый фон + glow */
.live-profit{
  margin:12px auto 0;
  max-width:520px;
  padding:14px 16px;
  background:#ffffff;
  border-radius:14px;
  box-shadow: 
    0 8px 20px rgba(0,0,0,.12),
    0 0 0 4px rgba(255,232,110,0.15),
    inset 0 0 0 1px rgba(255,232,110,0.08);
  border:1px solid rgba(255,232,110,0.18);
  text-align:center;
  transition: box-shadow .3s ease;
}

.live-profit:hover {
  box-shadow: 
    0 12px 30px rgba(0,0,0,.18),
    0 0 0 6px rgba(255,232,110,0.25),
    inset 0 0 0 1px rgba(255,232,110,0.12);
}

.live-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:900;
  color:#111;
}

.live-dot{
  width:8px;height:8px;border-radius:50%;
  background:#22c55e;
  animation:pulseGreen 1.4s infinite;
  box-shadow:0 0 12px #22c55e;
}
@keyframes pulseGreen{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.6)}
  70%{box-shadow:0 0 0 6px rgba(34,197,94,0)}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}

.profit-main{
  display:block;
  margin-top:6px;
  font-weight:900;
  color:#111;
}
.profit-sub{
  display:block;
  margin-top:6px;
  font-size:.9rem;
  color:#666;
}

.profit-grid{
  margin-top:10px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.profit-cell{
  background:#f9f9f9;
  border:1px solid #eee;
  border-radius:12px;
  padding:10px 8px;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.profit-cell.is-show{
  opacity:1;
  transform:translateY(0);
}

.profit-cell.is-active{
  border-color:#ffd700;
  box-shadow:0 10px 26px rgba(255,215,0,.22), inset 0 0 0 1px rgba(255,215,0,.18);
}

.profit-label{font-size:.78rem;font-weight:800;color:#555}
.profit-value{
  margin-top:4px;
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:4px;
  font-weight:900;
  color:#111;
}
.profit-value .cur{font-size:.9rem;opacity:.9}
.profit-value span[id]{font-size:1.12rem;line-height:1}

/* section titles (scoped to avoid conflicts) */
.benefits .section-title{
  font-size:1.35rem;
  font-weight:730;
  text-align:center;
  color:#2a2626;
  margin-bottom:14px;
  text-shadow:0 0 12px rgba(255,255,255,0.4);
}

.testimonials-section .section-title{
  font-size: 1.55rem;
  font-weight: 600;
  text-align: center;
  color: #111;
  margin-bottom: 28px;
}

/* benefits */
.benefits{padding:26px 0 34px}
.benefits-grid{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
}
.benefit-item{
  width:100%;
  max-width:520px;
  background:rgba(255,255,255,0.07);
  backdrop-filter:blur(16px);
  border-radius:16px;
  padding:18px 16px;
  box-shadow:0 8px 20px rgba(0,0,0,.12), inset 0 0 0 1px rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  text-align:center;
}
.benefit-item h3{margin:0 0 6px;font-weight:900;color:#ffffff;text-shadow:0 0 9px rgba(255,232,110,0.5);}
.benefit-item p{margin:0;color:#ffe86e;font-weight:600;}

/* footer */
.footer{
  text-align:center;
  padding:12px 0;
  font-size:.95rem;
  color:#aaa;
  background:rgba(0,0,0,0.3);
  backdrop-filter:blur(8px);
}

/* testimonials */
.testimonials-section {
  padding: 36px 0 42px;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.testimonial-item {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-6px);
}

.testimonial-photo {
  width: 90px;
  height: 90px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffd700;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  color: #ffc107;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.5;
  color: #222;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-name {
  font-weight: 700;
  color: #111;
  font-size: 1rem;
}

/* mobile */
@media(max-width:480px){
  .logo-wrapper{max-width:260px}
  .video-wrapper{max-width:440px}
  .benefit-item{max-width:440px}
  .profit-grid{grid-template-columns:1fr}
  .join-btn{font-size:1.08rem;padding:18px 0}
  .unified-timer-joined{padding:16px 20px; min-height: 180px;}
  .countdown-timer{font-size:2.2rem; gap:12px;}
  .time-box{min-width:64px; padding:6px 10px;}
  .joined-number{font-size:1.8rem; min-width: 180px;}
  .testimonials-grid{grid-template-columns:1fr; gap:20px;}
  .testimonial-item{padding:20px 16px;}
  .testimonial-photo{width:80px; height:80px;}
}
