/* =========================================================
   GAËL WEBDESIGNER — Landing "Lune"
   Palette inspirée du site Astro Nazairienne
   ========================================================= */

:root {
  /* Couleurs principales — bleu nuit / cosmos */
  --bg-deep: #050a1a;
  --bg-mid: #0a1530;
  --bg-card: #0f1d3d;
  --bg-card-hover: #14254a;

  /* Accents bleu / cyan / vert */
  --accent-blue: #4a9eff;
  --accent-cyan: #5fdde5;
  --accent-green: #6ee7b7;
  --accent-glow: rgba(74, 158, 255, 0.4);

  /* Texte */
  --text-primary: #e8eefc;
  --text-secondary: #a3b1d1;
  --text-muted: #6a7a9c;

  /* Bordures */
  --border-subtle: rgba(74, 158, 255, 0.15);
  --border-strong: rgba(74, 158, 255, 0.35);

  /* Gradients signature */
  --gradient-title: linear-gradient(135deg, #4a9eff 0%, #5fdde5 50%, #6ee7b7 100%);
  --gradient-cta: linear-gradient(135deg, #4a9eff 0%, #5fdde5 100%);
  --gradient-bg: radial-gradient(ellipse at top, #0a1530 0%, #050a1a 60%);

  /* Espacements */
  --section-pad: 120px 0;
  --container-max: 1200px;

  /* Typo */
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ========================================================= */
/* RESET                                                      */
/* ========================================================= */

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========================================================= */
/* ÉTOILES D'ARRIÈRE-PLAN                                     */
/* ========================================================= */

.stars,
.stars-shooting {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 4s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}

.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px 1px rgba(255,255,255,0.8);
  animation: shoot linear forwards;
}

.shooting-star::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, white, transparent);
  transform-origin: left center;
  transform: translateX(2px);
}

@keyframes shoot {
  0%   { transform: translate(0, 0); opacity: 1; }
  100% { transform: translate(-300px, 300px); opacity: 0; }
}

/* ========================================================= */
/* CONTAINER & UTILITY                                        */
/* ========================================================= */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.container-narrow { max-width: 800px; }

.section { padding: var(--section-pad); position: relative; z-index: 2; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}

.section-lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

.section-lead strong {
  color: var(--accent-cyan);
  font-weight: 600;
}

.title-gradient {
  background: var(--gradient-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================================= */
/* NAVIGATION                                                 */
/* ========================================================= */

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1100px;
  z-index: 100;
  background: rgba(10, 21, 48, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

.logo-icon {
  width: 56px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 14px var(--accent-glow));
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 12px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  line-height: 1;
}

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

.nav-cta {
  background: var(--gradient-cta);
  color: var(--bg-deep) !important;
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(74, 158, 255, 0.3);
  line-height: 1.3;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(74, 158, 255, 0.5);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ========================================================= */
/* HERO                                                       */
/* ========================================================= */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 24px 80px;
  position: relative;
  text-align: center;
  overflow: visible;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent-cyan);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  font-weight: 500;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

/* ========================================================= */
/* SHOWCASE — Dernières réalisations                          */
/* ========================================================= */

.showcase {
  padding: 60px 24px 100px;
  position: relative;
  z-index: 2;
}

.showcase-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.showcase-title {
  text-align: center;
  margin-bottom: 48px;
}

.browser-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 60px -10px var(--accent-glow);
}

.browser-bar {
  background: rgba(5, 10, 26, 0.6);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.browser-dots {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dot.red    { background: #ff5f57; }
.browser-dot.yellow { background: #febc2e; }
.browser-dot.green  { background: #28c940; }

.browser-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  position: relative;
  height: 30px;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.url-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeShowcase 16s infinite;
  font-variant-numeric: tabular-nums;
}

.url-label::before {
  content: '🔒';
  margin-right: 8px;
  opacity: 0.5;
  font-size: 10px;
}

.url-label:nth-child(1) { animation-delay: 0s; }
.url-label:nth-child(2) { animation-delay: 4s; }
.url-label:nth-child(3) { animation-delay: 8s; }
.url-label:nth-child(4) { animation-delay: 12s; }

.browser-content {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.mockup-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  animation: fadeShowcase 16s infinite;
}

.mockup-image:nth-child(1) { animation-delay: 0s; }
.mockup-image:nth-child(2) { animation-delay: 4s; }
.mockup-image:nth-child(3) { animation-delay: 8s; }
.mockup-image:nth-child(4) { animation-delay: 12s; }

.mockup-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(5, 10, 26, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  padding: 9px 16px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeShowcase 16s infinite;
  z-index: 2;
}

.mockup-tag .accent { color: var(--accent-cyan); font-weight: 600; }
.mockup-tag:nth-child(5) { animation-delay: 0s; }
.mockup-tag:nth-child(6) { animation-delay: 4s; }
.mockup-tag:nth-child(7) { animation-delay: 8s; }
.mockup-tag:nth-child(8) { animation-delay: 12s; }

@keyframes fadeShowcase {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  22%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 700px) {
  .showcase { padding: 40px 16px 60px; }
  .browser-bar { padding: 10px 12px; gap: 10px; }
  .browser-dot { width: 10px; height: 10px; }
  .browser-url { font-size: 11px; padding: 4px 10px; height: 24px; }
  .mockup-tag { font-size: 11px; padding: 6px 10px; bottom: 10px; right: 10px; }
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

.hero-sub strong {
  color: var(--accent-cyan);
  font-weight: 600;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 80px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-cta);
  color: var(--bg-deep);
  padding: 18px 36px;
  border-radius: 16px;
  border: none;
  font-weight: 600;
  font-size: 17px;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  cursor: pointer;
  line-height: 1.3;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(74, 158, 255, 0.35);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(74, 158, 255, 0.55);
}

.btn-large {
  padding: 22px 44px;
  font-size: 19px;
}

.hero-meta {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

/* === MOON SCENE === */

.moon-scene {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 40px auto 0;
  z-index: 10;
}

.moon {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 35% 35%, #f4f0e8 0%, #c8c0b0 45%, #88827a 90%);
  border-radius: 50%;
  position: relative;
  box-shadow:
    0 0 80px rgba(255, 250, 240, 0.25),
    inset -20px -20px 50px rgba(0,0,0,0.4);
  animation: moonFloat 6s ease-in-out infinite;
}

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

.moon-crater {
  position: absolute;
  background: rgba(0,0,0,0.18);
  border-radius: 50%;
  box-shadow: inset 2px 2px 4px rgba(0,0,0,0.3);
}

.c1 { width: 30px; height: 30px; top: 25%; left: 60%; }
.c2 { width: 18px; height: 18px; top: 50%; left: 25%; }
.c3 { width: 22px; height: 22px; top: 65%; left: 55%; }
.c4 { width: 14px; height: 14px; top: 38%; left: 45%; }

.rocket {
  position: absolute;
  top: -20px;
  right: -30px;
  font-size: 60px;
  animation: rocketOrbit 12s linear infinite;
  transform-origin: -100px 140px;
}

.rocket-body {
  filter: drop-shadow(0 0 12px rgba(255, 200, 100, 0.6));
}

@keyframes rocketOrbit {
  from { transform: rotate(0deg) translateX(20px) rotate(-45deg); }
  to { transform: rotate(360deg) translateX(20px) rotate(-45deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeBob 2.5s ease-in-out infinite;
}

.scroll-arrow {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--accent-cyan), transparent);
}

@keyframes fadeBob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ========================================================= */
/* CARDS — section mission                                    */
/* ========================================================= */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 16px var(--accent-glow));
}

.card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.card-featured {
  background: linear-gradient(180deg, rgba(74, 158, 255, 0.12) 0%, var(--bg-card) 100%);
  border-color: var(--border-strong);
}

.card-featured .card-icon {
  filter: drop-shadow(0 0 24px var(--accent-cyan));
}

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

/* ========================================================= */
/* TIMELINE — Le voyage                                       */
/* ========================================================= */

.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding-left: 80px;
}

.timeline-line {
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom,
    var(--accent-blue) 0%,
    var(--accent-cyan) 50%,
    var(--accent-green) 100%);
  opacity: 0.4;
}

.step {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  position: relative;
}

.step:last-child { margin-bottom: 0; }

.step-num {
  position: absolute;
  left: -80px;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-cyan);
  box-shadow: 0 0 30px var(--accent-glow);
  flex-shrink: 0;
}

.step-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px 28px;
  flex: 1;
  transition: all 0.3s ease;
}

.step-content:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.step-price {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: var(--bg-deep);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.step-content p {
  color: var(--text-secondary);
  font-size: 15px;
}

@media (max-width: 600px) {
  .timeline { padding-left: 60px; }
  .step-num { left: -60px; width: 48px; height: 48px; font-size: 14px; }
  .timeline-line { left: 24px; }
}

/* ========================================================= */
/* ÉQUIPAGE — Pilote                                          */
/* ========================================================= */

.pilot {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 50px;
}

.pilot-photo {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
}

.pilot-avatar {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 700;
  color: var(--bg-deep);
  box-shadow: 0 0 60px var(--accent-glow);
  position: relative;
  z-index: 2;
}

.pilot-orbit {
  position: absolute;
  inset: -20px;
  border: 1px dashed var(--accent-blue);
  border-radius: 50%;
  opacity: 0.4;
  animation: orbitRotate 18s linear infinite;
}

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

.pilot-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 600;
}

.pilot-bio {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 16px;
}

.pilot-bio strong { color: var(--text-primary); }

.pilot-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.pilot-points span {
  color: var(--accent-green);
  font-weight: 700;
  width: 24px;
  height: 24px;
  background: rgba(110, 231, 183, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .pilot { grid-template-columns: 1fr; padding: 32px; gap: 32px; text-align: center; }
  .pilot-points li { justify-content: center; }
}

/* ========================================================= */
/* FAQ                                                        */
/* ========================================================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 20px 24px;
  transition: all 0.2s;
  cursor: pointer;
}

.faq-item:hover { border-color: var(--border-strong); }

.faq-item[open] {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  color: var(--accent-cyan);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================================= */
/* EMBARQUER — CTA Final                                      */
/* ========================================================= */

.cta-card {
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.15) 0%, rgba(95, 221, 229, 0.08) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(95, 221, 229, 0.1), transparent 60%);
  animation: ctaGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.035em;
}

.cta-sub {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.cta-meta {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.cta-meta a {
  color: var(--accent-cyan);
  border-bottom: 1px dashed var(--border-strong);
}

/* ========================================================= */
/* FOOTER                                                     */
/* ========================================================= */

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  background: rgba(5, 10, 26, 0.6);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 360px;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer ul li a {
  transition: color 0.2s;
}

.footer ul li a:hover { color: var(--accent-cyan); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ========================================================= */
/* RESPONSIVE GLOBAL                                          */
/* ========================================================= */

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .moon-scene { width: 180px; height: 180px; }
  .moon { width: 180px; height: 180px; }
  .cta-card { padding: 50px 24px; }
}

/* ========================================================= */
/* MODALE CONTACT                                             */
/* ========================================================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
  animation: modalFade 0.25s ease;
}

@keyframes modalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 26, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: linear-gradient(180deg, #0f1d3d 0%, #0a1530 100%);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 40px 36px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(74, 158, 255, 0.15);
  animation: modalSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlide {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s ease;
  font-family: var(--font-display);
}

.modal-close:hover {
  background: rgba(74, 158, 255, 0.1);
  border-color: var(--accent-blue);
  color: var(--text-primary);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.modal-header p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.55;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(5, 10, 26, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.15s ease;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(5, 10, 26, 0.85);
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.15);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
}

.modal-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.modal-divider {
  margin: 28px 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.modal-copy {
  text-align: center;
}

.modal-copy-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.modal-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(74, 158, 255, 0.08);
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
  color: var(--accent-cyan);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.modal-copy-btn:hover {
  background: rgba(74, 158, 255, 0.16);
  border-style: solid;
  border-color: var(--accent-blue);
}

.modal-copy-btn.is-copied {
  background: rgba(110, 231, 183, 0.12);
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.copy-icon { font-size: 16px; }

/* Lien email copiable inline (CTA + footer) */
.js-copy-link {
  cursor: pointer;
  transition: color 0.2s ease;
}

.js-copy-link.is-copied {
  color: var(--accent-green) !important;
}

.js-copy-link.is-copied .copy-link-text {
  font-weight: 600;
}

@media (max-width: 520px) {
  .modal-card { padding: 32px 22px 24px; }
  .modal-header h3 { font-size: 20px; }
}
