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

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --purple: #7c5cfc;
  --purple-light: #9b7dff;
  --purple-dark: #5b3fd4;
  --text: #ffffff;
  --text-muted: #888;
  --text-dim: #555;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 24px; }
.logo-text { font-weight: 800; font-size: 18px; color: var(--text); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* ---- BUTTONS ---- */
.btn-discord {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
}
.btn-discord:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--purple-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }
.btn-large { padding: 14px 28px; font-size: 16px; border-radius: 10px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(124,92,252,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(124,92,252,0.4);
  background: rgba(124,92,252,0.08);
  font-size: 13px;
  color: var(--purple-light);
  font-weight: 500;
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.stat { text-align: center; }
.stat-number { display: block; font-size: 26px; font-weight: 800; color: var(--text); }
.stat-label { font-size: 13px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ---- SECTIONS ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-header p { font-size: 16px; color: var(--text-muted); }

/* ---- FEATURES ---- */
.features {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(124,92,252,0.3);
  transform: translateY(-2px);
}
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover { border-color: rgba(124,92,252,0.35); transform: translateY(-2px); }
.step-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(124,92,252,0.15);
  border: 1px solid rgba(124,92,252,0.35);
  color: var(--purple-light);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-arrow { font-size: 24px; color: var(--text-dim); flex-shrink: 0; }
@media (max-width: 700px) { .step-arrow { display: none; } }

/* ---- PRICING ---- */
.pricing {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: rgba(124,92,252,0.3); }
.pricing-card--featured {
  border-color: rgba(124,92,252,0.5);
  background: linear-gradient(135deg, rgba(124,92,252,0.08) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.featured-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,92,252,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.plan-name { font-size: 18px; font-weight: 800; }
.plan-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.plan-badge--popular {
  background: rgba(124,92,252,0.2);
  color: var(--purple-light);
  border-color: rgba(124,92,252,0.4);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.price-amount { font-size: 52px; font-weight: 900; letter-spacing: -0.03em; }
.price-period { font-size: 16px; color: var(--text-muted); }
.plan-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(124,92,252,0.2);
  color: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.05);
  transition: all 0.2s;
}
.btn-plan:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.btn-plan--featured {
  background: var(--purple);
  border-color: transparent;
  color: #fff;
}
.btn-plan--featured:hover { background: var(--purple-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,92,252,0.35); }

.pricing-card--lifetime {
  border-color: rgba(251, 191, 36, 0.4);
  background: linear-gradient(135deg, rgba(251,191,36,0.07) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.pricing-card--lifetime:hover { border-color: rgba(251,191,36,0.6); }
.lifetime-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(251,191,36,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.plan-badge--lifetime {
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
  border-color: rgba(251,191,36,0.35);
}
.btn-plan--lifetime {
  background: linear-gradient(135deg, #d97706, #fbbf24);
  border-color: transparent;
  color: #000;
  font-weight: 800;
}
.btn-plan--lifetime:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(251,191,36,0.3); }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---- FAQ ---- */
.faq {
  padding: 80px 24px;
  max-width: 700px;
  margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(124,92,252,0.3); }
.faq-q { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ---- CTA FINAL ---- */
.cta-section {
  padding: 80px 24px;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(124,92,252,0.1) 0%, rgba(124,92,252,0.05) 100%);
  border: 1px solid rgba(124,92,252,0.25);
  border-radius: 24px;
  padding: 60px 40px;
}
.cta-inner h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-inner p { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-muted); }
.footer-copy { font-size: 13px; color: var(--text-dim); }

/* ---- NAME CLARIFICATION ---- */
.name-clarif {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  background: rgba(124,92,252,0.07);
  border: 1px solid rgba(124,92,252,0.2);
  border-radius: 8px;
  padding: 10px 16px;
  max-width: 580px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.name-clarif strong { color: rgba(255,255,255,0.85); }

/* ---- DISCORD MOCKUP ---- */
.discord-mockup {
  background: #2b2d31;
  border-radius: 12px;
  overflow: hidden;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.discord-header {
  background: #313338;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.discord-hash { color: #80848e; font-size: 16px; font-weight: 700; }
.discord-messages { padding: 12px 0; display: flex; flex-direction: column; gap: 2px; }
.discord-msg { display: flex; gap: 12px; padding: 4px 16px; align-items: flex-start; }
.discord-msg:hover { background: rgba(255,255,255,0.02); }
.discord-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.user-av { background: #5865f2; }
.bot-av { background: var(--purple); }
.discord-msg-content { flex: 1; }
.discord-username { font-weight: 700; font-size: 13px; margin-right: 8px; }
.bot-name-msg { color: #5865f2; }
.discord-msg-text { color: #dbdee1; font-size: 13px; display: block; margin-top: 2px; font-family: monospace; background: rgba(255,255,255,0.04); padding: 4px 8px; border-radius: 4px; }
.discord-embed { margin-top: 6px; display: flex; gap: 0; background: #2b2d31; border-radius: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.embed-bar { width: 4px; background: var(--purple); flex-shrink: 0; }
.embed-content { padding: 10px 12px; }
.embed-title { font-weight: 700; font-size: 13px; color: #fff; margin-bottom: 8px; }
.embed-field { font-size: 12px; color: #b5bac1; margin-bottom: 3px; }
.embed-field span { font-weight: 600; color: #dbdee1; margin-right: 6px; }
.discord-footer { background: #1e1f22; padding: 8px 16px; font-size: 11px; color: #6d6f78; border-top: 1px solid rgba(255,255,255,0.04); }

/* ---- HERO DESC ---- */
.hero-desc-stripe {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ---- TRUST BAR ---- */
.stripe-trust-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.trust-sep { color: var(--text-dim); }

/* ---- PROOF SECTION ---- */
.proof-section { padding: 80px 24px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 1000px; margin: 0 auto; }
.proof-header { text-align: center; margin-bottom: 48px; }
.proof-header h2 { font-size: 30px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.proof-header p { color: var(--text-muted); font-size: 15px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.proof-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-align: center; }
.proof-number { font-size: 36px; font-weight: 900; color: var(--purple-light); letter-spacing: -0.02em; }
.proof-label { font-size: 14px; font-weight: 700; margin: 6px 0 4px; }
.proof-sub { font-size: 12px; color: var(--text-muted); }
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-bottom: 40px; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.testimonial-stars { color: #fbbf24; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; font-style: italic; margin-bottom: 12px; }
.testimonial-author { font-size: 12px; color: var(--text-muted); }
.bot-commands-showcase { text-align: center; }
.commands-title { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.commands-list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.cmd-tag { background: rgba(124,92,252,0.1); border: 1px solid rgba(124,92,252,0.25); border-radius: 6px; padding: 5px 12px; font-size: 13px; font-family: monospace; color: var(--purple-light); }
@media (max-width: 700px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- HERO PILLS ---- */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ---- WHAT IS ---- */
.what-is { padding: 80px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.what-is-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.what-is-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.what-is-text p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 16px; }
.what-is-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge-item { padding: 6px 14px; border-radius: 8px; background: rgba(124,92,252,0.1); border: 1px solid rgba(124,92,252,0.25); font-size: 13px; color: var(--purple-light); font-weight: 500; }
.bot-preview { background: #111; border: 1px solid var(--border); border-radius: 16px; padding: 24px; font-size: 14px; }
.bot-preview-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.bot-avatar { font-size: 36px; }
.bot-name { font-weight: 700; font-size: 15px; }
.bot-tag { background: var(--purple); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-left: 6px; }
.bot-status { font-size: 12px; color: #22c55e; display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.bot-commands { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.bot-cmd { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-family: monospace; font-size: 13px; color: rgba(255,255,255,0.7); }
.cmd-prefix { color: var(--purple-light); font-weight: 700; }
.bot-preview-footer { font-size: 12px; color: var(--text-muted); padding-top: 12px; border-top: 1px solid var(--border); }
@media (max-width: 768px) { .what-is-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ---- SUPPORT SECTION ---- */
.support-section { padding: 80px 24px; max-width: 1000px; margin: 0 auto; }
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.support-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; transition: border-color 0.2s; }
.support-card:hover { border-color: rgba(124,92,252,0.3); }
.support-icon { font-size: 36px; margin-bottom: 14px; }
.support-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.support-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.65; }

/* ---- PRICING STRIPE NOTE ---- */
.pricing-stripe-note { text-align: center; font-size: 13px; color: var(--text-dim); display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }

/* ---- FOOTER NEW ---- */
.footer-tagline { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 120px; }
.footer-col-title { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-muted); }
.footer-bottom { border-top: 1px solid var(--border); padding: 16px 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--text-dim); margin: 4px 0; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 860px;
  background: #1a1a1a;
  border: 1px solid rgba(124,92,252,0.35);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  animation: slideUp 0.35s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}
.cookie-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.cookie-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.cookie-text a { color: var(--purple-light); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.cookie-btn--decline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.cookie-btn--decline:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.cookie-btn--accept {
  background: var(--purple);
  color: #fff;
}
.cookie-btn--accept:hover { background: var(--purple-light); }
.cookie-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border: 1px solid rgba(251,191,36,0.4);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  color: #fbbf24;
  z-index: 9998;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.cookie-toast button {
  margin-left: 12px;
  background: none;
  border: none;
  color: var(--purple-light);
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}

/* ---- SCREENSHOTS SECTION ---- */
.screenshots-section { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.screen-block { display: flex; flex-direction: column; gap: 14px; }
.screen-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(124,92,252,0.2);
  margin-bottom: 4px;
}
.screen-mockup .discord-avatar { width: 28px; height: 28px; font-size: 13px; }
.screen-mockup .discord-msg { padding: 3px 12px; gap: 8px; }
.screen-mockup .discord-username { font-size: 11px; }
.screen-mockup .discord-msg-text { font-size: 11px; }
.screen-mockup .embed-title { font-size: 11px; }
.screen-mockup .embed-field { font-size: 10px; }
.screen-mockup .discord-footer { font-size: 10px; }
.screen-mockup .discord-header { font-size: 12px; }
@media (max-width: 960px) { .screenshots-grid { grid-template-columns: 1fr; } }

/* ---- REMBOURSEMENT NOTE (near pricing) ---- */
.refund-notice {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin: 16px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.refund-notice a { color: var(--purple-light); text-decoration: none; }
.refund-notice a:hover { text-decoration: underline; }

/* ---- LEGAL INFO BOX ---- */
.legal-info-box {
  background: rgba(124,92,252,0.06);
  border: 1px solid rgba(124,92,252,0.22);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.legal-info-box h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--purple-light); }
.legal-info-table { width: 100%; border-collapse: collapse; }
.legal-info-table tr td { padding: 7px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.legal-info-table tr:last-child td { border-bottom: none; }
.legal-info-table .info-key { color: var(--text-muted); width: 180px; }
.legal-info-table .info-val { color: rgba(255,255,255,0.85); font-weight: 500; }
.legal-info-note { font-size: 12px; color: var(--text-dim); margin-top: 12px; font-style: italic; }

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-large { text-align: center; justify-content: center; }
  .cta-inner { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-cols { gap: 24px; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-card { max-width: 100%; }
  .section-header { margin-bottom: 36px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .stripe-trust-bar { flex-direction: column; gap: 6px; border-radius: 12px; }
  .trust-sep { display: none; }
  .hero-badge { font-size: 12px; text-align: center; }
  .name-clarif { font-size: 12px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-pills { gap: 6px; }
  .pill { font-size: 12px; padding: 5px 10px; }
  .price-amount { font-size: 42px; }
  .proof-number { font-size: 28px; }
  .what-is-inner { grid-template-columns: 1fr; gap: 32px; }
  .support-grid { grid-template-columns: 1fr; }
  .faq-q { font-size: 14px; }
}

/* Tableau comparatif scrollable sur mobile */
@media (max-width: 768px) {
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 520px; }
  .tarifs-page h1 { font-size: 28px; }
}
