/* =============================================================
   AEREVO — Main Stylesheet | Charte officielle #93278F #F7931E
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* ── Brand colours ── */
  --orange: #F7931E;
  --orange-light: #FFAA47;
  --orange-dark: #D4770F;
  --purple: #93278F;
  --purple-light: #B44BAF;
  --purple-dark: #6B1A68;
  --white: #ffffff;

  /* ── Light backgrounds (redefined) ── */
  --black: #faf8fb;
  /* Main page background (off-white/light lavender) */
  --dark: #ffffff;
  /* Clean white background for alternate sections */
  --dark2: #f5f2f7;
  /* Soft light gray-purple for section backgrounds */
  --dark3: #efecf2;
  /* Inputs, table headers, step cards */
  --dark4: #e2dde7;
  /* Borders and subtle lines */

  /* ── Glass / borders ── */
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(147, 39, 143, 0.12);
  --glass-orange: rgba(247, 147, 30, 0.08);

  /* ── Semantic / Text (redefined for Light Theme) ── */
  --text-main: #1b1226;
  /* Deep charcoal purple for headings and body */
  --text-muted: #635870;
  /* Muted gray-purple for descriptions */
  --gray: #635870;
  /* Match --text-muted for existing code compatibility */
  --gray-light: #3c3249;
  /* Slightly darker than muted for better contrast/readability */
  --success: #2d8a5e;
  --error: #c93b3b;
  --info: #3b7bc9;

  /* ── Misc ── */
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 8px 30px rgba(147, 39, 143, 0.05);
  --shadow-purple: 0 4px 20px rgba(147, 39, 143, 0.08);
  --shadow-orange: 0 4px 20px rgba(247, 147, 30, 0.06);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--orange-light);
}

img {
  max-width: 100%;
  display: block;
}

/* ─── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.serif {
  font-family: var(--font-display);
}

.orange {
  color: var(--orange);
}

.purple {
  color: var(--purple);
}

.gray {
  color: var(--gray);
}

/* ═══════════════════════════════════════════════════════════
   SPIRAL DÉCORATION (motif cheveux afro du logo)
   ═══════════════════════════════════════════════════════════ */
.spiral-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
  animation: spiral-rotate 30s linear infinite;
}

.spiral-deco-fixed {
  animation: none;
}

@keyframes spiral-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spiral-svg {
  filter: drop-shadow(0 0 14px rgba(247, 147, 30, 0.4));
}

/* ─── Stars background ────────────────────────────────────── */
.stars-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(147, 39, 143, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(247, 147, 30, 0.04) 0%, transparent 60%),
    var(--black);
  pointer-events: none;
}

.star {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(147, 39, 143, 0.06);
}

/* Logo image */
.nav-logo img {
  height: 48px;
  width: auto;
  
}

.nav-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-main);
  text-transform: uppercase;
}

.nav-logo-text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-light);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════════
   BOUTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(247, 147, 30, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(247, 147, 30, 0.55);
  color: var(--white);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(147, 39, 143, 0.35);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 39, 143, 0.5);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-purple {
  background: transparent;
  border: 1.5px solid var(--purple);
  color: var(--purple-light);
}

.btn-outline-purple:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(147, 39, 143, 0.12);
  border-color: var(--purple);
  color: var(--purple-light);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 6% 80px;
  overflow: hidden;
}

/* Deux colonnes : texte + galerie */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1320px;
  position: relative;
  z-index: 2;
}

/* Gradient lines animées */
.hero-bg-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(147, 39, 143, 0.2), rgba(247, 147, 30, 0.15), transparent);
  height: 1px;
  animation: slide-line 5s ease-in-out infinite;
}

@keyframes slide-line {
  0% {
    left: -100%;
    width: 60%;
  }

  100% {
    left: 150%;
    width: 60%;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 580px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(147, 39, 143, 0.12);
  border: 1px solid rgba(147, 39, 143, 0.35);
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  animation: fadeInUp 0.9s 0.2s ease both;
}

.hero-title .word-accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--gray-light);
  max-width: 520px;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.75;
  animation: fadeInUp 0.9s 0.4s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.6s ease both;
}

/* Spiral décoratif dans le hero */
.hero-spiral-left {
  position: absolute;
  left: -80px;
  bottom: 10%;
  width: 300px;
  opacity: 0.12;
  transform: rotate(-20deg);
  animation: float-spiral 8s ease-in-out infinite;
}

.hero-spiral-right {
  position: absolute;
  right: -80px;
  top: 15%;
  width: 280px;
  opacity: 0.10;
  transform: rotate(160deg);
  animation: float-spiral 10s ease-in-out infinite reverse;
}

@keyframes float-spiral {

  0%,
  100% {
    transform: rotate(-20deg) translateY(0);
  }

  50% {
    transform: rotate(-20deg) translateY(-20px);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s ease both;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: grow-down 1.5s ease infinite;
}

@keyframes grow-down {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO GALERIE PHOTOS
   ═══════════════════════════════════════════════════════════ */

/* Conteneur galerie (colonne droite) */
.hero-visual {
  flex: 0 0 420px;
  position: relative;
  height: 540px;
  animation: fadeIn 1s 0.5s ease both;
}

/* ── Anneaux décoratifs ── */
.hg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(147, 39, 143, 0.18);
  pointer-events: none;
}

.hg-ring-1 {
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hgRingPulse 6s ease-in-out infinite;
}

.hg-ring-2 {
  width: 380px;
  height: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(247, 147, 30, 0.12);
  animation: hgRingPulse 6s 1.5s ease-in-out infinite reverse;
}

@keyframes hgRingPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

/* ── Lueur de fond ── */
.hg-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(147, 39, 143, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: hgGlowBreath 4s ease-in-out infinite;
}

@keyframes hgGlowBreath {

  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

/* ── Slideshow principal ── */
.hg-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(147, 39, 143, 0.3),
    0 0 40px rgba(147, 39, 143, 0.25),
    0 40px 80px rgba(0, 0, 0, 0.5);
}

/* Chaque slide */
.hg-slide {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(30, 10, 40, 1) 0%,
      rgba(20, 5, 30, 1) 40%,
      rgba(40, 20, 10, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.hg-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 28px;
}

/* Overlay gradient : fondu bas + légère teinte violette pour intégration thème */
.hg-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10, 3, 20, 0.08) 0%,
      transparent 35%,
      rgba(10, 3, 20, 0.55) 100%),
    linear-gradient(135deg,
      rgba(147, 39, 143, 0.08) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 1;
  border-radius: 28px;
}

/* Caption discret en bas de chaque slide */
.hg-caption {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(147, 39, 143, 0.15);
  white-space: nowrap;
  font-weight: 500;
}

/* ── Animation crossfade : 3 slides × 4 s = cycle 12 s ── */
@keyframes hgFade {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  8% {
    opacity: 1;
    transform: scale(1);
  }

  /* 0.96s — apparition */
  30% {
    opacity: 1;
    transform: scale(1);
  }

  /* visible 2.64s */
  38% {
    opacity: 0;
    transform: scale(0.97);
  }

  /* 0.96s — disparition */
  100% {
    opacity: 0;
    transform: scale(1.05);
  }

  /* caché 7.44s */
}

.hg-slide-1 {
  animation: hgFade 12s 0s infinite;
}

.hg-slide-2 {
  animation: hgFade 12s 4s infinite;
}

.hg-slide-3 {
  animation: hgFade 12s 8s infinite;
}

/* ── Badges flottants ── */
.hg-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(147, 39, 143, 0.15);
  border-radius: 16px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(147, 39, 143, 0.06);
  z-index: 10;
}

.hg-badge-top {
  top: 28px;
  right: -20px;
  animation: hgBadgeFloat 5s ease-in-out infinite;
}

.hg-badge-bottom {
  bottom: 48px;
  left: -24px;
  animation: hgBadgeFloat 5s 1.5s ease-in-out infinite;
}

@keyframes hgBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hg-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(147, 39, 143, 0.2), rgba(147, 39, 143, 0.05));
  color: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hg-badge-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.hg-badge-lbl {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ── Dots pattern décoratifs ── */
.hg-dots {
  position: absolute;
  bottom: 10px;
  right: -30px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(rgba(247, 147, 30, 0.35) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  border-radius: 8px;
  opacity: 0.7;
  animation: hgDotsFloat 7s ease-in-out infinite;
}

@keyframes hgDotsFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS COMMUNES
   ═══════════════════════════════════════════════════════════ */
section {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--orange), transparent);
  margin: 1.5rem auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-pad {
  padding: 100px 0;
}

/* ─── Glass card ──────────────────────────────────────────── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.glass-card:hover {
  border-color: rgba(147, 39, 143, 0.45);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 40px 32px;
  text-align: center;
  cursor: default;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(147, 39, 143, 0.18), rgba(247, 147, 30, 0.08));
  border: 1px solid rgba(147, 39, 143, 0.25);
  font-size: 2rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(147, 39, 143, 0.35), rgba(247, 147, 30, 0.15));
  box-shadow: 0 0 30px rgba(147, 39, 143, 0.3);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(180deg, transparent, rgba(147, 39, 143, 0.06), transparent);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 60px 20px;
  border-right: 1px solid var(--glass-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
  background: linear-gradient(135deg, var(--purple-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   PLANS / PRICING
   ═══════════════════════════════════════════════════════════ */
.plans-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.plan-toggle-type {
  display: flex;
  background: var(--dark4);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 2rem;
}

.toggle-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--gray);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--orange));
  color: var(--white);
  box-shadow: 0 2px 12px rgba(147, 39, 143, 0.35);
}

.plans-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 3rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.plan-card {
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--orange));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 1rem 0;
}

.plan-price .amount {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text-main);
}

.plan-price .currency {
  font-size: 1rem;
  color: var(--gray);
}

.plan-price .period {
  font-size: 0.85rem;
  color: var(--gray);
}

.plan-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-light);
}

.plan-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 39, 143, 0.18);
  border-radius: 50%;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   BOUTIQUE / PRODUCTS
   ═══════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  cursor: pointer;
}

.product-card:hover {
  border-color: rgba(147, 39, 143, 0.45);
  box-shadow: var(--shadow-purple);
  transform: translateY(-6px);
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
}

.product-info {
  padding: 20px;
}

.product-brand {
  font-size: 0.75rem;
  color: var(--purple-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 6px 0;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
}

.product-compare {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 8px;
}

.product-actions {
  padding: 0 20px 20px;
  display: flex;
  gap: 10px;
}

.product-media {
  position: relative;
}

.product-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  z-index: 2;
}

.product-nav-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.product-nav-prev { left: 8px; }
.product-nav-next { right: 8px; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
}

.stars {
  font-size: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--purple-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-text {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.author-title {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 39, 143, 0.3), rgba(247, 147, 30, 0.2), transparent);
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark3);
  border: 2px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(147, 39, 143, 0.25);
}

.step-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.step-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════════════════ */
.location-section {
  background: var(--dark2);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.location-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(147, 39, 143, 0.12);
  border: 1px solid rgba(147, 39, 143, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 350px;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

/* ── Structure générale ── */
/* ── Structure générale ── */
.site-footer {
  background: linear-gradient(180deg, #0d0716 0%, #050209 100%);
  color: #e2dde7;
  border-top: 1px solid rgba(147, 39, 143, 0.25);
  position: relative;
}

/* ── Grille de navigation ── */
.footer-nav-section {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  color: #a79bbd;
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0.75rem 0 0;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #c4b9d8;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

/* ── Séparateur décoratif ── */
.footer-divider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  margin-bottom: 50px;
}

.footer-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 39, 143, .5), rgba(247, 147, 30, .5), transparent);
}

.footer-divider-symbol {
  width: 44px;
  height: 44px;
  opacity: 0.85;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(247, 147, 30, .6));
  animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

/* ── Bloc logo grand + réseaux ── */
.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 60px;
  text-align: center;
}

/* Grand logo */
.footer-big-logo {
  margin-bottom: 1.25rem;
  text-align: center;
}

.footer-big-logo img {
  display: block;
  margin: 0 auto;
  height: 120px;
  width: auto;
  max-width: 90vw;
  filter: drop-shadow(0 4px 20px rgba(147, 39, 143, 0.3));
  transition: transform .45s ease;
}

.footer-big-logo img:hover {
  transform: scale(1.05);
}

.footer-big-logo-text {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 10px;
  background: linear-gradient(135deg, #B44BAF, #F7931E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: var(--font-display);
  line-height: 1.1;
  text-align: center;
}

.footer-tagline {
  color: #a79bbd;
  font-size: 0.95rem;
  margin-bottom: 2.25rem;
  letter-spacing: 0.5px;
}

/* Boutons réseaux sociaux */
.footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #a79bbd;
  transition: all .3s ease;
}

.footer-social-btn svg {
  width: 52px;
  height: 52px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(147, 39, 143, 0.3);
  box-sizing: border-box;
  fill: currentColor;
  color: var(--purple-light);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-btn span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #a79bbd;
  transition: color .3s;
}

/* Hover – couleur propre à chaque réseau */
.footer-social-btn[aria-label="TikTok"]:hover svg {
  background: linear-gradient(135deg, #010101, #69C9D0);
  border-color: #69C9D0;
  color: #fff;
  fill: #fff;
  box-shadow: 0 8px 24px rgba(105, 201, 208, .4);
  transform: translateY(-6px) scale(1.08);
}

.footer-social-btn[aria-label="TikTok"]:hover span {
  color: #69C9D0;
}

.footer-social-btn[aria-label="Instagram"]:hover svg {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F56040, #FCAF45);
  border-color: #FD1D1D;
  color: #fff;
  fill: #fff;
  box-shadow: 0 8px 24px rgba(253, 29, 29, .4);
  transform: translateY(-6px) scale(1.08);
}

.footer-social-btn[aria-label="Instagram"]:hover span {
  color: #FD1D1D;
}

.footer-social-btn[aria-label="Facebook"]:hover svg {
  background: linear-gradient(135deg, #1877F2, #0C5FCC);
  border-color: #1877F2;
  color: #fff;
  fill: #fff;
  box-shadow: 0 8px 24px rgba(24, 119, 242, .4);
  transform: translateY(-6px) scale(1.08);
}

.footer-social-btn[aria-label="Facebook"]:hover span {
  color: #1877F2;
}

.footer-social-btn[aria-label="LinkedIn"]:hover svg {
  background: linear-gradient(135deg, #0A66C2, #004182);
  border-color: #0A66C2;
  color: #fff;
  fill: #fff;
  box-shadow: 0 8px 24px rgba(10, 102, 194, .4);
  transform: translateY(-6px) scale(1.08);
}

.footer-social-btn[aria-label="LinkedIn"]:hover span {
  color: #0A66C2;
}

/* ── Copyright ── */
.footer-copyright {
  border-top: 1px solid rgba(180, 75, 175, .3);
  background: rgba(147, 39, 143, .08);
  padding: 22px 0;
}

.footer-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─ Texte copyright ─ */
footer.site-footer .footer-copyright p,
footer.site-footer .footer-copyright-inner p {
  color: var(--text-muted) !important;
  font-size: 0.83rem;
  margin: 0;
}

footer.site-footer .footer-copyright strong {
  color: var(--purple) !important;
  font-weight: 600;
}

/* ─ Liens légaux ─ */
footer.site-footer .footer-legal-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

footer.site-footer .footer-legal-links a,
footer.site-footer .footer-legal-links a:link,
footer.site-footer .footer-legal-links a:visited {
  color: var(--text-muted) !important;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color .2s ease;
}

footer.site-footer .footer-legal-links a:hover,
footer.site-footer .footer-legal-links a:focus {
  color: var(--orange) !important;
  text-decoration: underline;
}

/* Séparateurs · */
footer.site-footer .footer-legal-links span {
  color: rgba(147, 39, 143, .3);
  font-size: 1rem;
  line-height: 1;
  user-select: none;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

@keyframes brand-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(147, 39, 143, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(247, 147, 30, 0.4);
  }
}

/* ─── Flash messages ─────────────────────────────────────── */
.flash {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  animation: fadeInDown 0.4s ease;
  transition: opacity 0.5s ease;
}

.flash-success {
  background: rgba(76, 175, 130, 0.15);
  border: 1px solid rgba(76, 175, 130, 0.4);
  color: #7dd3a8;
}

.flash-error {
  background: rgba(224, 92, 92, 0.15);
  border: 1px solid rgba(224, 92, 92, 0.4);
  color: #f0a0a0;
}

.flash-info {
  background: rgba(147, 39, 143, 0.12);
  border: 1px solid rgba(147, 39, 143, 0.35);
  color: var(--purple-light);
}

.flash.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ─── Forms ──────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--dark3);
  border: 1.5px solid var(--dark4);
  border-radius: var(--radius);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(147, 39, 143, 0.15);
  background: rgba(147, 39, 143, 0.05);
}

.form-input::placeholder {
  color: var(--gray);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239988aa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.input-prefix {
  display: flex;
  align-items: center;
  background: var(--dark3);
  border: 1.5px solid var(--dark4);
  border-radius: var(--radius);
  overflow: hidden;
}

.input-prefix-text {
  padding: 13px 14px;
  color: var(--purple-light);
  font-size: 0.95rem;
  font-weight: 600;
  border-right: 1px solid var(--dark4);
  white-space: nowrap;
}

.input-prefix .form-input {
  border: none;
  border-radius: 0;
  flex: 1;
}

/* ─── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-orange {
  background: rgba(247, 147, 30, 0.15);
  color: var(--orange);
}

.badge-purple {
  background: rgba(147, 39, 143, 0.15);
  color: var(--purple-light);
}

.badge-success {
  background: rgba(76, 175, 130, 0.15);
  color: #7dd3a8;
}

.badge-error {
  background: rgba(224, 92, 92, 0.15);
  color: #f0a0a0;
}

.badge-info {
  background: rgba(92, 154, 224, 0.15);
  color: #90bef0;
}

.badge-gray {
  background: rgba(136, 136, 153, 0.15);
  color: var(--gray);
}

/* legacy gold → orange */
.badge-gold {
  background: rgba(247, 147, 30, 0.15);
  color: var(--orange);
}

/* ─── Responsive ──────────────────────────────────────────── */

/* Tablette large : réduire la galerie */
@media (max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }

  .hero-inner {
    gap: 50px;
  }

  .hero-visual {
    flex: 0 0 360px;
    height: 480px;
  }

  .hg-main {
    width: 260px;
    height: 370px;
  }

  .hg-ring-1 {
    width: 440px;
    height: 440px;
  }

  .hg-ring-2 {
    width: 320px;
    height: 320px;
  }

  .hg-badge-top {
    right: -10px;
  }

  .hg-badge-bottom {
    left: -10px;
  }
}

/* Tablette : empilement vertical */
@media (max-width:900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    max-width: 600px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    flex: none;
    width: 100%;
    height: 400px;
  }

  .hg-main {
    width: 240px;
    height: 340px;
  }

  .hg-ring-1 {
    width: 400px;
    height: 400px;
  }

  .hg-ring-2 {
    width: 300px;
    height: 300px;
  }

  .hg-badge-top {
    top: 16px;
    right: calc(50% - 200px);
  }

  .hg-badge-bottom {
    bottom: 16px;
    left: calc(50% - 200px);
  }

  .hg-dots {
    right: calc(50% - 190px);
  }
}

@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .footer-big-logo img {
    height: 120px;
  }

  .footer-big-logo-text {
    font-size: 3rem;
    letter-spacing: 8px;
  }
}

@media (max-width:768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
    z-index: 999;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav-section {
    padding: 50px 0 36px;
  }

  .hero-spiral-left,
  .hero-spiral-right {
    display: none;
  }

  .hero-visual {
    height: 340px;
  }

  .hg-main {
    width: 200px;
    height: 290px;
  }

  .hg-ring-1 {
    width: 340px;
    height: 340px;
  }

  .hg-ring-2 {
    width: 250px;
    height: 250px;
  }

  .hg-badge-top {
    font-size: 0.8rem;
    padding: 8px 12px;
    right: calc(50% - 160px);
  }

  .hg-badge-bottom {
    font-size: 0.8rem;
    padding: 8px 12px;
    left: calc(50% - 160px);
  }

  .hg-dots {
    display: none;
  }

  .footer-divider-wrap {
    padding: 0 20px;
    margin-bottom: 44px;
  }

  .footer-brand-block {
    padding-bottom: 50px;
  }

  .footer-copyright-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width:480px) {

  .plans-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hg-badge-float {
    display: none;
  }

  .btn-lg {
    width: 100%;
  }

  .footer-big-logo img {
    height: 90px;
  }

  .footer-big-logo-text {
    font-size: 2.4rem;
    letter-spacing: 6px;
  }

  .footer-socials {
    gap: 12px;
  }

  .footer-social-btn svg {
    width: 44px;
    height: 44px;
    padding: 11px;
  }

  .footer-copyright-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── Loader ──────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}


#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--purple-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brand-glow 2s ease infinite;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--dark4);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  border-radius: 2px;
  animation: load-progress 1.5s ease forwards;
}

@keyframes load-progress {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}
