/* ══════════════════════════════════════════════
   SCONSETT AI VAULT — PREMIUM STYLES
   Dark Corporate AI Aesthetic
══════════════════════════════════════════════ */

:root {
  --midnight: #060812;
  --surface: #0d1117;
  --card: #111827;
  --card-hover: #141f2e;
  --border: #1e2d40;
  --border-light: #243348;
  --accent: #00d4ff;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --accent-purple: #7c3aed;
  --accent-green: #00ff9d;
  --neon: #00ffcc;
  --gold: #f5c842;
  --text-muted: #6b7280;
  --gradient-1: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #00ff9d 100%);
  --gradient-2: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--midnight);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NEURAL CANVAS ── */
#neural-bg {
  opacity: 0.35;
}

/* ── GRADIENT ORBS ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  top: 300px;
  right: -100px;
  animation-delay: -7s;
}
.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00ff9d 0%, transparent 70%);
  bottom: 200px;
  left: 30%;
  animation-delay: -14s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  33% { transform: translateY(-40px) scale(1.05); }
  66% { transform: translateY(30px) scale(0.95); }
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BADGE PILL ── */
.badge-pill {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ── PULSE DOT ── */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* ── CTA BUTTONS ── */
.cta-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.25), 0 4px 20px rgba(124, 58, 237, 0.3);
}
.cta-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00ffcc 0%, #00d4ff 50%, #7c3aed 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cta-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.4), 0 8px 30px rgba(124, 58, 237, 0.5);
}
.cta-btn-primary:hover::before { opacity: 1; }
.cta-btn-primary span, .cta-btn-primary { position: relative; z-index: 1; }

.cta-btn-sm {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--accent);
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.cta-btn-sm:hover {
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  transform: translateY(-1px);
}

/* ── EXPIRED WHATSAPP BUTTON ── */
.expired-wa-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
  animation: waPulse 2s ease-in-out infinite;
}
.expired-wa-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.5);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 25px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 0 45px rgba(37, 211, 102, 0.55); }
}

/* ── COUNTDOWN TIMER ── */
.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 72px;
  position: relative;
  overflow: hidden;
}
.timer-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(124,58,237,0.05) 100%);
}
.timer-digit {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  transition: transform 0.15s ease;
  position: relative;
  z-index: 1;
}
.timer-digit.flip {
  animation: digitFlip 0.15s ease;
}
@keyframes digitFlip {
  0% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0); opacity: 0; }
  100% { transform: scaleY(1); opacity: 1; }
}
.timer-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.timer-sep {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  animation: colonBlink 1s step-end infinite;
  line-height: 1;
  padding-bottom: 18px;
}
@keyframes colonBlink {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.1; }
}

/* ── STATS BAR ── */
.stats-bar { }
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s ease, transform 0.2s ease;
}
.stat-item:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-2px);
}
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  background: rgba(0,212,255,0.05);
  margin-bottom: 8px;
}

/* ── PROBLEM CARDS ── */
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.problem-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.problem-card:hover {
  border-color: rgba(239,68,68,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.problem-card:hover::after { opacity: 1; }
.problem-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 14px;
}

/* ── SOLUTION CARDS ── */
.solution-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(0,212,255,0.03);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 16px;
  padding: 20px 24px;
  transition: border-color 0.3s ease, transform 0.2s ease, background 0.3s ease;
}
.solution-card:hover {
  border-color: rgba(0,212,255,0.35);
  background: rgba(0,212,255,0.06);
  transform: translateX(4px);
}
.solution-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  border-radius: 50%;
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
  margin-top: 2px;
}

/* ── VALUE TABLE ── */
.value-table {
  background: var(--card);
  border: 1px solid var(--border);
}
.value-table-header {
  background: linear-gradient(135deg, rgba(0,212,255,0.15) 0%, rgba(124,58,237,0.15) 100%);
  color: var(--accent);
  border-bottom: 1px solid var(--border);
}
.value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: #9ca3af;
  transition: background 0.2s ease;
}
.value-row:hover { background: rgba(255,255,255,0.02); }
.value-row-final {
  background: rgba(0,255,157,0.05);
  border-bottom: none;
  font-size: 1rem;
}

/* ── PILLAR CARDS ── */
.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, rgba(124,58,237,0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,212,255,0.08);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.pillar-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.06);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

/* ── BONUS CARDS ── */
.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #7c3aed, #00ff9d);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(0,212,255,0.2);
}

/* New bonus card highlight */
.bonus-card-new {
  border-color: rgba(0,255,157,0.25);
  background: linear-gradient(135deg, rgba(0,255,157,0.03) 0%, var(--card) 60%);
}
.bonus-card-new::before {
  background: linear-gradient(90deg, #00ff9d, #00d4ff, #7c3aed);
}
.bonus-card-new:hover {
  border-color: rgba(0,255,157,0.4);
  box-shadow: 0 20px 60px rgba(0,255,157,0.08), 0 4px 30px rgba(0,0,0,0.4);
}
.bonus-new-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #00ff9d, #00d4ff);
  color: #060812;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
}

.bonus-free-tag {
  position: absolute;
  top: -1px;
  right: 32px;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 4px 14px 6px;
  border-radius: 0 0 10px 10px;
}
.bonus-free-tag-new {
  background: linear-gradient(135deg, #00ff9d, #00d4ff);
  color: #060812;
}

.bonus-icon-wrap {
  font-size: 3rem;
  line-height: 1;
  min-width: 56px;
  padding-top: 4px;
}
.bonus-icon-new {
  filter: drop-shadow(0 0 12px rgba(0,255,157,0.4));
}

.free-badge {
  background: linear-gradient(135deg, rgba(0,255,157,0.2), rgba(0,212,255,0.2));
  border: 1px solid rgba(0,255,157,0.3);
  color: var(--accent-green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
}

.bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9ca3af;
  font-size: 0.875rem;
}
.bonus-list li::before {
  content: '✦';
  color: var(--accent);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.limited-notice {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  color: rgba(0,212,255,0.05);
  font-family: 'Syne', sans-serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.2);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}
.result-badge {
  display: inline-block;
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.18);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── SUPPORT CARDS ── */
.support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 20px;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.support-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,212,255,0.06);
}
.support-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

/* ── FINAL CTA BG ── */
.final-cta-bg {
  background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(124,58,237,0.08) 50%, rgba(0,255,157,0.04) 100%);
  border: 1px solid rgba(0,212,255,0.15);
  box-shadow: 0 0 80px rgba(124,58,237,0.1), 0 0 40px rgba(0,212,255,0.06);
}

/* ── PRICE BREAKDOWN ── */
.price-breakdown {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  text-align: left;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: #9ca3af;
  transition: background 0.2s ease;
}
.price-row:hover { background: rgba(255,255,255,0.02); }
.price-total {
  background: rgba(255,255,255,0.02);
  font-size: 0.9rem;
}
.price-you-pay {
  border-bottom: none;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(0,255,157,0.06) 0%, rgba(0,212,255,0.04) 100%);
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── SELECTION ── */
::selection {
  background: rgba(0, 212, 255, 0.25);
  color: #fff;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--midnight); }
::-webkit-scrollbar-thumb {
  background: rgba(0,212,255,0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0,212,255,0.5); }

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 640px) {
  .timer-digit { font-size: 1.75rem; }
  .timer-block { padding: 10px 14px; min-width: 60px; }
  .timer-sep { font-size: 1.5rem; }
  .bonus-card { padding: 28px 20px; }
  .bonus-icon-wrap { font-size: 2.25rem; min-width: 44px; }
  .final-cta-bg { padding: 32px 20px; }
}

/* ── HIDDEN utility ── */
.hidden { display: none !important; }

/* ══════════════════════════════════════════════
   SCONSETT AI VAULT — EXTENDED STYLES v2
   Higgsfield Team Plan, Guarantee, FAQ, Urgency Bar
══════════════════════════════════════════════ */

/* ── URGENCY STICKY BAR ── */
.urgency-bar {
  background: linear-gradient(90deg, rgba(124,58,237,0.9) 0%, rgba(0,212,255,0.9) 50%, rgba(0,255,157,0.9) 100%);
  padding: 10px 0;
  text-align: center;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  animation: urgencyGlow 3s ease-in-out infinite;
}
@keyframes urgencyGlow {
  0%, 100% { box-shadow: 0 2px 20px rgba(0,212,255,0.3); }
  50% { box-shadow: 0 2px 35px rgba(124,58,237,0.5); }
}
.urgency-bar-inner { gap: 8px; }
.urgency-fire { font-size: 1rem; animation: fireShake 0.5s ease-in-out infinite alternate; }
@keyframes fireShake {
  from { transform: rotate(-5deg) scale(1); }
  to { transform: rotate(5deg) scale(1.1); }
}
.urgency-text { color: #fff; font-size: 0.82rem; }
.urgency-sep { color: rgba(255,255,255,0.4); }

/* ── HIGGSFIELD TEAM PLAN BADGE ── */
.higgsfield-team-badge {
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(0,212,255,0.2));
  border: 1px solid rgba(124,58,237,0.4);
  color: #a78bfa;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── HIGGSFIELD HOW IT WORKS ── */
.bonus-higgsfield {
  border-color: rgba(124,58,237,0.3);
  background: linear-gradient(135deg, rgba(124,58,237,0.04) 0%, var(--card) 40%);
}
.bonus-higgsfield::before {
  background: linear-gradient(90deg, #7c3aed, #00d4ff, #00ff9d);
}
.higgsfield-how-it-works {
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 16px;
  overflow: hidden;
}
.hiw-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(124,58,237,0.12);
  border-bottom: 1px solid rgba(124,58,237,0.15);
}
.hiw-icon { font-size: 1rem; }
.hiw-body { padding: 16px; }
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hiw-step-num {
  min-width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #7c3aed, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
}
.hiw-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 10px;
  padding: 10px 12px;
}

/* ── 7-DAY GUARANTEE SECTION ── */
.guarantee-card {
  background: linear-gradient(135deg, rgba(0,255,157,0.04) 0%, rgba(0,212,255,0.04) 50%, rgba(124,58,237,0.06) 100%);
  border: 1px solid rgba(0,255,157,0.25);
  border-radius: 28px;
  padding: 48px 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,255,157,0.06), 0 0 30px rgba(0,212,255,0.04);
  animation: guaranteePulse 4s ease-in-out infinite;
}
@keyframes guaranteePulse {
  0%, 100% { box-shadow: 0 0 60px rgba(0,255,157,0.06), 0 0 30px rgba(0,212,255,0.04); }
  50% { box-shadow: 0 0 80px rgba(0,255,157,0.12), 0 0 50px rgba(0,212,255,0.08); }
}
.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff9d, #00d4ff, #7c3aed);
}
.guarantee-shield-wrap {
  flex-shrink: 0;
}
.guarantee-shield {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0,255,157,0.15), rgba(0,212,255,0.1));
  border: 2px solid rgba(0,255,157,0.35);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: shieldRotate 8s linear infinite;
}
@keyframes shieldRotate {
  0% { box-shadow: 0 0 0 0 rgba(0,255,157,0.4); }
  50% { box-shadow: 0 0 30px 6px rgba(0,255,157,0.15); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,157,0.4); }
}
.shield-icon { font-size: 1.8rem; line-height: 1; }
.shield-days {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1;
}
.shield-day-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-green);
  opacity: 0.8;
}
.guarantee-tag {
  display: inline-block;
  background: rgba(0,255,157,0.1);
  border: 1px solid rgba(0,255,157,0.25);
  color: var(--accent-green);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.guarantee-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.guarantee-pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,157,0.05);
  border: 1px solid rgba(0,255,157,0.15);
  border-radius: 100px;
  padding: 7px 14px;
}
.gp-icon { font-size: 0.9rem; }

/* Responsive guarantee */
@media (max-width: 640px) {
  .guarantee-card { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; gap: 24px; }
  .guarantee-pillars { justify-content: center; }
}

/* ── FAQ SECTION ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(0,212,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.faq-item.open {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25), 0 0 20px rgba(0,212,255,0.05);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}
.faq-question:hover { background: rgba(0,212,255,0.04); }
.faq-chevron {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-answer p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.75;
  padding-bottom: 20px;
}
.faq-answer p strong { color: #e5e7eb; }
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-top: 0;
}

/* ── FINAL GUARANTEE BADGE ── */
.final-guarantee-badge {
  background: rgba(0,255,157,0.06);
  border: 1px solid rgba(0,255,157,0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.final-guarantee-badge:hover {
  border-color: rgba(0,255,157,0.35);
  box-shadow: 0 0 20px rgba(0,255,157,0.08);
}

/* ── FLOATING PARTICLES ANIMATION ── */
@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
  33% { transform: translateY(-30px) translateX(10px) scale(1.1); opacity: 0.8; }
  66% { transform: translateY(-15px) translateX(-8px) scale(0.9); opacity: 0.6; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.06);
  border-radius: 100px;
  padding: 4px 14px;
}

/* ── STATS BAR ── */
.stats-bar { gap: 16px; }
.stat-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: border-color 0.3s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.04), rgba(124,58,237,0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stat-item:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-3px); }
.stat-item:hover::before { opacity: 1; }
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── VALUE TABLE ── */
.value-table { background: var(--card); border: 1px solid var(--border); }
.value-table-header {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(124,58,237,0.08));
  border-bottom: 1px solid var(--border);
  color: var(--accent);
}
.value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  color: #9ca3af;
  font-size: 0.875rem;
  transition: background 0.2s ease;
}
.value-row:hover { background: rgba(255,255,255,0.01); }
.value-row-final {
  border-bottom: none;
  background: linear-gradient(135deg, rgba(0,255,157,0.06), rgba(0,212,255,0.04));
  padding: 18px 24px;
}

/* ── SOLUTION CARDS ── */
.solution-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: border-color 0.3s ease, transform 0.2s ease;
}
.solution-card:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-3px); }
.solution-check {
  min-width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,255,157,0.15));
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── PROBLEM CARDS ── */
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, #f97316);
}
.problem-card:hover { transform: translateY(-5px); border-color: rgba(239,68,68,0.25); box-shadow: 0 16px 50px rgba(0,0,0,0.3); }
.problem-icon { font-size: 2rem; margin-bottom: 12px; display: block; }

/* ── PILLAR CARDS ── */
.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

