/* ============================================
   VIVALYS — Feuille de styles principale
   ============================================ */

:root {
  --bg: #0A0606;
  --bg-soft: #120A08;
  --gold: #E89020;          /* orange chaud (halo du logo) */
  --gold2: #FFC940;         /* jaune doré (centre du soleil) */
  --warm: #A0381B;          /* brun rouge (main + texte VIVALYS) */
  --warm-glow: rgba(160,56,27,0.22);
  --gold-glow: rgba(232,144,32,0.22);
  --blue-glow: rgba(100,120,255,0.18);
  --glass: rgba(255,255,255,0.04);
  --glass-strong: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.10);
  --text: #F2EFE4;
  --muted: #8A7D72;
  --success: #4CAF50;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ── BACKGROUND ORBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,144,32,0.18), transparent 70%); top: -100px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,201,64,0.10), transparent 70%); top: 30%; right: -150px; animation-delay: -4s; }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(160,56,27,0.12), transparent 70%); bottom: 10%; left: 20%; animation-delay: -8s; }
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

/* ── NAV (centrée, 2 lignes) ── */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 3rem;
  background: rgba(10,6,6,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo span {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold2));
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  color: var(--gold) !important;
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold-glow) !important;
  border-color: var(--gold) !important;
}

/* Accès Membre */
.nav-membre {
  padding: 0.55rem 1.4rem;
  background: var(--gold) !important;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: #0a0a0f !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition: all 0.3s !important;
  white-space: nowrap;
}
.nav-membre:hover {
  background: #E8C97A !important;
  border-color: #E8C97A !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.nav-membre-mobile {
  display: block;
  margin: 8px 16px;
  padding: 12px 20px;
  background: var(--gold) !important;
  border-radius: 6px;
  color: #0a0a0f !important;
  font-weight: 700 !important;
  text-align: center;
}

/* Services dropdown */
.has-dropdown { position: relative; }
.dropdown-trigger { cursor: pointer; }
.dropdown-trigger::after {
  content: '▾';
  margin-left: 0.3rem;
  font-size: 0.7rem;
  color: var(--gold);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  padding: 0.6rem;
  background: rgba(18,10,8,0.96);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  display: grid;
  gap: 0.2rem;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
  background: var(--gold-glow);
  color: var(--text);
}
.dropdown-menu a::after { display: none; }
.dropdown-menu .di { font-size: 1rem; }

/* Burger (positionné en absolu pour ne pas casser le centrage) */
.burger {
  display: none;
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.6rem 0.7rem;
  cursor: pointer;
  z-index: 250;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10,6,6,0.97);
  backdrop-filter: blur(20px);
  z-index: 240;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.7,.0,.3,1);
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mobile-drawer a {
  display: block;
  padding: 1rem 1rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--glass-border);
}
.mobile-drawer a.active { color: var(--gold); }
.mobile-drawer .m-section {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1.5rem 1rem 0.5rem;
}
.mobile-drawer .m-sub a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  padding: 0.75rem 1rem 0.75rem 1.5rem;
}

/* ── PAGE WRAPPER ── */
.page { position: relative; z-index: 1; flex: 1; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 10rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero h1 .line2 { display: block; }
.hero h1 .grad {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 520px;
  font-size: 1rem; font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}
.btn-gold {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0A0A0C;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(232,144,32,0.3);
  transition: box-shadow 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover {
  box-shadow: 0 0 50px rgba(232,144,32,0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-size: 0.82rem; font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: var(--glass-strong);
}

.hero-grid {
  position: absolute;
  right: 3rem; top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}
.hero-pill {
  padding: 0.8rem 1.2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  backdrop-filter: blur(16px);
  font-size: 0.8rem; font-weight: 500;
  color: var(--muted);
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.hero-pill:hover {
  border-color: rgba(232,144,32,0.3);
  color: var(--text);
  transform: translateY(-2px);
}
.hero-pill .icon { font-size: 1.1rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 13rem 3rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(232,144,32,0.05), transparent);
}
.page-hero .crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.page-hero .crumbs a { color: var(--gold); text-decoration: none; }
.page-hero .crumbs a:hover { text-decoration: underline; }
.page-hero .crumbs .sep { opacity: 0.4; }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  max-width: 900px;
  margin-inline: auto;
}
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}
.page-hero .ph-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ── STATS BAR ── */
.stats-bar {
  position: relative; z-index: 1;
  display: flex; justify-content: center; gap: 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(20px);
}
.stat-item {
  flex: 1; text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--glass-border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SECTION COMMONS ── */
section { padding: 7rem 3rem; position: relative; z-index: 1; }
.tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.grad-text {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-line {
  width: 50px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 2rem;
}
.section-line.center { margin-left: auto; margin-right: auto; }

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.values-wrap {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.5rem;
}
.val-chip {
  padding: 0.4rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--gold);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, background 0.3s;
}
.val-chip:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.about-cards {
  display: flex; flex-direction: column; gap: 1rem;
}
.glass-card {
  padding: 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.glass-card:hover {
  border-color: rgba(232,144,32,0.25);
  background: rgba(232,144,32,0.04);
  transform: translateY(-3px);
}
.glass-card .card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.glass-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.glass-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── SERVICES ── */
.services-section { background: rgba(255,255,255,0.01); }
.services-header { margin-bottom: 3rem; }
.services-header.center { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-card {
  padding: 2rem 1.6rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  border-color: rgba(232,144,32,0.4);
  background: rgba(232,144,32,0.06);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(232,144,32,0.12);
}
.service-card .s-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.service-card .s-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.service-card .s-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-card .s-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s;
}
.service-card:hover .s-link { gap: 0.6rem; }

/* ── SERVICE DETAIL PAGE ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.feature-item {
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.feature-item .fi-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.feature-item h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.feature-item p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.process-steps {
  display: grid;
  gap: 1.2rem;
  counter-reset: step;
}
.process-step {
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process-step h5 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Cross-sell / related */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

/* ── MISSION BANNER ── */
.mission-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(232,144,32,0.08) 0%, rgba(160,56,27,0.06) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,144,32,0.10), transparent);
}
.mission-section .section-title {
  max-width: 700px;
  margin: 0.5rem auto 1.5rem;
}
.mission-section p {
  font-size: 1rem; font-weight: 300;
  color: var(--muted);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* Pillar block */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.pillar {
  padding: 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  text-align: left;
}
.pillar .p-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-glow);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.pillar h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.4rem; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.tl-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -1.7rem; top: 0.3rem;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232,144,32,0.15);
}
.tl-item .tl-date {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.tl-item h5 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.tl-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-list { display: grid; gap: 0.8rem; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  padding: 0 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  overflow: hidden;
  transition: max-height 0.4s, padding 0.4s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}

/* ── CONTACT ── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info p {
  font-size: 0.95rem; font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 0.8rem; }
.c-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.8rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.c-item:hover {
  border-color: rgba(232,144,32,0.3);
  color: var(--text);
}
.c-item .c-icon { font-size: 1.1rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { display: flex; flex-direction: column; gap: 0.4rem; }
.f-group label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.f-group input,
.f-group textarea,
.f-group select {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  outline: none;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
  border-color: rgba(232,144,32,0.5);
  box-shadow: 0 0 0 3px rgba(232,144,32,0.08);
}
.f-group select option { background: #111; }
.f-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0A0A0C;
  border: none;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(232,144,32,0.2);
  transition: box-shadow 0.3s, transform 0.2s;
}
.btn-submit:hover {
  box-shadow: 0 0 50px rgba(232,144,32,0.4);
  transform: translateY(-2px);
}
.btn-submit.is-sent {
  background: linear-gradient(135deg, var(--success), #66BB6A);
}

/* ── FOOTER ── */
footer.main-footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--glass-border);
  background: rgba(10,6,6,0.9);
  backdrop-filter: blur(20px);
  padding: 4rem 3rem 1.5rem;
}
.f-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.f-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.f-col ul { list-style: none; display: grid; gap: 0.6rem; }
.f-col a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.f-col a:hover { color: var(--gold); }
.f-brand .f-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.f-brand .f-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.f-brand .f-logo span {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.f-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 320px;
}
.f-socials {
  display: flex; gap: 0.6rem;
}
.f-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
}
.f-socials a:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--gold);
}

/* WhatsApp hover */
.f-socials a[aria-label="WhatsApp"]:hover {
  border-color: #25D366;
  background: rgba(37,211,102,0.1);
  color: #25D366;
}
/* Instagram hover */
.f-socials a[aria-label="Instagram"]:hover {
  border-color: #E1306C;
  background: rgba(225,48,108,0.1);
  color: #E1306C;
}

/* Bouton WhatsApp flottant */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  animation: wa-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
}
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 66px;
  background: #25D366;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

.f-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.f-copy { font-size: 0.75rem; color: var(--muted); }
.f-legal { display: flex; gap: 1.5rem; list-style: none; }
.f-legal a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.f-legal a:hover { color: var(--gold); }

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #0A0A0C;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(232,144,32,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 150;
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpBig {
  from { opacity: 0; transform: translateY(60px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.services-grid .service-card,
.about-cards .glass-card,
.pillars .pillar,
.feature-grid .feature-item,
.gallery .gallery-item,
.related-grid > * {
  transition-delay: 0ms;
}
.services-grid .service-card:nth-child(1),
.about-cards .glass-card:nth-child(1),
.pillars .pillar:nth-child(1) { transition-delay: 50ms; }
.services-grid .service-card:nth-child(2),
.about-cards .glass-card:nth-child(2),
.pillars .pillar:nth-child(2) { transition-delay: 100ms; }
.services-grid .service-card:nth-child(3),
.about-cards .glass-card:nth-child(3),
.pillars .pillar:nth-child(3) { transition-delay: 150ms; }
.services-grid .service-card:nth-child(4),
.pillars .pillar:nth-child(4) { transition-delay: 200ms; }
.services-grid .service-card:nth-child(5),
.pillars .pillar:nth-child(5) { transition-delay: 250ms; }
.services-grid .service-card:nth-child(6),
.pillars .pillar:nth-child(6) { transition-delay: 300ms; }
.services-grid .service-card:nth-child(7) { transition-delay: 350ms; }
.services-grid .service-card:nth-child(8) { transition-delay: 400ms; }
.services-grid .service-card:nth-child(9) { transition-delay: 450ms; }

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold2));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(232,144,32,0.4);
}

/* ── PAGE ENTER ANIMATION ── */
body.page-enter {
  animation: pageFadeIn 0.6s ease-out forwards;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── GLASS CARD BORDER ANIMATION ON HOVER ── */
.glass-card {
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent, rgba(232,144,32,0.3), transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.glass-card:hover::before {
  opacity: 1;
  animation: glassBorderShine 1.5s ease-in-out infinite;
}
@keyframes glassBorderShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── HOVER ENHANCEMENTS ── */
.hero-pill {
  transition: border-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.hero-pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(232,144,32,0.12);
}

/* Parallax on orbs will be handled by JS */

/* ── BRAND SHOWCASE (vitrine du logo) ── */
.brand-showcase {
  position: relative;
  text-align: center;
  padding: 7rem 3rem;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,144,32,0.10), transparent 70%),
    linear-gradient(180deg, rgba(160,56,27,0.04), rgba(232,144,32,0.04));
}
.brand-showcase::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(232,144,32,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,201,64,0.12), transparent 40%);
  filter: blur(40px);
  z-index: 0;
  animation: brand-bg-drift 14s ease-in-out infinite alternate;
}
@keyframes brand-bg-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,20px) scale(1.05); }
}

.brand-showcase .bs-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.brand-showcase .bs-logo {
  height: 520px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  position: relative;
  z-index: 2;
  animation: logo-futurist 8s ease-in-out infinite;
  filter:
    drop-shadow(0 0 18px rgba(232,144,32,0.7))
    drop-shadow(0 0 50px rgba(255,201,64,0.35))
    drop-shadow(0 30px 60px rgba(160,56,27,0.3));
  transform-style: preserve-3d;
}

/* ── LOGO 3D (Three.js) ── */
#logo3d-container {
  width: 100%;
  height: 520px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}
#logo3d-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}
@media (max-width: 700px) {
  .brand-showcase .bs-logo { height: 400px; }
  #logo3d-container { height: 400px; }
}

/* Futuristic logo animation: float + glow pulse + subtle rotate */
@keyframes logo-futurist {
  0%   { transform: translateY(0px) scale(1)    rotateY(0deg);
         filter: drop-shadow(0 0 18px rgba(232,144,32,0.7)) drop-shadow(0 0 50px rgba(255,201,64,0.35)) drop-shadow(0 30px 60px rgba(160,56,27,0.3)); }
  15%  { transform: translateY(-14px) scale(1.02) rotateY(3deg);
         filter: drop-shadow(0 0 30px rgba(232,144,32,1))   drop-shadow(0 0 80px rgba(255,201,64,0.6))  drop-shadow(0 40px 70px rgba(160,56,27,0.4)); }
  30%  { transform: translateY(-8px)  scale(1.01) rotateY(-2deg);
         filter: drop-shadow(0 0 20px rgba(232,144,32,0.8)) drop-shadow(0 0 60px rgba(255,201,64,0.4))  drop-shadow(0 35px 65px rgba(160,56,27,0.35)); }
  50%  { transform: translateY(-18px) scale(1.03) rotateY(0deg);
         filter: drop-shadow(0 0 40px rgba(255,220,80,1))   drop-shadow(0 0 100px rgba(255,180,0,0.7))  drop-shadow(0 50px 80px rgba(200,80,0,0.5)); }
  65%  { transform: translateY(-10px) scale(1.02) rotateY(2deg);
         filter: drop-shadow(0 0 25px rgba(232,144,32,0.9)) drop-shadow(0 0 70px rgba(255,201,64,0.5))  drop-shadow(0 40px 70px rgba(160,56,27,0.4)); }
  80%  { transform: translateY(-4px)  scale(1.01) rotateY(-3deg);
         filter: drop-shadow(0 0 18px rgba(232,144,32,0.7)) drop-shadow(0 0 50px rgba(255,201,64,0.35)) drop-shadow(0 30px 60px rgba(160,56,27,0.3)); }
  100% { transform: translateY(0px)   scale(1)    rotateY(0deg);
         filter: drop-shadow(0 0 18px rgba(232,144,32,0.7)) drop-shadow(0 0 50px rgba(255,201,64,0.35)) drop-shadow(0 30px 60px rgba(160,56,27,0.3)); }
}

/* Scanning light line that sweeps across the logo */
.brand-showcase .bs-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 440px;
  height: 440px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    rgba(255,220,80,0.12) 50%,
    transparent 60%,
    transparent 100%
  );
  animation: logo-scan 4s ease-in-out infinite;
}
@keyframes logo-scan {
  0%   { background-position: 0 -440px; transform: translateX(-50%) translateY(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(-50%) translateY(100%); opacity: 0; }
}

/* Orbit ring around logo */
.bs-logo-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}
.bs-logo-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 110%; height: 110%;
  transform: translate(-50%, -50%) rotateX(70deg);
  border-radius: 50%;
  border: 1.5px solid rgba(232,144,32,0.35);
  animation: ring-orbit 6s linear infinite;
  pointer-events: none;
}
.bs-logo-ring::after {
  content: '';
  position: absolute;
  top: -4px; left: 30%;
  width: 8px; height: 8px;
  background: rgba(255,220,80,0.9);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,200,0,1);
}
@keyframes ring-orbit {
  from { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); }
  to   { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); }
}
.brand-showcase .bs-tagline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.brand-showcase .bs-sub {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* Effet de rayons solaires en arrière-plan */
.brand-rays {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}
.brand-rays::before,
.brand-rays::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 0deg,
      transparent 0deg,
      rgba(232,144,32,0.25) 10deg,
      transparent 20deg,
      transparent 40deg,
      rgba(255,201,64,0.18) 50deg,
      transparent 60deg,
      transparent 90deg,
      rgba(232,144,32,0.2) 100deg,
      transparent 110deg);
  border-radius: 50%;
  mask: radial-gradient(circle, transparent 18%, black 30%, black 70%, transparent 85%);
  -webkit-mask: radial-gradient(circle, transparent 18%, black 30%, black 70%, transparent 85%);
  animation: rays-spin 30s linear infinite;
}
.brand-rays::after {
  animation-duration: 50s;
  animation-direction: reverse;
  opacity: 0.6;
}
@keyframes rays-spin {
  to { transform: rotate(360deg); }
}

/* ── MEDIA — Hero banner ── */
.media-hero {
  position: relative;
  width: 100%;
  height: 420px;
  margin-bottom: 3rem;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
}
.media-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.media-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,8,0.1) 0%, rgba(6,6,8,0.85) 100%);
  pointer-events: none;
}
.media-hero .mh-caption {
  position: absolute;
  left: 2rem; bottom: 1.6rem;
  color: var(--text);
  z-index: 2;
}
.media-hero .mh-caption .tag { margin-bottom: 0.3rem; }
.media-hero .mh-caption h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

/* ── MEDIA — Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  transition: transform 0.4s, box-shadow 0.4s;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,6,8,0.6) 100%);
  pointer-events: none;
}
.gallery-item .gi-label {
  position: absolute;
  left: 1rem; bottom: 0.9rem;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
}

/* ── MEDIA — Video ── */
.video-wrap {
  position: relative;
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.video-wrap .video-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  padding: 0.35rem 0.8rem;
  background: rgba(6,6,8,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  pointer-events: none;
}

/* ── UTILITIES ── */
.container { max-width: 1280px; margin: 0 auto; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav.main-nav { padding: 1rem 1.5rem; gap: 0; }
  .nav-links { display: none; }
  .burger { display: block; }
  section { padding: 5rem 1.5rem; }
  .hero { padding: 8rem 1.5rem 4rem; }
  .hero-grid { display: none; }
  .page-hero { padding: 10rem 1.5rem 4rem; }
  .about, .contact-section, .service-detail {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .media-hero { height: 320px; }
  .media-hero .mh-caption { left: 1.2rem; bottom: 1.2rem; }
  .media-hero .mh-caption h3 { font-size: 1.15rem; }
  .f-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  footer.main-footer { padding: 3rem 1.5rem 1.5rem; }
}
@media (max-width: 600px) {
  .nav-logo span { font-size: 1.15rem; }
  .nav-logo img { height: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .media-hero { height: 260px; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--glass-border); }
  .stat-item:last-child { border-bottom: none; }
  .f-top { grid-template-columns: 1fr; }
  .f-bottom { flex-direction: column; text-align: center; }
}

/* Mobile (<768px) — hero grid below text, tactile pills */
@media (max-width: 767px) {
  .hero { padding-bottom: 2rem; }
  .hero-grid {
    display: grid;
    position: static;
    transform: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.9s 1s forwards;
  }
  .hero-pill {
    padding: 1rem 1.2rem;
    font-size: 0.75rem;
  }
}

/* ── BLOG / ACTUALITÉS ── */
.blog-section {
  padding: 4rem 3rem;
  position: relative;
  z-index: 1;
}
.blog-section-alt {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.blog-article {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-article-reverse {
  grid-template-columns: 1.3fr 1fr;
}
.blog-article-reverse .blog-img {
  order: 2;
}
.blog-article-reverse .blog-content {
  order: 1;
}
.blog-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(232,144,32,0.08), rgba(160,56,27,0.04));
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.blog-img:hover img {
  transform: scale(1.04);
}
.blog-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.5;
  filter: grayscale(0.3);
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.blog-date {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-date::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
.blog-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
.blog-excerpt {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  opacity: 0.92;
}
.blog-body {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 0.3rem;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 0.7rem 1.4rem;
  width: fit-content;
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s, gap 0.3s, box-shadow 0.3s;
}
.blog-read-more:hover {
  background: var(--gold-glow);
  border-color: rgba(232,144,32,0.4);
  gap: 0.7rem;
  box-shadow: 0 0 24px rgba(232,144,32,0.15);
}

@media (max-width: 900px) {
  .blog-article,
  .blog-article-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-article-reverse .blog-img {
    order: -1;
  }
  .blog-article-reverse .blog-content {
    order: 1;
  }
  .blog-section {
    padding: 2.5rem 1.5rem;
  }
}
