/**
 * CABANEL & FOUREL — Aether Design System v1.0
 * Glass morphism + Aurora wash + Pill geometry
 * Inter font family, 3-tier glass, floating translucent panes
 * NOTE : la police Inter est auto-hébergée (voir layout.tsx) — ne pas
 * remettre d'@import Google Fonts ici.
 */

/* ============================================
   VARIABLES AETHER
   ============================================ */
:root {
  /* Aether Core Palette */
  --pearl: #F5F7FA;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.40);
  --graphite: #0F172A;
  --graphite-soft: rgba(15, 23, 42, 0.7);
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;

  /* Brand (adapted to Aether) */
  --brand-green: #0B4D3C;
  --brand-green-soft: rgba(11, 77, 60, 0.08);
  --brand-gold: #C8912F;
  --brand-gold-soft: rgba(200, 145, 47, 0.12);
  --brand-gold-glow: rgba(200, 145, 47, 0.3);
  --brand-light: #F0F4F0;

  /* Aurora washes */
  --aurora-1: radial-gradient(ellipse at 20% 30%, rgba(61, 184, 126, 0.18) 0%, transparent 55%);
  --aurora-2: radial-gradient(ellipse at 80% 70%, rgba(200, 145, 47, 0.14) 0%, transparent 55%);
  --aurora-3: radial-gradient(ellipse at 50% 50%, rgba(16, 62, 56, 0.08) 0%, transparent 50%);
  --aurora-4: radial-gradient(ellipse at 70% 20%, rgba(61, 184, 126, 0.12) 0%, transparent 50%);
  --aurora-5: radial-gradient(ellipse at 30% 80%, rgba(200, 145, 47, 0.10) 0%, transparent 50%);
  --aurora-mesh: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(61,184,126,0.06) 30%, rgba(200,145,47,0.06) 60%, rgba(16,62,56,0.04) 100%);

  /* Glass Effects */
  --glass-blur: blur(20px) saturate(180%);
  --glass-blur-light: blur(12px) saturate(150%);
  --shadow-glass: 0 8px 32px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255,255,255,0.5);
  --shadow-glass-lg: 0 24px 64px rgba(15, 23, 42, 0.12), 0 1px 4px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255,255,255,0.6);
  --shadow-inset: inset 0 2px 4px rgba(255,255,255,0.5), inset 0 -1px 2px rgba(15,23,42,0.04);

  /* Geometry */
  --radius-pill: 9999px;
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--pearl);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease-smooth);
}

ul { list-style: none; }

/* ============================================
   SPECTACULAR GLASS SHIMMER
   ============================================ */
.glass-shimmer {
  position: relative;
  overflow: hidden;
}
.glass-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* ============================================
   FLOATING PARTICLES
   ============================================ */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(200, 145, 47, 0.3);
  border-radius: 50%;
  animation: float-particle 15s infinite ease-in-out;
}
@keyframes float-particle {
  0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; transform: scale(1); }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(0); opacity: 0; }
}

/* ============================================
   GRADIENT TEXT ANIMATION
   ============================================ */
.gradient-text-animated {
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-light), #3DB87E, var(--brand-gold));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============================================
   GLASS REFLECTION GLOW
   ============================================ */
.glass-glow {
  position: relative;
}
.glass-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(200,145,47,0.2), rgba(61,184,126,0.15), transparent, rgba(200,145,47,0.1));
  z-index: -1;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s;
}
.glass-glow:hover::before {
  opacity: 1;
}

/* ============================================
   MAGNETIC GLASS EFFECT
   ============================================ */
.magnetic-glass {
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.magnetic-glass:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15), 0 1px 3px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ============================================
   AURORA HERO ENHANCED
   ============================================ */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--pearl);
  overflow: hidden;
}

.hero-aurora .aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: aurora-float 20s ease-in-out infinite;
  mix-blend-mode: multiply;
}

.hero-aurora .aurora-blob:nth-child(1) {
  width: 800px;
  height: 800px;
  background: rgba(61, 184, 126, 0.22);
  top: -25%;
  left: -15%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.hero-aurora .aurora-blob:nth-child(2) {
  width: 700px;
  height: 700px;
  background: rgba(200, 145, 47, 0.18);
  bottom: -25%;
  right: -10%;
  animation-delay: -6s;
  animation-duration: 22s;
}

.hero-aurora .aurora-blob:nth-child(3) {
  width: 500px;
  height: 500px;
  background: rgba(16, 62, 56, 0.12);
  top: 50%;
  left: 60%;
  animation-delay: -12s;
  animation-duration: 16s;
}

.hero-aurora .aurora-blob:nth-child(4) {
  width: 400px;
  height: 400px;
  background: rgba(61, 184, 126, 0.15);
  top: 10%;
  right: 30%;
  animation-delay: -4s;
  animation-duration: 14s;
}

.hero-aurora .aurora-blob:nth-child(5) {
  width: 350px;
  height: 350px;
  background: rgba(200, 145, 47, 0.10);
  bottom: 20%;
  left: 20%;
  animation-delay: -8s;
  animation-duration: 20s;
}

@keyframes aurora-float {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.6; }
  20% { transform: translate(80px, -50px) scale(1.15) rotate(5deg); opacity: 0.8; }
  40% { transform: translate(-40px, 70px) scale(0.9) rotate(-3deg); opacity: 0.5; }
  60% { transform: translate(60px, 30px) scale(1.1) rotate(2deg); opacity: 0.7; }
  80% { transform: translate(-30px, -60px) scale(0.95) rotate(-4deg); opacity: 0.6; }
}

/* ============================================
   GLASS COMPONENT SYSTEM
   ============================================ */
.glass {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-xl);
}

.glass-strong {
  background: var(--glass-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass-lg);
  border-radius: var(--radius-xl);
}

.glass-pill {
  background: var(--glass);
  backdrop-filter: var(--glass-blur-light);
  -webkit-backdrop-filter: var(--glass-blur-light);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass), var(--shadow-inset);
  border-radius: var(--radius-pill);
}

.glass-inset {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 2px 8px rgba(255,255,255,0.6), inset 0 -2px 4px rgba(15,23,42,0.04), 0 1px 2px rgba(15,23,42,0.04);
  border-radius: var(--radius-xl);
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--ease-smooth);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 48px rgba(15, 23, 42, 0.1), 0 1px 3px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateY(-4px);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
  padding: 0.5rem 1rem;
  background: var(--brand-gold-soft);
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 145, 47, 0.15);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding { padding: 6rem 0; }
.text-center { text-align: center; }
.relative { position: relative; z-index: 1; }

/* ============================================
   BUTTONS — PILL GEOMETRY
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  color: white;
  box-shadow: 0 4px 16px var(--brand-gold-glow), 0 1px 2px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px var(--brand-gold-glow), 0 2px 4px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.4);
}

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

.btn-glass {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--brand-gold);
  transition: all 0.3s var(--ease-smooth);
}

.btn-arrow:hover { gap: 0.75rem; }

/* ============================================
   HEADER — FLOATING GLASS DOCK
   ============================================ */
.header {
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 1rem;
  pointer-events: none;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255,255,255,0.7);
  pointer-events: auto;
  transition: all 0.4s var(--ease-smooth);
}

.header-inner:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 48px rgba(15, 23, 42, 0.12), 0 1px 3px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255,255,255,0.8);
}

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

.logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s var(--ease-spring);
}

.logo:hover .logo-img {
  transform: scale(1.05) rotate(-2deg);
}

.logo-text {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  position: relative;
  transition: all 0.3s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(15, 23, 42, 0.04);
}

.nav-link.active {
  color: var(--brand-green);
  background: var(--brand-green-soft);
  font-weight: 600;
}

.nav .nav-link.nav-link-home {
  color: var(--text-primary) !important;
  background: rgba(15, 23, 42, 0.04) !important;
}

.nav .nav-link.nav-link-home:hover {
  color: white !important;
  background: var(--graphite) !important;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease-smooth);
}

.phone-header:hover {
  background: rgba(15, 23, 42, 0.04);
}

.phone-header svg { color: var(--brand-gold); }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-primary);
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}

.mobile-menu-toggle:hover { background: rgba(15, 23, 42, 0.05); }

/* ============================================
   MOBILE MENU — FULL GLASS OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(245, 247, 250, 0.95);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s var(--ease-dramatic);
  transition: transform 0.5s var(--ease-dramatic);
}

.mobile-menu.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
}

.mobile-menu a:hover {
  background: var(--brand-green-soft);
  color: var(--brand-green);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(15,23,42,0.06);
  transition: all 0.3s;
}

.mobile-menu-close:hover {
  background: rgba(255,255,255,0.9);
  transform: rotate(90deg);
}

/* ============================================
   HERO — AETHER SHOWCASE
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--pearl);
  overflow: hidden;
}

.hero-aurora .aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.6;
  animation: aurora-float 15s ease-in-out infinite;
}

.hero-aurora .aurora-blob:nth-child(1) {
  width: 700px;
  height: 700px;
  background: rgba(61, 184, 126, 0.18);
  top: -20%;
  left: -10%;
  animation-delay: 0s;
}

.hero-aurora .aurora-blob:nth-child(2) {
  width: 600px;
  height: 600px;
  background: rgba(200, 145, 47, 0.14);
  bottom: -20%;
  right: -5%;
  animation-delay: -5s;
  animation-duration: 20s;
}

.hero-aurora .aurora-blob:nth-child(3) {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.08);
  top: 40%;
  left: 40%;
  animation-delay: -10s;
  animation-duration: 18s;
}

@keyframes aurora-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33% { transform: translate(50px, -30px) scale(1.1); opacity: 0.8; }
  66% { transform: translate(-30px, 40px) scale(0.95); opacity: 0.5; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.55rem;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255,255,255,0.5);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--brand-gold);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--brand-gold-glow);
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero h1 {
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  transition: all 0.3s var(--ease-smooth);
}

.hero-trust-item:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.hero-trust-item svg { color: var(--brand-gold); }

/* ============================================
   HERO MARQUEE — DEFILEMENT LABELS
   ============================================ */
.hero-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.hero-marquee::before,
.hero-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.hero-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.9), transparent);
}

.hero-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(255,255,255,0.9), transparent);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero Visual — Glass card showcase */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glass-showcase {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
}

.glass-layer {
  position: absolute;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  transition: all 0.6s var(--ease-smooth);
}

.glass-layer-1 {
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  animation: float-layer-1 8s ease-in-out infinite;
}

.glass-layer-2 {
  inset: 20px;
  background: rgba(61, 184, 126, 0.08);
  animation: float-layer-2 10s ease-in-out infinite;
}

.glass-layer-3 {
  inset: 40px;
  background: rgba(200, 145, 47, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-layer-3 12s ease-in-out infinite;
}

.glass-layer-content {
  text-align: center;
  padding: 2rem;
}

.glass-layer-content img {
  width: 120px;
  height: auto;
  margin: 0 auto 1rem;
  opacity: 0.8;
  filter: drop-shadow(0 4px 12px rgba(11, 77, 60, 0.2));
}

.glass-layer-content h3 {
  font-size: 1.5rem;
  color: var(--brand-green);
  margin-bottom: 0.5rem;
}

.glass-layer-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@keyframes float-layer-1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes float-layer-2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(8px) rotate(-1deg); }
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
  max-width: 700px;
  margin-bottom: 3rem;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================
   SOLUTIONS — FLOATING GLASS CARDS
   ============================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.solution-card {
  composes: glass-card;
  padding: 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-green), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-smooth);
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

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

.solution-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--brand-green), #1a6b52);
  color: white;
  box-shadow: 0 4px 16px rgba(11, 77, 60, 0.2);
  transition: transform 0.4s var(--ease-spring);
}

.solution-card:hover .solution-card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(11, 77, 60, 0.3);
}

.solution-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.solution-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

/* ============================================
   AIDES — GLASS PANELS
   ============================================ */
.aides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.aide-card {
  composes: glass-strong;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.aide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-green));
  opacity: 0;
  transition: opacity 0.4s;
}

.aide-card:hover::before { opacity: 1; }
.aide-card:hover { transform: translateY(-6px); }

.aide-card .icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--brand-gold-soft);
  color: var(--brand-gold);
  transition: all 0.4s var(--ease-spring);
  box-shadow: 0 2px 8px var(--brand-gold-soft);
}

.aide-card:hover .icon {
  background: var(--brand-gold);
  color: white;
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 4px 16px var(--brand-gold-glow);
}

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

/* ============================================
   STATS — GLASS COUNTERS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-glass {
  composes: glass-card;
  padding: 2.5rem 1.5rem;
  transition: all 0.4s var(--ease-smooth);
}

.stat-glass:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ============================================
   RÉALISATIONS — GLASS OVERLAY
   ============================================ */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.realisation-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.5s var(--ease-smooth);
}

.realisation-card:hover {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}

.realisation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.realisation-card:hover img {
  transform: scale(1.1);
}

.realisation-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease-smooth);
}

.realisation-card:hover .realisation-card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.realisation-card-overlay h4 {
  color: white;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.realisation-card-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   REALISATION CARDS — FLIP EFFECT
   ============================================ */
.realisation-card-flip {
  perspective: 1000px;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.realisation-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease-dramatic);
  transform-style: preserve-3d;
}

.realisation-card-inner.flipped {
  transform: rotateY(180deg);
}

.realisation-card-front,
.realisation-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.realisation-card-front {
  transform: rotateY(0deg);
  display: flex;
  flex-direction: column;
  background: white;
}

.realisation-card-header {
  padding: 1.5rem 1.5rem 1rem;
  background: white;
}

.realisation-card-header h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.realisation-card-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.realisation-card-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin: 0;
}

.realisation-card-image {
  flex: 1;
  overflow: hidden;
}

.realisation-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.realisation-card-flip:hover .realisation-card-image img {
  transform: scale(1.05);
}

.realisation-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--brand-green) 0%, #1a6b52 100%);
  color: white;
  display: flex;
  flex-direction: column;
}

.realisation-card-header-back {
  position: relative;
}

.realisation-card-header-back h4 {
  color: var(--text-primary);
}

.realisation-card-header-back p {
  color: var(--text-muted);
}

.realisation-card-divider-back {
  background: rgba(15, 23, 42, 0.08);
}

.realisation-card-back-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.realisation-card-description {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.7;
}

.realisation-card-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.08);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.3s;
}

.realisation-card-close:hover {
  background: rgba(15, 23, 42, 0.15);
}

/* ============================================
   TÉMOIGNAGES — GLASS CARDS
   ============================================ */
.temoignage-card {
  composes: glass-strong;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
}

.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.temoignage-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--brand-gold);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.temoignage-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.temoignage-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.temoignage-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(11, 77, 60, 0.2);
}

.temoignage-author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.temoignage-author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   CTA — GLASS PANEL
   ============================================ */
.cta-glass {
  composes: glass-strong;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-glass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 145, 47, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-glass h2 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-glass p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--graphite);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand .logo-text {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.certifications {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(255,255,255,0.08);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.cert-badge:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.footer-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--brand-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-smooth);
  display: inline-block;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--brand-gold); }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.page-header-aurora {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 184, 126, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb a:hover { color: var(--brand-gold); }

.page-header h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
}

.page-header p {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: var(--text-secondary);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section { padding: 2rem 0; }
.content-section.alt { background: var(--pearl); }

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-columns.reverse { direction: rtl; }
.two-columns.reverse > * { direction: ltr; }

.content-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
  transition: all 0.5s var(--ease-smooth);
}

.content-image:hover {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}

.content-image img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  padding: 2rem;
  transition: transform 0.7s var(--ease-smooth);
  animation: image-float 6s ease-in-out infinite;
}

.content-image:hover img {
  transform: scale(1.02);
}

@keyframes image-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(0.5deg); }
  50% { transform: translateY(0) rotate(-0.3deg); }
  75% { transform: translateY(6px) rotate(0.2deg); }
}

.feature-list { margin-top: 1.5rem; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.feature-list li svg {
  color: var(--brand-green);
  flex-shrink: 0;
  margin-top: 0.2rem;
  background: var(--brand-green-soft);
  padding: 2px;
  border-radius: 50%;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  composes: glass-card;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  transition: all 0.4s var(--ease-smooth);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
}

.contact-info-card h3 {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text-primary);
}

.contact-info-card h3 svg { color: var(--brand-gold); }
.contact-info-card p { margin-bottom: 0; color: var(--text-secondary); font-size: 0.95rem; }

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  font-family: var(--font);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  transition: all 0.3s var(--ease-smooth);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand-gold);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 4px var(--brand-gold-soft), inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
  accent-color: var(--brand-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-checkbox label a {
  color: var(--brand-gold);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.form-checkbox label a:hover { border-bottom-color: var(--brand-gold); }

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content { max-width: 800px; margin: 0 auto; }

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--brand-green);
}

.legal-content p { margin-bottom: 1rem; }

.legal-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-dramatic), transform 0.8s var(--ease-dramatic);
}

.reveal.active {
  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; }

/* Staggered cascade for grids */
.solutions-grid .reveal:nth-child(1) { transition-delay: 0s; }
.solutions-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.solutions-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.solutions-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.aides-grid .reveal:nth-child(1) { transition-delay: 0s; }
.aides-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.aides-grid .reveal:nth-child(3) { transition-delay: 0.3s; }

.realisations-grid .reveal:nth-child(1) { transition-delay: 0s; }
.realisations-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.realisations-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.realisations-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.realisations-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.realisations-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-columns,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .two-columns.reverse { direction: ltr; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .hero { padding-top: 120px; text-align: center; }
  .hero-content { margin: 0 auto; max-width: 600px; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .header-cta .phone-header { display: none; }
  .section-padding { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .content-image img { height: 250px; }
  .cta-glass { padding: 2.5rem 1.5rem; }
  .hero-aurora .aurora-blob { display: none; }
  .hero-aurora .aurora-blob:nth-child(1) { display: block; width: 300px; height: 300px; }
}

/* ============================================
   SCROLLBAR & SELECTION
   ============================================ */
::selection {
  background: rgba(200, 145, 47, 0.3);
  color: var(--text-primary);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pearl); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }
