 /* ── AKTSIYA 92 DNI — page styles v1 ── */

/* ── Hero ── */
.promo-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5vw 80px;
  position: relative;
  overflow: hidden;
}
.promo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(74,222,128,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(108,62,244,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.35);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4ADE80;
  margin-bottom: 28px;
}
.promo-badge .dot {
  width: 6px; height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.promo-hero h1 {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 900px;
}
.accent-green { color: #4ADE80; }
.accent-purple { color: #A78BFA; }
.accent-orange { color: #FB923C; }

.promo-hero .subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ── Big number 92 ── */
.big-year {
  font-size: clamp(160px, 28vw, 280px);
  font-weight: 900;
  line-height: 1;
  color: rgba(74,222,128,0.08);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -8px;
  z-index: 0;
  white-space: nowrap;
  animation: bigFloat 8s ease-in-out infinite;
}
@keyframes bigFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 16px)); }
}

/* ── Timer ── */
.timer-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.timer-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 80px;
  text-align: center;
}
.timer-num {
  font-size: 36px;
  font-weight: 900;
  color: #4ADE80;
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.timer-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #555;
  margin-top: 6px;
  display: block;
}
.timer-sep {
  font-size: 32px;
  font-weight: 900;
  color: #333;
  align-self: center;
  margin-top: -10px;
}

.promo-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.promo-deadline {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
}
.promo-deadline strong { color: var(--muted); }

/* ── Sections ── */
.section-wrap {
  padding: 80px 5vw;
  max-width: 1100px;
  margin: 0 auto;
}
.section-wrap h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.section-wrap .lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ── RISE BLOCK ($700 → $1000) ── */
.rise-grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.rise-card {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
}
.rise-card.now {
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.3);
}
.rise-card.oct {
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.3);
}
.rise-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 12px;
}
.rise-card.now .rise-tag { color: #4ADE80; }
.rise-card.oct .rise-tag { color: #FB923C; }
.rise-price {
  font-size: clamp(38px, 6vw, 52px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.rise-card.now .rise-price { color: #4ADE80; }
.rise-card.oct .rise-price { color: #FB923C; }
.rise-card p:last-child { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.rise-arrow {
  font-size: 40px;
  color: #FB923C;
  align-self: center;
  animation: arrowPulseX 1.6s ease-in-out infinite;
}
@keyframes arrowPulseX {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(8px); opacity: 1; }
}
.rise-note {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.rise-note a { color: #4ADE80; }
@media (max-width: 560px) {
  .rise-grid { flex-direction: column; align-items: center; }
  .rise-card { width: 100%; max-width: none; }
  .rise-arrow { animation: arrowPulseY 1.6s ease-in-out infinite; }
}
@keyframes arrowPulseY {
  0%, 100% { transform: rotate(90deg) translateX(0); opacity: 0.7; }
  50% { transform: rotate(90deg) translateX(8px); opacity: 1; }
}

/* ── Price timeline ── */
.price-timeline { position: relative; margin: 40px 0; }
.price-line {
  height: 4px;
  background: linear-gradient(90deg, #4ADE80, #A78BFA, #EC4899, #f87171);
  border-radius: 4px;
  transform-origin: left center;
}
/* стан до анімації задає JS через клас .pre — без JS все видно одразу */
.price-timeline.pre .price-line { transform: scaleX(0); }
.price-timeline.pre .price-point { opacity: 0; transform: translateY(14px); }
.price-timeline.animated .price-line {
  transform: scaleX(1);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.price-timeline.animated .price-point {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.price-timeline.animated .price-point:nth-child(1) { transition-delay: 0.15s; }
.price-timeline.animated .price-point:nth-child(2) { transition-delay: 0.45s; }
.price-timeline.animated .price-point:nth-child(3) { transition-delay: 0.75s; }
.price-timeline.animated .price-point:nth-child(4) { transition-delay: 1.05s; }

.price-points {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.price-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}
.price-point::before {
  content: '';
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid;
  background: var(--card);
  margin-top: -8px;
  margin-bottom: 12px;
  z-index: 1;
  position: relative;
}
.price-point:nth-child(1)::before { border-color: #4ADE80; }
.price-point:nth-child(2)::before { border-color: #A78BFA; }
.price-point:nth-child(3)::before { border-color: #EC4899; }
.price-point:nth-child(4)::before { border-color: #f87171; }
.price-point .p-day { font-size: 11px; color: #555; margin-bottom: 4px; }
.price-point .p-val { font-size: 20px; font-weight: 900; font-variant-numeric: tabular-nums; }
.price-point:nth-child(1) .p-val { color: #4ADE80; }
.price-point:nth-child(2) .p-val { color: #A78BFA; }
.price-point:nth-child(3) .p-val { color: #EC4899; }
.price-point:nth-child(4) .p-val { color: #f87171; }
.price-point .p-note { font-size: 11px; color: #444; margin-top: 4px; text-align: center; }

/* ── Highlight box ── */
.highlight-box {
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 14px;
  padding: 22px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.highlight-box strong { color: var(--text); }
.highlight-box a { color: #4ADE80; }

/* ── Feature cards ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 768px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.feat-card:hover { border-color: rgba(74,222,128,0.3); transform: translateY(-3px); }
.feat-card .feat-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.feat-card h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.feat-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 40px;
}
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; gap: 24px; } }
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,222,128,0.4), rgba(74,222,128,0.4), transparent);
}
@media (max-width: 768px) { .steps::before { display: none; } }

.step { padding: 0 16px 32px; text-align: center; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid rgba(74,222,128,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #4ADE80;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.step h3 { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.step .step-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}
.step .step-tag.green { background: rgba(74,222,128,0.12); color: #4ADE80; }
.step .step-tag.purple { background: rgba(108,62,244,0.12); color: #A78BFA; }
.step .step-tag.orange { background: rgba(249,115,22,0.12); color: #FB923C; }

/* ── Who it's for ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
@media (max-width: 768px) { .who-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .who-grid { grid-template-columns: 1fr; } }

.who-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.who-card:hover { border-color: rgba(74,222,128,0.3); transform: translateY(-3px); }
.who-card .wi { font-size: 26px; margin-bottom: 10px; display: block; }
.who-card h3 { font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.who-card p { font-size: 12px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ── After test ── */
.after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 560px) { .after-grid { grid-template-columns: 1fr; } }
.after-card { border-radius: 14px; padding: 24px; }
.after-card.buy {
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.25);
}
.after-card.skip {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.after-card h3 { font-size: 16px; font-weight: 500; margin-bottom: 12px; }
.after-card.buy h3 { color: #4ADE80; }
.after-card.skip h3 { color: #555; }
.after-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── FAQ ── */
.faq-section {
  padding: 0 5vw 80px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-section h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.faq-item { border: 1px solid rgba(168,85,247,0.2); border-radius: 12px; padding: 20px; margin-bottom: 12px; }
.faq-item summary { font-weight: 500; font-size: 15px; cursor: pointer; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { color: #4ADE80; font-size: 20px; flex-shrink: 0; }
.faq-item p { margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── Final CTA ── */
.final-cta { padding: 0 5vw 100px; max-width: 900px; margin: 0 auto; }
.final-cta-box {
  background: linear-gradient(135deg, rgba(74,222,128,0.1), rgba(108,62,244,0.1));
  border: 1px solid rgba(74,222,128,0.35);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,222,128,0.1), transparent 70%);
  pointer-events: none;
}
.final-cta-box .cta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #4ADE80;
  font-weight: 500;
  margin-bottom: 16px;
}
.final-cta-box h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-cta-box p { color: var(--muted); font-size: 16px; margin-bottom: 8px; line-height: 1.6; }
.final-cta-box .cta-note { font-size: 13px; color: #555; margin-bottom: 36px; }
.final-cta-box .cta-note a { color: #4ADE80; }
.final-cta-box .cta-note strong { color: #FB923C; }

/* ── Reveal-on-scroll (клас .reveal додає JS — без JS все видно) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

section { padding: 0; }