/* ── TRIAL PAGE EXTRA STYLES ── */

/* NAV LINKS */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 6px 14px; border-radius: 20px; font-size: 14px;
  color: var(--muted); text-decoration: none; transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--text); background: rgba(108,62,244,0.15); }
@media (max-width: 680px) { .nav-links { display: none; } }



/* PAGE HERO */
.page-hero {
  padding: 140px 5vw 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 20px; font-size: 13px;
  border: 1px solid rgba(236,72,153,0.35); background: rgba(236,72,153,0.08);
  color: #F9A8D4; margin-bottom: 28px;
}
.page-hero h1 {
  font-size: clamp(32px, 6vw, 64px); font-weight: 900;
  line-height: 1.08; letter-spacing: -2px; margin-bottom: 20px;
}
.page-hero p {
  font-size: clamp(16px,2vw,20px); color: var(--muted);
  max-width: 600px; margin: 0 auto;
}

/* STEPS TIMELINE */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding: 0 0 40px; }
.timeline::before {
  content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--c1), var(--c3), transparent);
}
.timeline-item {
  display: flex; gap: 28px; margin-bottom: 40px;
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-dot {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; z-index: 1;
  background: linear-gradient(135deg, var(--c1), var(--c3));
  box-shadow: 0 0 24px rgba(108,62,244,0.4);
}
.timeline-body {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 28px; flex: 1;
  transition: border-color 0.3s;
}
.timeline-body:hover { border-color: rgba(168,85,247,0.5); }
.timeline-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.timeline-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.timeline-tag {
  display: inline-block; margin-top: 12px; padding: 3px 12px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  background: rgba(108,62,244,0.15); color: #A78BFA;
}

/* PRICE CHART */
.price-chart-wrap {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; overflow: hidden;
}
.price-chart-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.price-chart-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.price-chart { display: flex; align-items: flex-end; gap: 12px; height: 200px; }
.price-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.price-bar {
  width: 100%; border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--c1), var(--c3));
  transition: height 1s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; cursor: pointer;
}
.price-bar:hover { filter: brightness(1.2); }
.price-bar-tooltip {
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 4px 10px; font-size: 12px; font-weight: 700;
  white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.2s;
}
.price-bar:hover .price-bar-tooltip { opacity: 1; }
.price-bar-label { font-size: 12px; color: var(--muted); text-align: center; }
.price-bar-val { font-size: 13px; font-weight: 700; color: var(--text); }

/* COMPARISON TABLE */
.comp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 640px) { .comp-grid { grid-template-columns: 1fr; } }
.comp-card {
  border-radius: 20px; padding: 32px;
  border: 1px solid var(--border);
}
.comp-card.ours {
  background: linear-gradient(135deg, rgba(108,62,244,0.12), rgba(236,72,153,0.08));
  border-color: rgba(168,85,247,0.4);
}
.comp-card.theirs { background: var(--bg2); }
.comp-card-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.comp-card.ours .comp-card-label { color: #A78BFA; }
.comp-card.theirs .comp-card-label { color: var(--muted); }
.comp-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.comp-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px; gap: 12px;
}
.comp-row:last-child { border-bottom: none; }
.comp-row-label { color: var(--muted); }
.comp-row-val { font-weight: 600; text-align: right; }
.comp-row-val.green { color: #4ADE80; }
.comp-row-val.red { color: #F87171; }
.comp-total {
  margin-top: 20px; padding: 16px; border-radius: 12px;
  background: rgba(255,255,255,0.05); text-align: center;
}
.comp-total-num { font-size: 32px; font-weight: 900; }
.comp-total-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* CLUB CARD */
.club-card {
  background: linear-gradient(135deg, rgba(108,62,244,0.15), rgba(236,72,153,0.1));
  border: 1px solid rgba(168,85,247,0.35);
  border-radius: 24px; padding: 48px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 680px) { .club-card { grid-template-columns: 1fr; padding: 32px 24px; } }
.club-badge {
  display: inline-block; padding: 5px 16px; border-radius: 20px; font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  background: rgba(168,85,247,0.2); color: #C084FC; margin-bottom: 16px;
}
.club-card h3 { font-size: clamp(22px,3vw,30px); font-weight: 800; margin-bottom: 12px; }
.club-card p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.club-perks { display: flex; flex-direction: column; gap: 10px; }
.club-perk {
  display: flex; align-items: center; gap: 10px; font-size: 14px;
}
.club-perk-icon { font-size: 16px; }
.club-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.club-stat {
  background: rgba(255,255,255,0.05); border-radius: 14px; padding: 20px;
  text-align: center;
}
.club-stat-num {
  font-size: 32px; font-weight: 900;
  background: linear-gradient(135deg,#A78BFA,#EC4899);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.club-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* VPS INFO */
.vps-row {
  display: flex; align-items: center; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vps-row:last-child { border-bottom: none; }
.vps-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: rgba(108,62,244,0.15);
}
.vps-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.vps-text p { font-size: 13px; color: var(--muted); }

/* FLOATING PARTICLES */
@keyframes float-up {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}
.particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--c1); animation: float-up 4s infinite ease-in;
  pointer-events: none;
}

/* ANIMATED COUNTER */
.counter-num {
  font-size: clamp(36px,6vw,64px); font-weight: 900;
  background: linear-gradient(135deg,#A78BFA,#EC4899);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  display: inline-block;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  text-align: left; padding: 20px 0; font-size: 16px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-icon { font-size: 20px; color: var(--c2); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  font-size: 14px; color: var(--muted); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 0 20px; }