/* =============================================
   STELLAR PLUS — Main Site CSS (homepage + location)
   ============================================= */

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

:root {
  --gold:       #f5a623;
  --gold-light: #f7c948;
  --gold-dark:  #d4881a;
  --bg:         #0a0a0f;
  --bg2:        #0d0d1a;
  --bg3:        #12121f;
  --surface:    rgba(255,255,255,0.04);
  --surface2:   rgba(255,255,255,0.08);
  --border:     rgba(255,255,255,0.08);
  --text:       #e8e8f0;
  --text-muted: #8888a8;
  --text-faint: #555570;
  --radius:     16px;
  --radius-sm:  10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── STARS BACKGROUND ─────────────────────── */
.stars-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(90,50,180,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(40,20,100,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0f 0%, #0d0d1a 50%, #0a0a12 100%);
}
.stars-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 10%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 35%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 15%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 85%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 45%, rgba(245,166,35,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 75%, rgba(245,166,35,0.3) 0%, transparent 100%);
}

/* ── NAVIGATION ───────────────────────────── */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text);
}
.nav-logo .nav-star {
  font-size: 20px;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(245,166,35,0.6));
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
}
.nav-links a.btn-nav:hover { opacity: 0.9; background: linear-gradient(135deg, var(--gold), var(--gold-light)); }

/* ── LAYOUT WRAPPER ───────────────────────── */
.page-content {
  position: relative;
  z-index: 1;
  padding-top: 64px;
}

/* ── SECTION BASE ─────────────────────────── */
.section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}
.section-title span.gold { color: var(--gold); }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-top: -36px;
  margin-bottom: 48px;
}

/* ── GOLD TEXT ────────────────────────────── */
.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ──────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,166,35,0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(245,166,35,0.4);
}
.btn-outline:hover { background: rgba(245,166,35,0.08); border-color: var(--gold); }

/* ── GLASS CARD ───────────────────────────── */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px;
}

/* ── DIVIDER ──────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 24px;
}

/* =============================================
   HOMEPAGE
   ============================================= */

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 60px 24px 80px;
  position: relative;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 12px;
  letter-spacing: 1px;
}
.hero-scroll .scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--text-faint);
  border-bottom: 2px solid var(--text-faint);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ── STATS BAR ────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  z-index: 1;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 8px 24px;
}
.stat-item + .stat-item {
  border-left: 1px solid var(--border);
}
.stat-num {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* ── OFFERS SECTION ───────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.offer-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.offer-card.featured {
  border-color: rgba(245,166,35,0.25);
  background: linear-gradient(145deg, rgba(245,166,35,0.06), rgba(255,255,255,0.02));
}
.offer-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.offer-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.offer-icon {
  font-size: 40px;
  line-height: 1;
}
.offer-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.offer-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.offer-price {
  font-size: 15px;
  color: var(--text-muted);
}
.offer-price .gold {
  font-size: 22px;
  font-weight: 800;
}
.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s;
}
.offer-cta:hover { gap: 10px; }

/* ── HOW IT WORKS ─────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), var(--border), transparent);
  z-index: 0;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-4px); }
.step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #000;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── MISSION SECTION ──────────────────────── */
.mission-section {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.mission-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 64px;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.mission-inner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.05) 0%, transparent 70%);
}
.mission-inner h2 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
}
.mission-inner p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 40px;
  position: relative;
}
.mission-quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  text-align: left;
  margin: 0 auto;
  max-width: 500px;
  font-style: italic;
  color: var(--text-muted);
  font-size: 15px;
  position: relative;
}

/* ── FOOTER ───────────────────────────────── */
.main-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  background: rgba(0,0,0,0.3);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
}
.footer-logo .nav-star { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 12px;
  color: var(--text-faint);
  text-align: right;
}

/* =============================================
   LOCATION PAGE
   ============================================= */
.location-hero {
  padding: 100px 24px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.location-hero h1 {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.location-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Pricing card */
.pricing-card {
  max-width: 520px;
  margin: 0 auto 24px;
  background: linear-gradient(145deg, rgba(245,166,35,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pricing-card .price-main {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card .price-unit {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pricing-includes {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.pricing-includes li .check {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #000;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-deposit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}
.pricing-deposit strong { color: var(--text); }

/* Includes grid */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.include-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}
.include-item:hover { border-color: rgba(245,166,35,0.25); }
.include-icon { font-size: 32px; margin-bottom: 12px; }
.include-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.include-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Contract info */
.contract-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(20px);
}
.contract-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.contract-row:last-child { border-bottom: none; }
.contract-row .label {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}
.contract-row .value {
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

/* Contact CTA */
.contact-cta {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(20px);
}
.contact-cta h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-cta p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.contact-placeholder {
  background: rgba(245,166,35,0.06);
  border: 1px dashed rgba(245,166,35,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 768px) {
  .nav-links a:not(.btn-nav) { display: none; }
  .nav-links a.btn-nav { font-size: 13px; padding: 6px 14px; }

  .offers-grid { grid-template-columns: 1fr; }
  .steps-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .steps-grid::before { display: none; }
  .includes-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; gap: 0; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border); }

  .mission-inner { padding: 40px 28px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }

  .pricing-card { padding: 32px 24px; }
  .contract-card { padding: 24px 20px; }
  .contact-cta { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero h1 { font-size: 28px; }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.anim-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HERO SATELLITE ILLUSTRATION
   ============================================= */
.hero-visual {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: 0;
  transition: opacity 1s ease 0.5s;
  pointer-events: none;
  z-index: 0;
}
.hero-visual.show { opacity: 0.35; }

.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 50%;
  animation: spin linear infinite;
}
.orbit-1 { width: 200px; height: 200px; animation-duration: 12s; }
.orbit-2 { width: 300px; height: 300px; animation-duration: 20s; animation-direction: reverse; }
.orbit-3 { width: 340px; height: 340px; animation-duration: 30s; border-style: dashed; border-color: rgba(245,166,35,0.1); }

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.satellite {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(245,166,35,0.8);
}
.sat-1 { top: -4px; left: 50%; transform: translateX(-50%); }
.sat-2 { bottom: -4px; right: 20%; }
.sat-3 { top: 30%; right: -4px; }

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-core {
  font-size: 28px;
  position: relative;
  z-index: 2;
  animation: pulse-star 3s ease-in-out infinite;
}
@keyframes pulse-star {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(245,166,35,0.6)); }
  50%       { filter: drop-shadow(0 0 20px rgba(245,166,35,0.9)); }
}
.center-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,166,35,0.15) 0%, transparent 70%);
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0; }
}

/* Masqué sur mobile */
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 100px 24px 60px; }
}

/* =============================================
   SKELETON LOADING (portail hotspot)
   ============================================= */
.skeleton-plan {
  height: 76px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  margin-bottom: 8px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =============================================
   COUNTDOWN TIMER (succès portail)
   ============================================= */
.countdown-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 8px 0;
}
.countdown-svg {
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.4));
}
.countdown-track {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 3;
}
.countdown-progress {
  fill: none;
  stroke: url(#gold-grad);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}
.countdown-text {
  font-size: 13px;
  color: var(--text-muted, #8888a8);
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}

/* =============================================
   CURSOR CUSTOM
   ============================================= */
*, *::before, *::after { cursor: none !important; }
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: #f5a623;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
  box-shadow: 0 0 8px rgba(245,166,35,0.8);
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(245,166,35,0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(2px);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hover { width: 48px; height: 48px; border-color: var(--gold); }
.cursor-ring.click { transform: translate(-50%, -50%) scale(0.7); }
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none !important; } }

/* =============================================
   GRAIN OVERLAY
   ============================================= */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* =============================================
   AURORA BACKGROUND (mouse tracking)
   ============================================= */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at var(--mx, 20%) var(--my, 30%), rgba(100,60,200,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at calc(100% - var(--mx, 20%)) calc(100% - var(--my, 30%)), rgba(245,166,35,0.07) 0%, transparent 70%);
  transition: background 0.3s ease;
}

/* =============================================
   HERO SPLIT LAYOUT (avec globe)
   ============================================= */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: center;
  width: 100%;
}
.hero-text { text-align: left; }
.hero-text .hero-badge { justify-content: flex-start; }
.hero-text .hero-ctas { justify-content: flex-start; }
.hero-canvas-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#earth-canvas {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(245,166,35,0.15));
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; padding: 0 24px; }
  .hero-canvas-wrap { display: none; }
  .hero-text { text-align: center; }
  .hero-text .hero-badge { justify-content: center; }
  .hero-text .hero-ctas { justify-content: center; }
}

/* =============================================
   MARQUEE TICKER
   ============================================= */
.marquee-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(4px);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-item .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* =============================================
   CARD 3D TILT (transformPerspective)
   ============================================= */
.offer-card, .step, .include-item {
  transform-style: preserve-3d;
  will-change: transform;
}

/* =============================================
   HERO WORD SPLIT (pour animation GSAP)
   ============================================= */
.word-wrap { overflow: hidden; display: inline-block; }
.word { display: inline-block; }

/* =============================================
   HERO BADGE ANIMATION
   ============================================= */
.hero-badge {
  animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
}

/* =============================================
   SECTION TITLE UNDERLINE ANIMÉ
   ============================================= */
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.section-title.visible::after {
  transform: translateX(-50%) scaleX(1);
}

/* =============================================
   OFFER CARD ENHANCED
   ============================================= */
.offer-card {
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at var(--card-x, 50%) var(--card-y, 50%), rgba(245,166,35,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
.offer-card:hover::before { opacity: 1; }

/* =============================================
   FOOTER ENHANCED
   ============================================= */
.main-footer {
  position: relative;
  overflow: hidden;
}
.main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3), transparent);
}
