/* ═══════════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  --black:   #050810;
  --deep:    #090d1a;
  --card:    #0e1526;
  --border:  rgba(100,140,255,0.14);
  --accent:  #4f7aff;
  --accent2: #a78bfa;
  --gold:    #f0c040;
  --white:   #eef2ff;
  --muted:   #7a8aaa;
  --radius:  18px;
  --nav-h:   76px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   FOND ÉTOILÉ
═══════════════════════════════════════════ */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 28% 18%, #091540 0%, var(--black) 68%);
}
#starfield canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

section {
  padding: 112px 0;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(5,8,16,0.72);
  border-bottom: 1px solid var(--border);
}

nav .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.87rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(79,122,255,0.3);
}
.nav-cta:hover {
  background: #3a63e0;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(9,13,26,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  padding: 24px 32px 32px;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .nav-cta {
  text-align: center;
  margin-top: 8px;
  border-bottom: none;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 100px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,122,255,0.12);
  border: 1px solid rgba(79,122,255,0.3);
  color: var(--accent);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before { content: '★'; }

h1.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 38px;
  line-height: 1.76;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #7b5cf0);
  color: #fff;
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(79,122,255,0.35);
  transition: transform 0.22s, box-shadow 0.22s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(79,122,255,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.22s, color 0.22s;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num em { color: var(--accent); font-style: normal; }
.stat-label {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 4px;
}

/* Carte de performance */
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(79,122,255,0.08), transparent 70%);
}

.hc-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
}
.hc-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.hc-metric:last-of-type { border-bottom: none; }
.hc-label { font-size: 0.84rem; color: var(--muted); }
.hc-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
}
.hc-value.up  { color: #4ade80; }
.hc-value.good { color: var(--accent); }

.hc-bar-wrap { margin-top: 22px; }
.hc-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.hc-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
}
.hc-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  animation: barGrow 1.4s 0.8s ease both;
  transform-origin: left;
}

/* Orbes décoratifs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}
.orb-a { width: 480px; height: 480px; background: rgba(79,122,255,0.10); right: -80px; top: 8%; }
.orb-b { width: 320px; height: 320px; background: rgba(167,139,250,0.08); right: 240px; bottom: 8%; }

/* ═══════════════════════════════════════════
   TITRES PARTAGÉS
═══════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 500px;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
#services { background: var(--deep); }

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 56px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,122,255,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover { border-color: rgba(79,122,255,0.42); transform: translateY(-5px); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(79,122,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 0.9rem; line-height: 1.72; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.84rem;
  margin-top: 16px;
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════
   SECTION GEO
═══════════════════════════════════════════ */
#geo { background: var(--black); }

.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.geo-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}
.geo-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(79,122,255,0.07), transparent 70%);
  pointer-events: none;
}

.geo-map {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0b1230, #111e3c);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px solid rgba(79,122,255,0.5);
  position: absolute;
  animation: pulse 2.6s ease-out infinite;
}
.pulse-ring:nth-child(2) { animation-delay: 0.85s; }
.pulse-ring:nth-child(3) { animation-delay: 1.7s; }

.pin {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 22px rgba(79,122,255,0.9);
}

.geo-list {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.geo-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--muted);
}
.geo-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 26px 0;
}
.check-list li { display: flex; gap: 14px; }
.check-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: rgba(79,122,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  color: var(--accent);
  margin-top: 2px;
}
.check-list strong {
  display: block;
  font-weight: 500;
  font-size: 0.93rem;
  margin-bottom: 2px;
}
.check-list span { color: var(--muted); font-size: 0.84rem; }

/* ═══════════════════════════════════════════
   PROCESSUS
═══════════════════════════════════════════ */
#process { background: var(--deep); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.step { text-align: center; padding: 0 16px 28px; }
.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--deep);
}
.step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p { color: var(--muted); font-size: 0.85rem; line-height: 1.65; }

/* ═══════════════════════════════════════════
   PRISE DE RENDEZ-VOUS
═══════════════════════════════════════════ */
#booking { background: var(--black); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.booking-info p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 0.98rem;
  line-height: 1.76;
}

.booking-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}
.perk-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(79,122,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  margin-top: 1px;
}
.perk-text strong { display: block; font-weight: 500; margin-bottom: 2px; }
.perk-text span { color: var(--muted); font-size: 0.82rem; }

.booking-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 38px 34px;
}
.form-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 15px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus {
  border-color: var(--accent);
  background: rgba(79,122,255,0.05);
}
select.form-control { cursor: pointer; }
option { background: #0e1526; color: var(--white); }

.form-note {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}
.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px 12px;
}
.form-success .check-big {
  font-size: 2.8rem;
  margin-bottom: 14px;
}
.form-success h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.form-success p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

/* ═══════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════ */
#testimonials { background: var(--deep); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 14px; letter-spacing: 3px; }
.testi-card blockquote {
  color: var(--white);
  font-size: 0.91rem;
  line-height: 1.74;
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0.9;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #4f7aff, #7b5cf0); }
.av2 { background: linear-gradient(135deg, #f0c040, #f07040); }
.av3 { background: linear-gradient(135deg, #40d0f0, #4f7aff); }
.author-name { font-weight: 500; font-size: 0.88rem; }
.author-role  { font-size: 0.76rem; color: var(--muted); }

/* ═══════════════════════════════════════════
   APPEL À L'ACTION
═══════════════════════════════════════════ */
#cta { background: var(--black); text-align: center; }

.cta-box {
  background: linear-gradient(135deg, rgba(79,122,255,0.1), rgba(167,139,250,0.07));
  border: 1px solid rgba(79,122,255,0.22);
  border-radius: 28px;
  padding: 80px 56px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,122,255,0.1), transparent 70%);
}
.cta-box p { color: var(--muted); margin: 12px 0 36px; font-size: 1rem; }

.cta-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-row input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
}
.cta-row input::placeholder { color: var(--muted); }
.cta-row input:focus { border-color: var(--accent); }
.cta-fine { font-size: 0.74rem; color: var(--muted); margin-top: 14px; }

/* ═══════════════════════════════════════════
   PIED DE PAGE
═══════════════════════════════════════════ */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.86rem;
  max-width: 280px;
  margin-top: 14px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { color: var(--muted); font-size: 0.78rem; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes barGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes pulse {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(3);   opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Délais en cascade */
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ═══════════════════════════════════════════
   RESPONSIVE (MOBILE & TABLETTE)
═══════════════════════════════════════════ */
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-card  { max-width: 480px; }
}

@media (max-width: 900px) {
  .grid-3          { grid-template-columns: repeat(2, 1fr); }
  .geo-grid        { grid-template-columns: 1fr; gap: 44px; }
  .booking-grid    { grid-template-columns: 1fr; gap: 44px; }
  .testi-grid      { grid-template-columns: 1fr 1fr; }
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid    { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .nav-links       { display: none; }
  .hamburger       { display: flex; }
  .nav-cta         { display: none; }
}

@media (max-width: 600px) {
  .container     { padding: 0 20px; }
  section        { padding: 80px 0; }
  .grid-3        { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .hero-stats    { gap: 24px; }
  .cta-box       { padding: 48px 24px; }
  .booking-form  { padding: 28px 22px; }
}

@media (max-width: 420px) {
  .footer-top   { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}