/* ==========================================================================
   POKÉCOOL — LANDING PAGE CSS
   Premium dark theme, glassmorphism, full responsive (desktop + mobile)
   ========================================================================== */

/* ── CSS Custom Properties ─────────────────────────────────────────────────── */
:root {
  --bg-primary: #0d0d0f;
  --bg-secondary: #121214;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-glass: rgba(255, 255, 255, 0.06);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 203, 5, 0.25);

  --accent-yellow: #FFCB05;
  --accent-yellow-dim: rgba(255, 203, 5, 0.15);
  --accent-yellow-glow: rgba(255, 203, 5, 0.35);
  --accent-blue: #38bdf8;
  --accent-green: #4ade80;
  --accent-red: #f87171;

  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b0;
  --text-muted: #606070;

  --font-body: 'Quicksand', sans-serif;
  --font-display: 'Orbitron', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(255, 203, 5, 0.2);
  --shadow-glow-strong: 0 0 50px rgba(255, 203, 5, 0.35);

  --transition: all 0.25s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Background Gradient ────────────────────────────────────────────────────── */
.landing-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(255, 203, 5, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(56, 189, 248, 0.05) 0%, transparent 55%),
    var(--bg-primary);
}

/* ── HEADER / NAV ─────────────────────────────────────────────────────────── */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 1.5rem;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.header-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.header-brand svg {
  width: 36px;
  height: 36px;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.brand-title span {
  color: var(--accent-yellow);
}

/* Nav Links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
  background: linear-gradient(135deg, var(--accent-yellow), #d4af37);
  color: #1a1a1a;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 203, 5, 0.3);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 203, 5, 0.45);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 30px rgba(255, 203, 5, 0.35);
}

.btn-primary.btn-lg:hover {
  box-shadow: 0 12px 40px rgba(255, 203, 5, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  background: var(--bg-glass);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  background: transparent;
  color: var(--accent-yellow);
  border: 1.5px solid var(--accent-yellow);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--accent-yellow-dim);
  box-shadow: 0 0 16px rgba(255, 203, 5, 0.2);
}

/* ── MAIN WRAPPER ─────────────────────────────────────────────────────────── */
.landing-main {
  position: relative;
  z-index: 1;
}

/* ── SECTION COMMONS ──────────────────────────────────────────────────────── */
.section {
  padding: 6rem 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--accent-yellow-dim);
  border: 1px solid rgba(255, 203, 5, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--accent-yellow), #ffd740);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.text-center {
  text-align: center;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ── HERO SECTION ─────────────────────────────────────────────────────────── */
.hero-section {
  padding: 5rem 1.5rem 4rem;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-yellow-dim);
  border: 1px solid rgba(255, 203, 5, 0.4);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.5rem;
  animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 203, 5, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(255, 203, 5, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffd740 50%, #ffaa00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--accent-green);
  font-size: 0.75rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 203, 5, 0.15),
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 203, 5, 0.1);
  animation: float-hero 6s ease-in-out infinite;
}

@keyframes float-hero {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-img-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(13, 13, 15, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-yellow);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-img-badge-left {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(13, 13, 15, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-green);
}

/* ── STATS BAND ─────────────────────────────────────────────────────────── */
.stats-band {
  padding: 2.5rem 1.5rem;
  background: var(--bg-glass);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent-yellow);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── FEATURES GRID ─────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-glow);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.feature-icon.yellow { background: rgba(255, 203, 5, 0.15); color: var(--accent-yellow); }
.feature-icon.blue   { background: rgba(56, 189, 248, 0.15); color: var(--accent-blue); }
.feature-icon.green  { background: rgba(74, 222, 128, 0.15); color: var(--accent-green); }
.feature-icon.purple { background: rgba(167, 139, 250, 0.15); color: #a78bfa; }
.feature-icon.red    { background: rgba(248, 113, 113, 0.15); color: var(--accent-red); }
.feature-icon.orange { background: rgba(251, 146, 60, 0.15); color: #fb923c; }

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--accent-yellow-dim);
  color: var(--accent-yellow);
  border: 1px solid rgba(255, 203, 5, 0.25);
}

/* ── HOW IT WORKS ───────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-yellow-dim), var(--accent-yellow-dim));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-yellow), #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: #1a1a1a;
  box-shadow: 0 0 20px rgba(255, 203, 5, 0.3);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.step-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-glass);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--accent-yellow);
  font-size: 0.8rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-yellow), #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  color: #1a1a1a;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── PRICING ────────────────────────────────────────────────────────────── */
.pricing-section {
  background: var(--bg-glass);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: var(--transition-slow);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing-card.popular {
  border-color: var(--accent-yellow);
  background: rgba(255, 203, 5, 0.04);
  box-shadow: 0 0 40px rgba(255, 203, 5, 0.12);
}

.pricing-card.popular:hover {
  box-shadow: 0 0 60px rgba(255, 203, 5, 0.2), var(--shadow-card);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-yellow), #d4af37);
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-bottom: 0.4rem;
}

.pricing-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-feature i.fa-check {
  color: var(--accent-green);
  font-size: 0.8rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.pricing-feature i.fa-xmark {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.pricing-feature.disabled {
  color: var(--text-muted);
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
  font-size: 0.95rem;
}

.pricing-guarantee {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-guarantee i { color: var(--accent-green); }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--border-glow); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: var(--font-body);
  text-align: left;
}

.faq-question:hover { color: var(--accent-yellow); }
.faq-question i { color: var(--text-muted); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); color: var(--accent-yellow); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

/* ── CTA FINAL SECTION ─────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255, 203, 5, 0.07) 0%, transparent 70%);
}

.cta-section .section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); }

.cta-trust-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
}

.cta-trust-item i { color: var(--accent-green); }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.landing-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.footer-brand svg { width: 28px; height: 28px; }

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-brand-title span { color: var(--accent-yellow); }

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 38px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-link:hover { color: var(--accent-yellow); }

.footer-divider {
  color: var(--border-color);
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.7;
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* ── MOBILE MENU ─────────────────────────────────────────────────────────── */
.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  background: rgba(13, 13, 15, 0.98);
  border-bottom: 1px solid var(--border-color);
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  z-index: 99;
}

.mobile-nav.open { display: flex; }

.mobile-nav-link {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

/* ── ANIMATIONS ────────────────────────────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }
.fade-in-up.delay-4 { transition-delay: 0.4s; }
.fade-in-up.delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE — Tablette (≤900px) ────────────────────────────────────── */
@media (max-width: 900px) {
  /* Header */
  .header-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-cta { display: none !important; }

  /* Hero */
  .hero-section { padding: 3rem 1.25rem 3rem; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-description { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .steps-grid::before { display: none; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; max-width: 860px !important; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ── RESPONSIVE — Mobile & Tablettes Étroites (≤768px) ──────────────────── */
@media (max-width: 768px) {
  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 440px !important; }
}

/* ── RESPONSIVE — Mobile (≤600px) ──────────────────────────────────────── */
@media (max-width: 600px) {
  .section { padding: 2.25rem 1rem !important; }
  .hero-section { padding: 1.75rem 1rem 1.75rem !important; }

  /* Header */
  .header-inner { height: 56px !important; }
  .header-cta .btn-secondary { display: none !important; }
  .mobile-nav { top: 56px !important; }

  /* Hero */
  .hero-title { font-size: 1.75rem !important; line-height: 1.25 !important; }
  .hero-description { font-size: 0.92rem !important; line-height: 1.4 !important; margin-bottom: 1.25rem !important; }
  .btn-primary.btn-lg { padding: 0.75rem 1.4rem !important; font-size: 0.95rem !important; }
  .hero-cta-group { flex-direction: column !important; width: 100% !important; gap: 0.5rem !important; }
  .hero-cta-group > * { width: 100% !important; justify-content: center !important; }
  .hero-trust { flex-direction: column !important; align-items: center !important; gap: 0.5rem !important; margin-top: 1.25rem !important; }
  .hero-img-badge, .hero-img-badge-left { font-size: 0.65rem !important; padding: 0.45rem 0.65rem !important; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
  .stat-number { font-size: 1.35rem !important; }
  .stat-label { font-size: 0.75rem !important; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.6rem !important; }
  .feature-card { padding: 0.75rem !important; border-radius: var(--radius-md) !important; }
  .feature-icon { width: 32px !important; height: 32px !important; font-size: 0.85rem !important; margin-bottom: 0.5rem !important; }
  .feature-title { font-size: 0.85rem !important; margin-bottom: 0 !important; line-height: 1.2 !important; }
  .feature-description { display: none !important; }
  .feature-tag { display: none !important; }

  /* Section Typography */
  .section-title { font-size: 1.35rem !important; line-height: 1.25 !important; }
  .section-subtitle { font-size: 0.88rem !important; }

  /* Pricing */
  .pricing-grid { gap: 1rem !important; }
  .pricing-card { padding: 1.5rem !important; }
  .pricing-amount { font-size: 2rem !important; }
  .pricing-features { gap: 0.5rem !important; }
  .pricing-feature { font-size: 0.85rem !important; }

  /* Final CTA */
  .cta-section { padding: 2.5rem 1rem !important; }

  /* Footer */
  .footer-links { justify-content: center !important; gap: 0.75rem !important; }
  .footer-brand { margin-bottom: 0.35rem !important; }
}

/* ════════════════════════════════════════════════════════
   INTERACTIVE HOLOGRAPHIC CARD SHOWCASE
   ════════════════════════════════════════════════════════ */
.hero-visual {
  perspective: 1200px;
}

.hero-card-showcase {
  position: absolute;
  bottom: -35px;
  left: -25px;
  width: 175px;
  height: 245px;
  background-image: url('https://assets.tcgdex.net/fr/base/base1/4/high.png');
  background-size: cover;
  background-position: center;
  border-radius: 11px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(255, 203, 5, 0.25);
  transform: rotateY(-15deg) rotateX(10deg);
  transform-style: preserve-3d;
  transition: transform 0.1s ease, box-shadow 0.3s ease;
  cursor: pointer;
  z-index: 20;
  overflow: hidden;
  display: block;
}

/* Shine overlay */
.holo-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 60%
  ),
  linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0.3) 38%,
    rgba(255, 255, 255, 0.15) 45%,
    transparent 55%
  );
  background-size: 200% 200%;
  background-position: 50% 50%;
  mix-blend-mode: color-dodge;
  opacity: 0.8;
  z-index: 2;
  transition: background-position 0.1s ease, opacity 0.3s ease;
  pointer-events: none;
}

/* Hover effects */
.hero-card-showcase:hover {
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.6),
    0 0 35px rgba(255, 203, 5, 0.4);
}

/* Hide or scale down on small screens to avoid clipping */
@media (max-width: 900px) {
  .hero-card-showcase {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 2rem auto 0 auto;
    width: 160px;
    height: 224px;
    transform: none !important;
  }
}

