/* === Variables globales === */
:root {
  --color-black: #000000;
  --color-gold-light: #EDCF36;
  --color-gold: #CCA31F;
  --color-gold-dark: #705221;
  --color-white: #FFFFFF;
  --color-bg: #0a0a0a;
  --color-bg-light: #111111;
  --color-bg-card: #1a1a1a;
  --color-text: #e0e0e0;
  --color-text-muted: #999999;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.3;
}

/* === Animations keyframes === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(204, 163, 31, 0.1); }
  50% { box-shadow: 0 0 60px rgba(204, 163, 31, 0.25); }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes dash-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes counter-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes gold-line-expand {
  from { width: 0; }
  to { width: 60px; }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--color-gold); }
}

@keyframes slide-in-cards {
  from { opacity: 0; transform: translateY(60px) rotateX(10deg); }
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

@keyframes particle-float {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* === Fade-in animation classes === */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Délais d'animation séquentiels */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* === Utilitaires === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--color-white);
}

.section-title span {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
  margin: 16px auto 24px;
}

.gold-line.animated {
  animation: gold-line-expand 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* === Particules décoratives === */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 6s ease-in-out infinite;
}

/* === Boutons === */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-black);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(204, 163, 31, 0.35), 0 0 20px rgba(204, 163, 31, 0.15);
}

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

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(204, 163, 31, 0.2);
}

/* === Header / Navigation === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 50px;
  width: auto;
  transition: transform var(--transition);
}

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

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

.nav-link {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

.nav .btn {
  padding: 10px 28px;
  font-size: 0.8rem;
}

/* Menu burger mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  width: 28px;
  height: 2px;
  background: var(--color-gold);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

/* Fond animé du hero avec dégradés */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(204, 163, 31, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(237, 207, 54, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(204, 163, 31, 0.1);
  border: 1px solid rgba(204, 163, 31, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.15;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.hero-mockup {
  position: relative;
  width: 320px;
  animation: float 6s ease-in-out infinite;
}

.phone-frame {
  width: 100%;
  background: var(--color-bg-card);
  border-radius: 36px;
  border: 2px solid rgba(204, 163, 31, 0.15);
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
              0 0 60px rgba(204, 163, 31, 0.08);
  animation: pulse-glow 4s ease-in-out infinite;
}

.phone-screen {
  background: var(--color-bg-light);
  border-radius: 24px;
  overflow: hidden;
  padding: 24px 20px;
  min-height: 480px;
}

.phone-screen .menu-header {
  text-align: center;
  margin-bottom: 24px;
}

.phone-screen .menu-header h3 {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.phone-screen .menu-header p {
  color: var(--color-text-muted);
  font-size: 0.7rem;
  margin-bottom: 0;
}

.phone-screen .menu-category {
  margin-bottom: 20px;
}

.phone-screen .menu-category h4 {
  color: var(--color-gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(204, 163, 31, 0.15);
}

.phone-screen .menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
}

.phone-screen .menu-item-name {
  font-size: 0.85rem;
  color: var(--color-white);
}

.phone-screen .menu-item-price {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 400;
}

.phone-screen .menu-item-desc {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Cercle lumineux derrière le mockup */
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(204, 163, 31, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-glow 5s ease-in-out infinite;
}

/* Anneau décoratif animé */
.hero-ring {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(204, 163, 31, 0.08);
  border-radius: 50%;
  z-index: -1;
  animation: rotate-slow 30s linear infinite;
}

.hero-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-gold);
}

/* === Section Stats === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.stat-number {
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

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

/* === Section Avantages === */
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.avantage-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.avantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.avantage-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(204, 163, 31, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.avantage-card:hover {
  transform: translateY(-8px);
  border-color: rgba(204, 163, 31, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.avantage-card:hover::after {
  opacity: 1;
}

.avantage-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(204, 163, 31, 0.08);
  border: 1px solid rgba(204, 163, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.avantage-card:hover .avantage-icon {
  background: rgba(204, 163, 31, 0.15);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(204, 163, 31, 0.15);
}

.avantage-card h3 {
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.avantage-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === Section Comment ça marche === */
.etapes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.etapes-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold), transparent);
  opacity: 0.2;
}

.etape-card {
  text-align: center;
  position: relative;
}

.etape-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.etape-card:hover .etape-number {
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(204, 163, 31, 0.3);
}

.etape-card h3 {
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.etape-card p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* === Section Tarifs === */
.tarif-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.tarif-card {
  background: var(--color-bg-card);
  border: 1.5px solid rgba(204, 163, 31, 0.2);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.tarif-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(204, 163, 31, 0.08);
  border-color: rgba(204, 163, 31, 0.35);
}

.tarif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

.tarif-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(204, 163, 31, 0.1);
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.tarif-price {
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 4px;
}

.tarif-price span {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.tarif-period {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.tarif-features {
  text-align: left;
  margin-bottom: 36px;
}

.tarif-features li {
  padding: 10px 0;
  color: var(--color-text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
}

.tarif-features li:hover {
  padding-left: 8px;
  color: var(--color-white);
}

.tarif-features li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tarif-card .btn {
  width: 100%;
}

/* === Section Témoignages === */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.temoignage-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.temoignage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 163, 31, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.temoignage-stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.temoignage-text {
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.temoignage-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.4s ease;
}

.temoignage-card:hover .temoignage-avatar {
  transform: scale(1.1);
}

.temoignage-name {
  font-size: 0.9rem;
  color: var(--color-white);
  font-weight: 400;
}

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

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, rgba(204, 163, 31, 0.08) 0%, rgba(112, 82, 33, 0.05) 100%);
  border-top: 1px solid rgba(204, 163, 31, 0.1);
  border-bottom: 1px solid rgba(204, 163, 31, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204, 163, 31, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2.2rem;
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === Footer === */
.footer {
  background: var(--color-black);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-brand img {
  height: 80px;
  margin: 0 auto 16px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.footer h4 {
  color: var(--color-gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

/* === Page Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  transition: transform var(--transition);
}

.contact-info-card:hover {
  transform: translateX(6px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(204, 163, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.contact-info-card:hover .contact-info-icon {
  background: rgba(204, 163, 31, 0.15);
  box-shadow: 0 0 20px rgba(204, 163, 31, 0.1);
}

.contact-info-card h4 {
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: 4px;
}

.contact-info-card p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* === Formulaires === */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.4s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(204, 163, 31, 0.08);
}

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

/* === Page Connexion === */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  background: radial-gradient(ellipse at 50% 30%, rgba(204, 163, 31, 0.04) 0%, transparent 60%);
}

.auth-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
}

.auth-card h2 {
  text-align: center;
  color: var(--color-white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.auth-card .auth-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.auth-card .btn {
  width: 100%;
  margin-top: 8px;
}

.auth-toggle {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.auth-toggle a {
  color: var(--color-gold);
  font-weight: 400;
}

.auth-toggle a:hover {
  text-decoration: underline;
}

/* === Page intérieure header === */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(204, 163, 31, 0.06) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 163, 31, 0.2), transparent);
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--color-white);
  margin-bottom: 12px;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

/* === Responsive === */

/* Tablette */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-visual {
    display: none;
  }

  .avantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .etapes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .temoignages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .burger {
    display: flex;
    z-index: 1001;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section {
    padding: 60px 0;
  }

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

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

  .tarif-card {
    padding: 36px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .page-header {
    padding: 120px 0 40px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .auth-card {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.85rem;
  }
}
