@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700;800&display=swap');

/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */

:root {
  --bg-gradient: linear-gradient(180deg, #ff869a 0%, #ff959b 40%, #ffc0a5 100%);
  --ink: #1e0f17;
  --ink-muted: #5e3245;
  --pink-accent: #ff4d79;
  --pink-soft: #ffe8ee;
  --white-card: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.9);
  --glass-shadow: 0 12px 36px rgba(220, 90, 120, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background: var(--bg-gradient) fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Léger voile pour uniformiser les dégradés */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 134, 154, 0.15) 0%, rgba(255, 192, 165, 0.25) 100%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   2. NUAGES EN CSS PUR (Fixes en arrière-plan)
   ========================================================================== */

.sky-clouds {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  filter: blur(7px);
  opacity: 0.75;
}

.cloud--sm {
  width: 46px; height: 46px;
  box-shadow: 36px 6px 0 -8px #fff, 64px 2px 0 -14px #fff, 22px 22px 0 -12px #fff, 50px 24px 0 -14px #fff;
}

.cloud--md {
  width: 64px; height: 64px;
  box-shadow: 50px 8px 0 -10px #fff, 92px 4px 0 -18px #fff, 30px 32px 0 -16px #fff, 70px 34px 0 -18px #fff, 108px 26px 0 -22px #fff;
}

.cloud--lg {
  width: 88px; height: 88px;
  box-shadow: 68px 10px 0 -14px #fff, 124px 4px 0 -24px #fff, 40px 44px 0 -20px #fff, 96px 46px 0 -24px #fff, 148px 34px 0 -30px #fff, 10px 40px 0 -26px #fff;
}

.cloud--xl {
  width: 120px; height: 120px;
  box-shadow: 92px 14px 0 -20px #fff, 168px 6px 0 -32px #fff, 54px 60px 0 -26px #fff, 130px 64px 0 -32px #fff, 200px 46px 0 -40px #fff, 10px 56px 0 -34px #fff, -30px 30px 0 -38px #fff;
}

/* ==========================================================================
   3. TYPOGRAPHIE & BOUTONS
   ========================================================================== */

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.gradient-text {
  color: #ff3b6a;
  text-shadow: 0 2px 10px rgba(255, 59, 106, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-dark {
  background: #180d14;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(24, 13, 20, 0.25);
}

.btn-dark:hover {
  background: #2b1322;
}

.btn-login {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--ink);
}

.btn-white {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.btn-plan {
  width: 100%;
  background: #f7f0f3;
  color: var(--ink);
  padding: 14px 0;
}

.btn-plan-primary {
  width: 100%;
  background: #ff4d79;
  color: #ffffff;
  padding: 14px 0;
  box-shadow: 0 6px 20px rgba(255, 77, 121, 0.4);
}

.btn-plan-primary:hover {
  background: #ff3b6a;
}

/* ==========================================================================
   4. NAVBAR
   ========================================================================== */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand img {
  height: 38px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand-sub {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.75; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 6px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--glass-border);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.btn-user-pill:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.nav-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-username {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-logout-hint {
  font-size: 0.72rem;
  color: #ff3b6a;
  background: var(--pink-soft);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0 70px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.pill-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4d79;
}

.hero-left h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

.mini-stat .icon-circle {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-title {
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
}

.stat-desc {
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-weight: 600;
  white-space: nowrap;
}

.glass-art-card {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 420px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1.5px solid var(--glass-border);
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(255, 100, 130, 0.2), inset 0 0 25px rgba(255, 255, 255, 0.5);
}

.hero-wolf {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(255, 255, 255, 0.3));
}

/* ==========================================================================
   6. SECTIONS COMMUNES
   ========================================================================== */

.section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--pink-soft);
  z-index: -1;
}

.section-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 40px;
}

/* ==========================================================================
   7. SECTION FEATURES
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-box {
  background: var(--white-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: transform 0.2s;
}

.feature-box:hover { transform: translateY(-4px); }

.f-icon {
  width: 48px;
  height: 48px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.feature-box h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ==========================================================================
   8. SECTION FONCTIONNEMENT (HOW IT WORKS)
   ========================================================================== */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.how-card {
  background: var(--white-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  position: relative;
  box-shadow: var(--glass-shadow);
  transition: transform 0.2s ease;
}

.how-card:hover { transform: translateY(-4px); }

.step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255, 77, 121, 0.2);
}

.how-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  background: var(--pink-soft);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.how-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ==========================================================================
   9. SECTION PRICING
   ========================================================================== */

.auth-box {
  max-width: 520px;
  margin: 0 auto 28px;
  background: var(--white-card);
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  gap: 10px;
  box-shadow: var(--glass-shadow);
}

.included-perks-box {
  background: var(--white-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  max-width: 880px;
  margin: 0 auto 32px;
  box-shadow: var(--glass-shadow);
}

.perks-title {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--ink);
}

.perks-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 14px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-muted);
}

.perk-icon { font-size: 1.1rem; }

.pricing-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.price-card-clean {
  background: var(--white-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 34px 22px 26px;
  position: relative;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: transform 0.2s ease;
}

.price-card-clean:hover { transform: translateY(-4px); }

.price-card-clean.popular {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid #ff4d79;
  transform: scale(1.03);
  box-shadow: 0 20px 45px rgba(255, 77, 121, 0.2);
}

.price-card-clean.popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.badge-tag-wrap {
  position: absolute;
  top: 14px;
  right: 16px;
  display: flex;
  gap: 6px;
}

.badge-tag {
  background: var(--pink-soft);
  color: #ff3b6a;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
}

.badge-tag.gold {
  background: #fff4d9;
  color: #c98818;
}

.badge-save {
  background: #10b981;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
}

.badge-save.gold {
  background: #f59e0b;
}

.plan-header {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.plan-price {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.plan-sub-clean {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 22px;
}

.security-note {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
}

/* ==========================================================================
   10. SECTION FAQ
   ========================================================================== */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: all 0.2s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  gap: 10px;
}

.faq-icon {
  font-size: 1.3rem;
  color: #ff4d79;
  font-weight: 800;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
  text-align: left;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
  padding-bottom: 18px;
}

.faq-item.active .faq-answer {
  max-height: 280px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   11. DISCORD BANNER & MOCKUP
   ========================================================================== */

.discord-cta-banner {
  background: linear-gradient(135deg, rgba(255, 105, 135, 0.9) 0%, rgba(255, 140, 140, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--glass-border);
  border-radius: 28px;
  padding: 38px 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: center;
  margin: 50px 0 70px;
  box-shadow: 0 25px 60px rgba(255, 80, 120, 0.25);
  position: relative;
  overflow: hidden;
}

.banner-content h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.banner-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 22px;
}

.discord-mockup {
  background: #1e1f22;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  height: 230px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
  width: 100%;
}

.mockup-sidebar {
  width: 130px;
  background: #2b2d31;
  padding: 14px 10px;
  font-size: 0.72rem;
  color: #949ba4;
  flex-shrink: 0;
}

.server-title {
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.cat-name {
  font-size: 0.62rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.channel-item {
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-item.active {
  background: #35373c;
  color: #fff;
}

.mockup-chat {
  flex: 1;
  padding: 14px;
  background: #313338;
  overflow: hidden;
}

.chat-msg {
  display: flex;
  gap: 10px;
}

.msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.msg-header {
  font-size: 0.78rem;
  color: #fff;
  margin-bottom: 4px;
}

.msg-header span {
  font-size: 0.65rem;
  color: #949ba4;
}

.msg-text {
  font-size: 0.82rem;
  color: #dbdee1;
  margin-bottom: 6px;
}

.mockup-chart-img {
  width: 100%;
  max-height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 4px 0 6px;
  display: block;
}

.msg-caption {
  font-size: 0.68rem;
  color: #949ba4;
}

.discord-float-icon {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: #5865F2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.5);
}

/* ==========================================================================
   12. FOOTER & SUCCESS
   ========================================================================== */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  gap: 20px;
}

.footer-left p {
  color: var(--ink-muted);
  margin-top: 6px;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.social-btn:hover {
  background: #ffffff;
  color: #ff4d79;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 77, 121, 0.25);
}

/* Page Success */
.success-container {
  padding: 50px 0 40px;
  display: flex;
  justify-content: center;
}

.success-card {
  background: var(--white-card);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1.5px solid var(--glass-border);
  border-radius: 32px;
  padding: 44px 30px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px rgba(255, 100, 130, 0.2);
}

.success-icon-bubble {
  width: 64px;
  height: 64px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(255, 77, 121, 0.25);
}

.success-card h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 14px;
}

.success-sub {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

.success-user-box {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 28px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.success-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.success-user-name {
  font-weight: 800;
  font-size: 1rem;
}

.success-user-expiry {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   13. MEDIA QUERIES (RESPONSIVE ADAPTATIONS)
   ========================================================================== */

/* Tablettes & Petits écrans (< 992px) */
@media (max-width: 992px) {
  .nav-links { display: none; }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 30px 0 50px;
  }
  
  .hero-sub { margin: 0 auto 24px; }
  .hero-ctas { justify-content: center; }
  .hero-right { order: -1; }
  .glass-art-card { margin: 0 auto; max-width: 300px; }
  
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  
  .pricing-grid-clean { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 24px; }
  .price-card-clean.popular { transform: none; }
  .price-card-clean.popular:hover { transform: translateY(-4px); }
  
  .discord-cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 28px;
  }
  .banner-content h2 { margin: 0 auto 12px; }
  .banner-content p { margin: 0 auto 20px; }
  
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* Smartphones (< 640px) */
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .nav { padding: 14px 0; }
  
  .btn-login span { display: none; }
  .btn-login { padding: 10px 14px; }
  
  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .features-grid { grid-template-columns: 1fr; }
  
  .perks-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .discord-mockup {
    height: auto;
    min-height: 200px;
  }
  .mockup-sidebar { display: none; } /* On cache la barre latérale sur mobile pour aérer */
  
  .auth-box {
    flex-direction: column;
    text-align: center;
    border-radius: var(--radius-md);
  }
  
  .success-card { padding: 30px 16px; }
  .success-user-box { flex-direction: column; text-align: center; }
}