/* ===========================
   PACIFIC 734 — OCEAN THEME
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --gold:        #3DD6C8;          /* Turquoise bioluminescent  */
  --gold-light:  #72EDE4;
  --gold-dark:   #1AADA0;
  --gold-glow:   rgba(61,214,200,0.18);
  --black:       #020A12;
  --dark-1:      #050F1A;          /* Bleu abysse              */
  --dark-2:      #071525;
  --dark-3:      #0A1D33;
  --dark-4:      #0E2540;
  --white:       #E8F4F8;
  --text-bright: rgba(232,244,248,0.93);
  --text-mid:    rgba(180,220,235,0.6);
  --text-dim:    rgba(140,190,210,0.3);
  --border:      rgba(61,214,200,0.2);
  --border-dim:  rgba(100,180,210,0.08);
  --shadow:      0 4px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 40px rgba(61,214,200,0.15);
  --radius:      3px;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display:'Cormorant Garamond', serif;
  --font-body:   'Montserrat', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden;}
body {
  font-family: var(--font-body);
  background: var(--dark-1);
  color: var(--text-bright);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Canvas Ocean Background ── */
#ocean-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* Tout le contenu passe au-dessus du canvas */
.navbar, section, footer, .mobile-menu {
  position: relative;
  z-index: 1;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}

.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px auto;
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  text-align: center;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-bright);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* ══════════════════════════
   NAVBAR
══════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: var(--transition);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.navbar.scrolled {
  background: rgba(2,10,18,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled::after { opacity: 1; }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
}

.navbar-brand-name { font-size: 1.35rem; }

.navbar-brand-sub {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.navbar-brand .num { color: var(--gold); }

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

.navbar-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 4px;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.navbar-nav a:hover,
.navbar-nav a.active { color: var(--gold); }
.navbar-nav a:hover::after,
.navbar-nav a.active::after { width: 100%; }

/* ══════════════════════════
   LANG DROPDOWN
══════════════════════════ */
.lang-dropdown {
  position: relative;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-bright);
  cursor: pointer;
  transition: var(--transition);
}

.lang-dropdown-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lang-dropdown-btn img {
  width: 16px;
  height: 11px;
  border-radius: 1px;
  object-fit: cover;
}

.lang-dropdown-btn .lang-arrow {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
  margin-left: 2px;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 130px;
  background: rgba(2,10,18,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  z-index: 100;
}

.lang-dropdown.open .lang-dropdown-menu {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 7px 10px;
  background: transparent;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.lang-option img {
  width: 16px;
  height: 11px;
  border-radius: 1px;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-option:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-bright);
}

.lang-option.active {
  color: var(--gold);
}

.lang-option.active::after {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: auto;
}

/* ══════════════════════════
   HAMBURGER & MOBILE
══════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-bright);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(2,10,18,0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 48px 40px;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  transition: color 0.25s;
  border-bottom: 1px solid var(--border-dim);
  padding: 14px 0;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-lang-switcher {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: env(safe-area-inset-bottom, 8px);
  border-top: 1px solid var(--border-dim);
}

.mobile-lang-switcher .lang-btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-lang-switcher .lang-btn img {
  width: 16px;
  height: 11px;
  border-radius: 1px;
  object-fit: cover;
  flex-shrink: 0;
}

.mobile-lang-switcher .lang-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-bright);
  border-color: rgba(255,255,255,0.2);
}

.mobile-lang-switcher .lang-btn.active {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

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

  .lang-dropdown {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ══════════════════════════
   HERO
══════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ← clé du plein écran */
  object-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
  filter: brightness(0.95) saturate(1.3) sepia(0.25) contrast(1.05);
}

/* Fond image hero + overlay ocean profond */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('') center/cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,10,18,0.55) 0%,
    rgba(5,20,40,0.4) 40%,
    rgba(2,10,18,0.85) 100%
  );
  z-index: 1;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* Rayons lumineux sous-marins */
.hero::before {
  content: '';
  position: absolute;
  left: 60px; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(61,214,200,0.4), transparent);
  opacity: 0.4;
  z-index: 2;
  animation: lightRay 6s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  right: 60px; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(61,214,200,0.4), transparent);
  opacity: 0.4;
  z-index: 2;
  animation: lightRay 6s ease-in-out infinite alternate-reverse;
}

@keyframes lightRay {
  from { opacity: 0.2; transform: scaleY(0.9); }
  to   { opacity: 0.5; transform: scaleY(1.05); }
}

/* Bulles décoratives */
.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-bubbles span {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: rgba(61,214,200,0.12);
  border: 1px solid rgba(61,214,200,0.2);
  animation: bubbleRise linear infinite;
}

.hero-bubbles span:nth-child(1)  { width:8px;  height:8px;  left:10%; animation-duration:9s;  animation-delay:0s; }
.hero-bubbles span:nth-child(2)  { width:5px;  height:5px;  left:22%; animation-duration:12s; animation-delay:2s; }
.hero-bubbles span:nth-child(3)  { width:12px; height:12px; left:35%; animation-duration:8s;  animation-delay:1s; }
.hero-bubbles span:nth-child(4)  { width:6px;  height:6px;  left:50%; animation-duration:11s; animation-delay:4s; }
.hero-bubbles span:nth-child(5)  { width:9px;  height:9px;  left:65%; animation-duration:7s;  animation-delay:0.5s; }
.hero-bubbles span:nth-child(6)  { width:4px;  height:4px;  left:78%; animation-duration:13s; animation-delay:3s; }
.hero-bubbles span:nth-child(7)  { width:7px;  height:7px;  left:88%; animation-duration:10s; animation-delay:1.5s; }

@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeUp 1.2s ease both;
  animation-delay: 0.4s;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 100px;
  margin-bottom: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-style: italic;
}

.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  font-variant-numeric: lining-nums;
}

.hero-title .gold {
  color: var(--gold);
  display: block;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-shadow: 0 0 60px rgba(61,214,200,0.5);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(180,220,235,0.6);
  margin: 22px 0 44px;
  letter-spacing: 0.08em;
}

/* ── Boutons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 44px;
  border: 1px solid;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline {
  border-color: rgba(180,220,235,0.3);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(61,214,200,0.15);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 32px rgba(61,214,200,0.35);
}

.btn-dark {
  background: rgba(61,214,200,0.06);
  border-color: rgba(180,220,235,0.14);
  color: var(--text-bright);
}

.btn-dark:hover {
  background: rgba(61,214,200,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════
   TRUST BAR
══════════════════════════ */
.trust-bar {
  background: rgba(7,21,37,0.95);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  backdrop-filter: blur(10px);
  padding: 22px 0;
  position: relative;
  z-index: 10;
  overflow: hidden; /* ← sécurité anti-débordement */
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.85;
}

.trust-stars {
  font-size: 1rem;
  color: #F5C518;
  letter-spacing: 2px;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.trust-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dim);
  flex-shrink: 0;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .trust-bar-inner {
    flex-wrap: wrap;         /* ← autorise le retour à la ligne */
    gap: 0;
    padding: 0 12px;
  }

  .trust-item {
    flex: 1 1 calc(50% - 1px); /* ← 2 items par ligne */
    justify-content: center;
    padding: 10px 8px;
    min-width: 0;              /* ← évite le débordement */
  }

  .trust-number {
    font-size: 1.1rem;
  }

  .trust-label {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .trust-divider {
    display: none;             /* ← supprime tous les séparateurs en mobile */
  }
}

/* ══════════════════════════
   GALLERY
══════════════════════════ */
.gallery-section {
  background: rgba(5,15,26,0.85);
  backdrop-filter: blur(2px);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(61,214,200,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Wrapper ── */
.gallery-track-wrapper {
  margin-top: 56px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-track-wrapper--mt {
  margin-top: 10px;
}

/* Fondu bords */
.gallery-track-wrapper::before,
.gallery-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.gallery-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(5,15,26,0.95), transparent);
}

.gallery-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(5,15,26,0.95), transparent);
}

/* ── Track ── */
.gallery-track {
  display: flex;
  gap: 10px;
  width: max-content;
}

/* Ligne 1 : droite → gauche */
.gallery-track--left {
  animation: scrollLeft 22s linear infinite;
}

/* Ligne 2 : gauche → droite */
.gallery-track--right {
  animation: scrollRight 26s linear infinite;
}

/* Pause au survol */
.gallery-track-wrapper:hover .gallery-track {
  animation-play-state: paused;
}

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

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

/* ── Items ── */
.gallery-item {
  overflow: hidden;
  width: 300px;
  height: 220px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.8) saturate(0.85) hue-rotate(10deg);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(61,214,200,0.1));
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1.1) hue-rotate(5deg);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-cta { text-align: center; margin-top: 52px; }

/* ══════════════════════════
   PRICING
══════════════════════════ */
.pricing-section {
  background: rgba(7,21,37,0.88);
  backdrop-filter: blur(2px);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(61,214,200,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.pricing-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.pricing-card {
  background: rgba(10,29,51,0.7);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.pricing-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.pricing-card:hover {
  border-color: var(--border);
  background: rgba(14,37,64,0.8);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

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

.pricing-card .label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text-bright);
  line-height: 1;
}

.pricing-card .price sup {
  font-size: 1rem;
  vertical-align: super;
  margin-right: 2px;
  color: var(--gold);
}

.pricing-card .price.free {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 11px;
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.05em;
}

.pricing-grid::before,
.pricing-grid-bottom::before {
  content: attr(data-group);
  grid-column: 1 / -1;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: 4px;
}

/* ══════════════════════════
   PRICING — MOBILE
══════════════════════════ */
@media (max-width: 768px) {

  .pricing-section {
    padding: 72px 0;
  }

  /* Label de groupe au-dessus de chaque grille */
  .pricing-grid::before,
  .pricing-grid-bottom::before {
    content: attr(data-group);
    grid-column: 1 / -1;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-dim);
    margin-bottom: 4px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 28px;
    padding: 0 16px;
  }

  .pricing-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
    padding: 0 16px;
  }

  /* Dernière carte enfant (GRATUIT) → pleine largeur */
  .pricing-grid-bottom .pricing-card:last-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
  }

  .pricing-grid-bottom .pricing-card:last-child .label {
    margin-bottom: 0;
    font-size: 11px;
  }

  .pricing-grid-bottom .pricing-card:last-child .price.free {
    font-size: 1.2rem;
  }

  .pricing-card {
    padding: 20px 16px;
  }

  .pricing-card .price {
    font-size: 2rem;
  }

  .pricing-card .label {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .pricing-note {
    padding: 0 16px;
    margin-top: 18px;
  }
}

@media (max-width: 390px) {
  .pricing-card .price {
    font-size: 1.75rem;
  }

  .pricing-card .label {
    font-size: 10px;
  }
}

/* ══════════════════════════
   SERVICES
══════════════════════════ */
.services-section {
  background: rgba(5,15,26,0.85);
  backdrop-filter: blur(2px);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(61,214,200,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.service-card {
  background: rgba(10,29,51,0.65);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.service-card:hover {
  border-color: var(--border);
  background: rgba(14,37,64,0.75);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.service-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.3rem;
  line-height: 1;
}

.service-card span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.services-cta { text-align: center; margin-top: 52px; }

/* ══════════════════════════
   CTA SECTION
══════════════════════════ */
.cta-section {
  background: rgba(7,21,37,0.9);
  backdrop-filter: blur(4px);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(61,214,200,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-bright);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.footer {
  background: rgba(2,10,18,0.96);
  padding: 72px 0 0;
  border-top: 1px solid var(--border-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 64px;
}

.footer-brand .brand-name {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand .brand-name .num { color: var(--gold); }

.footer-brand .tagline {
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.social-links { display: flex; gap: 16px; }

.social-links a {
  color: var(--white);
  font-size: 2rem;
  transition: color 0.25s;
}

.social-links a:hover { color: var(--gold); }

/* ── Adresse ── */
.footer-contact h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-contact .address {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-mid);
  font-size: 14x;
  line-height: 1.8;
}

.footer-contact .address svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--gold);
}

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid var(--border-dim);
  padding: 20px 0;
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.footer-bottom a {
  color: var(--text-dim);
  transition: color 0.25s;
}

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

/* ── Reviews Carousel ── */
.reviews-carousel {
  overflow: hidden;
  width: 100%;
  margin: 4px 0 6px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews-dots {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 2px;
}

.reviews-dots .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-dim);
  transition: background 0.3s;
  cursor: pointer;
}

.reviews-dots .dot.active {
  background: var(--gold);
}

.footer-google {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-google h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.footer-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-size: 1rem;
}

.footer-stars span {
  font-size: 13px;
  color: var(--text-mid);
  margin-left: 6px;
  font-family: var(--font-display);
}

.footer-review-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 26ch;
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}

.footer-review-author {
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

.footer-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-top: 4px;
  padding: 9px 16px;
  width: fit-content;
}

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ══ POPUP IMAGE ══ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: popupFadeIn 0.3s ease both;
}

.popup-overlay.hidden { display: none; }

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

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

.popup-card {
  position: relative;
  max-width: 440px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.06),
    0 8px 24px rgba(0,0,0,0.12),
    0 24px 64px rgba(0,0,0,0.18);
  animation: popupSlideUp 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}

.popup-card img {
  display: block;
  width: 100%;
  height: auto;
}

.popup-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  color: #222;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  z-index: 2;
  line-height: 1;
}

.popup-x:hover {
  background: #fff;
  transform: scale(1.1);
}

/* ══ BULLE FLOTTANTE ══ */
.popup-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9998;
  background: #3DD6C8;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bubbleFloat 3.5s ease-in-out infinite;
  box-shadow:
    inset 4px 4px 10px rgba(255,255,255,0.35),
    inset -3px -3px 8px rgba(0,150,140,0.3),
    0 8px 32px rgba(61,214,200,0.25);
}

.popup-bubble.hidden { display: none; }

.popup-bubble::before {
  content: '';
  position: absolute;
  top: 14px; left: 18px;
  width: 18px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: rotate(-35deg);
  pointer-events: none;
}

.popup-bubble::after {
  content: '';
  position: absolute;
  top: 22px; left: 24px;
  width: 8px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: rotate(-35deg);
  pointer-events: none;
}

.popup-bubble span {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #020A12;
  text-align: center;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 480px) {
  .popup-card {
    max-width: 100%;
    border-radius: 10px;
  }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero::before, .hero::after { display: none; }
}

@media (max-width: 900px) {
  .navbar-nav, .lang-switcher { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .container { padding: 0 20px; }
  .pricing-grid, .pricing-grid-bottom { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 72px 20px; }
}

/* ══ LÉGAL ══ */
.legal-section {
  padding: 80px 0 120px;
}

.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation rapide */
.legal-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.legal-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary, #2ec4b6);
  text-decoration: none;
  border: 1px solid var(--color-primary, #2ec4b6);
  padding: 8px 20px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.legal-nav a:hover {
  background: var(--color-primary, #2ec4b6);
  color: #fff;
}

/* Header de section */
.legal-header {
  text-align: center;
  margin-bottom: 48px;
}
.legal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 12px 0;
  font-family: var(--font-display, inherit);
}

/* Blocs */
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.legal-block {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}
.legal-block h2 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary, #2ec4b6);
  margin-bottom: 12px;
}
.legal-block p,
.legal-block li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.legal-block strong {
  color: rgba(255,255,255,0.9);
}
.legal-block ul {
  padding-left: 20px;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-block a {
  color: var(--color-primary, #2ec4b6);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-block a:hover {
  opacity: 0.8;
}

/* Séparateur entre les 2 sections */
.legal-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 80px 0;
}
.page-hero {
padding-top: var(--navbar-height, 80px);
}

.page-hero-content {
text-align: center;
}