/* style.css — Géo-Numérologie Demo — Argentis — Brief v2 */

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

:root {
  --fond: #F4F0E8;
  --fond-card: #FFFFFF;
  --fond-hover: #EDE8DE;
  --fond-light: #F5F0E8;

  --accent: #A87830;
  --accent-hover: #C49040;
  --accent-pale: rgba(168, 120, 48, 0.1);

  --violet: #5C2E96;
  --violet-hover: #7040B8;
  --violet-pale: rgba(92, 46, 150, 0.1);

  --texte: #1A1020;
  --texte-dim: #6A5F50;
  --texte-dark: #1A1020;
  --border: rgba(0, 0, 0, 0.1);
  --border-violet: rgba(92, 46, 150, 0.18);

  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--fond);
  color: var(--texte);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 400;
}

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

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NAVBAR ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 2rem;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(244,240,232,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.85rem 2rem;
  border-bottom-color: var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600;
  letter-spacing: 0.03em;
}
.nav-logo img { width: 38px; height: 38px; border-radius: 6px; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-link {
  padding: 0.5rem 0.8rem;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--texte-dim);
  border-radius: 6px;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-cta {
  padding: 0.55rem 1.3rem;
  background: linear-gradient(135deg, var(--accent), #a8843a);
  color: var(--texte-dark);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
#menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.4rem; flex-direction: column; gap: 5px;
}
#menu-btn span { display: block; width: 24px; height: 1.5px; background: var(--texte); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
#menu-btn.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#menu-btn.active span:nth-child(2) { opacity: 0; }
#menu-btn.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
#mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(244,240,232,0.97);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 2rem;
}
#mobile-menu.open { display: flex; }
.mobile-link { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 400; color: var(--texte-dim); transition: color 0.2s; }
.mobile-link:hover { color: var(--accent); }

/* ─── BUTTONS ─── */
.btn-primary {
  position: relative; overflow: hidden; display: inline-block;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--accent), #a8843a);
  color: var(--texte-dark);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: 50px;
  cursor: pointer; transition: transform 0.2s, opacity 0.2s;
}
.btn-primary::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg); transition: left 0.55s ease; pointer-events: none;
}
.btn-primary:hover { transform: translateY(-3px); opacity: 1; box-shadow: 0 10px 40px rgba(168,120,48,0.42), 0 3px 12px rgba(168,120,48,0.2); }
.btn-primary:hover::after { left: 160%; }
.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--texte);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-on-light {
  border-color: rgba(26,22,40,0.2); color: var(--texte-dark);
}
.btn-on-light:hover { border-color: var(--violet); color: var(--violet); }

/* ─── SECTIONS ─── */
section { padding: 6rem 2rem; position: relative; }
.container { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }
.section-light { background: var(--fond-light); color: var(--texte-dark); }
.section-light .texte-dim, .section-light p { color: #6b5f4f; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.section-tag::before { content: ''; display: block; width: 26px; height: 1px; background: var(--accent); }
.section-tag.tag-violet { color: var(--violet-hover); }
.section-tag.tag-violet::before { background: var(--violet-hover); }
.section-title { font-size: clamp(2rem, 4.3vw, 3.1rem); font-weight: 300; margin-bottom: 1.2rem; }
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 20%, var(--violet-hover) 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title em.violet {
  background: linear-gradient(135deg, var(--violet) 20%, #8B60C8 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc { font-size: 1rem; color: var(--texte-dim); max-width: 600px; line-height: 1.85; }

/* ─── PAGE HEADER (pages secondaires) ─── */
.page-header {
  padding: 10rem 2rem 6rem; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 110% 80% at 50% 0%, rgba(92,46,150,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 90% 90%, rgba(168,120,48,0.1) 0%, transparent 60%),
    var(--fond);
}
.page-header::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='116'%3E%3Cpolygon points='50,3 97,28 97,78 50,103 3,78 3,28' fill='none' stroke='%235C2E96' stroke-width='0.45'/%3E%3C/svg%3E");
  opacity: 0.05;
}
.page-header::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, var(--fond) 100%); z-index: 0; }
.page-header-content { position: relative; z-index: 1; }
.page-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-pale); border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
}
.page-header h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.6rem); font-weight: 300;
  background: linear-gradient(135deg, var(--texte) 15%, var(--accent) 55%, var(--violet-hover) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1.2rem;
}
.page-header-desc { font-size: 1.05rem; color: var(--texte-dim); max-width: 600px; margin: 0 auto; font-weight: 300; }

/* ─── SVG GEOMETRIE SACREE DECORATIVE ─── */
.geo-deco { position: absolute; pointer-events: none; opacity: 0.5; z-index: 0; }
.geo-deco svg { width: 100%; height: 100%; }
.geo-spin-slow { animation: geo-rotate 70s linear infinite; }
.geo-spin-rev { animation: geo-rotate-rev 90s linear infinite; }
@keyframes geo-rotate { to { transform: rotate(360deg); } }
@keyframes geo-rotate-rev { to { transform: rotate(-360deg); } }
@media (prefers-reduced-motion: reduce) { .geo-spin-slow, .geo-spin-rev { animation: none; } }

/* ─── CARDS GENERIQUES ─── */
.card {
  background: var(--fond-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 24px 60px rgba(168,120,48,0.2), 0 8px 24px rgba(168,120,48,0.1); }
.card.card-violet:hover { border-color: var(--violet); transform: translateY(-5px); box-shadow: 0 24px 60px rgba(92,46,150,0.18), 0 8px 24px rgba(92,46,150,0.1); }
.card-icon {
  width: 52px; height: 52px;
  background: var(--accent-pale); border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem; font-size: 1.4rem;
}
.card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.6rem; }
.card p { font-size: 0.88rem; color: var(--texte-dim); line-height: 1.75; }

/* ─── STATS ─── */
.stats { background: var(--fond-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; background: linear-gradient(135deg, var(--accent), var(--accent-hover)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--texte-dim); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 0.5rem; }

/* ─── TEMOIGNAGES ─── */
.testi-section { background: var(--fond-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testi-item { min-width: 100%; padding: 1rem; display: flex; justify-content: center; }
.testi-card {
  max-width: 740px; width: 100%;
  background: var(--fond-hover); border: 1px solid var(--border-violet);
  border-radius: var(--radius); padding: 3rem; text-align: center; position: relative;
}
.testi-quote { position: absolute; top: 1.4rem; left: 2rem; font-family: 'Cormorant Garamond', serif; font-size: 6rem; line-height: 0; color: var(--accent); opacity: 0.2; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2.4vw, 1.45rem); font-style: italic; font-weight: 300; margin-bottom: 2rem; line-height: 1.6; }
.testi-author { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.testi-name { font-size: 0.86rem; font-weight: 700; letter-spacing: 0.05em; color: var(--accent); }
.testi-role { font-size: 0.76rem; color: var(--texte-dim); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-top: 2rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--texte-dim); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.testi-dot.active { background: var(--accent); transform: scale(1.4); }
.testi-btn { background: none; border: 1px solid var(--border); border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--texte-dim); transition: border-color 0.2s, color 0.2s; }
.testi-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ─── FORM ─── */
.form-container { max-width: 680px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--texte-dim); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--fond-hover); border: 1px solid var(--border); border-radius: 8px;
  padding: 0.85rem 1rem; color: var(--texte); font-family: 'Instrument Sans', sans-serif; font-size: 0.92rem;
  outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #FFFFFF; color: var(--texte); }
.form-submit { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; margin-top: 0.5rem; }
.form-submit button[type=submit] {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--accent), #a8843a); color: var(--texte-dark);
  font-family: 'Instrument Sans', sans-serif; font-size: 0.92rem; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: none; border-radius: 50px; cursor: pointer; transition: transform 0.2s, opacity 0.2s;
}
.form-submit button[type=submit]:hover { transform: translateY(-2px); opacity: 0.92; }
.form-submit button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.74rem; color: var(--texte-dim); text-align: center; }
.trust-badges { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.trust-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.76rem; color: var(--texte-dim); }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.4rem 1.8rem; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; font-weight: 600;
  color: var(--texte); transition: background 0.2s;
}
.faq-question:hover { background: rgba(201,168,76,0.04); }
.faq-question::after { content: '+'; color: var(--accent); font-size: 1.4rem; font-weight: 300; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer-inner { padding: 0 1.8rem 1.4rem; font-size: 0.89rem; color: var(--texte-dim); line-height: 1.8; }

/* ─── CTA BAND ─── */
.cta-band {
  background: #12082A;
  border-top: none; border-bottom: none;
  padding: 7rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,2 78,22 78,62 40,82 2,62 2,22' fill='none' stroke='%23C9A84C' stroke-width='0.45'/%3E%3C/svg%3E");
  opacity: 0.14;
}
.cta-band::after {
  content: ''; position: absolute; pointer-events: none;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 480px;
  background: radial-gradient(ellipse, rgba(107,63,160,0.42) 0%, transparent 70%);
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 300; margin-bottom: 1rem; color: #F0EBE0; position: relative; z-index: 1; }
.cta-band h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #C9A84C, #E8C97A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-band p { font-size: 1rem; color: rgba(240,235,224,0.65); max-width: 540px; margin: 0 auto 2.5rem; position: relative; z-index: 1; }
.cta-band .btn-primary { position: relative; z-index: 1; box-shadow: 0 8px 40px rgba(201,168,76,0.4), 0 2px 12px rgba(201,168,76,0.2); }
.cta-band .btn-primary:hover { box-shadow: 0 16px 60px rgba(201,168,76,0.55), 0 4px 20px rgba(201,168,76,0.3); transform: translateY(-3px); opacity: 1; }

/* ─── FOOTER ─── */
footer { background: var(--fond-card); border-top: 1px solid var(--border); padding: 3.5rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1140px; margin: 0 auto 3rem; }
.footer-brand p { font-size: 0.87rem; color: var(--texte-dim); margin-top: 0.8rem; line-height: 1.7; max-width: 270px; }
.footer-col h4 { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-family: 'Instrument Sans', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col li a { font-size: 0.85rem; color: var(--texte-dim); transition: color 0.2s; }
.footer-col li a:hover { color: var(--texte); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-link {
  width: 36px; height: 36px; background: var(--fond-hover); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.74rem; color: var(--texte-dim); transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.77rem; color: var(--texte-dim);
}
.footer-bottom a { color: var(--texte-dim); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ─── VIDEO HERO (hook scroll-driven) ─── */
.video-hero { position: relative; height: 500vh; background: var(--fond); padding: 0; }
.video-hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#video-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.video-hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(13,11,20,0.05) 0%, rgba(13,11,20,0.55) 75%),
    linear-gradient(180deg, rgba(13,11,20,0.45) 0%, rgba(13,11,20,0.22) 30%, rgba(13,11,20,0.55) 70%, rgba(13,11,20,0.92) 100%);
}
.vh-beat {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 2rem;
  opacity: 0; pointer-events: none;
}
/* Le hook vidéo affiche du texte sur des frames vidéo sombres : couleurs fixes, indépendantes du thème de page */
.vh-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: #C9A84C; margin-bottom: 1.4rem;
}
.vh-h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 300; color: #F0EBE0; max-width: 900px; }
.vh-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: #C7BEAF; max-width: 600px; margin: 1.2rem auto 0; font-weight: 300; }
.vh-h2 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem); font-weight: 400; color: #F0EBE0;
  max-width: 760px;
}
.vh-h2 strong { font-style: normal; color: #C9A84C; font-weight: 600; }
.vh-beat-cta.vh-beat-active { pointer-events: auto; }
.vh-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.vh-ctas .btn-secondary { color: #F0EBE0; border-color: rgba(240,235,224,0.3); }
.vh-ctas .btn-secondary:hover { border-color: #C9A84C; color: #C9A84C; }
.vh-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; z-index: 3; background: rgba(240,235,224,0.15); }
.vh-progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, #8257bd, #C9A84C); }
.vh-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: #C7BEAF; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: opacity 0.3s; animation: vh-bounce 2s ease-in-out infinite;
}
@keyframes vh-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.vh-scroll-hint svg { width: 18px; opacity: 0.5; }
@media (prefers-reduced-motion: reduce) { .vh-scroll-hint { animation: none; } }

/* fallback statique (prefers-reduced-motion) */
.video-hero.static-hero { height: 100vh; }
.video-hero.static-hero .video-hero-sticky {
  position: relative; height: auto; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem; padding: 8rem 2rem;
}
.video-hero.static-hero .vh-beat { position: relative; opacity: 1 !important; display: flex; pointer-events: auto; }
.video-hero.static-hero .vh-scroll-hint, .video-hero.static-hero .vh-progress { display: none; }

@media (max-width: 768px) {
  .video-hero { height: 400vh; }
  .vh-ctas { flex-direction: column; width: 100%; max-width: 320px; }
  .vh-ctas .btn-primary, .vh-ctas .btn-secondary { width: 100%; text-align: center; }
}

/* ─── RESPONSIVE COMMUN ─── */
@media (max-width: 1100px) {
  .nav-links, .nav-cta { display: none; }
  #menu-btn { display: flex; }
}
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  section { padding: 4rem 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  #menu-btn { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .trust-badges { gap: 1rem; }
}

/* ─── DROPDOWN NAV ─── */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 0.8rem); left: 50%; transform: translateX(-50%);
  min-width: 210px; background: var(--fond-card); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.6rem 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--texte-dim); transition: color 0.2s, background 0.2s;
}
.nav-dropdown a:hover { color: var(--accent); background: rgba(201,168,76,0.06); }
.nav-arrow { font-size: 0.6rem; margin-left: 3px; opacity: 0.6; }

/* ─── THEME TOGGLE ─── */
#theme-toggle {
  background: none; border: 1px solid var(--border); border-radius: 50%;
  width: 34px; height: 34px; cursor: pointer; color: var(--texte-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
#theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ─── DARK THEME (optionnel, via toggle) ─── */
[data-theme="dark"] {
  --fond: #0D0B14;
  --fond-card: #13101E;
  --fond-hover: #1A1628;
  --accent: #C9A84C;
  --accent-hover: #E0BF6A;
  --accent-pale: rgba(201,168,76,0.12);
  --violet: #6B3FA0;
  --violet-hover: #8257bd;
  --violet-pale: rgba(107,63,160,0.15);
  --texte: #F0EBE0;
  --texte-dim: #8A7E6E;
  --texte-dark: #1A1628;
  --border: rgba(201,168,76,0.15);
  --border-violet: rgba(107,63,160,0.22);
}
[data-theme="dark"] body { background: var(--fond); }
[data-theme="dark"] #nav.scrolled {
  background: rgba(13,11,20,0.92);
  border-bottom-color: var(--border);
}
[data-theme="dark"] #mobile-menu { background: rgba(13,11,20,0.97); }
[data-theme="dark"] .mobile-link { color: var(--texte-dim); }
[data-theme="dark"] .nav-dropdown { background: rgba(19,16,30,0.98); }
[data-theme="dark"] .page-header {
  background: radial-gradient(ellipse 70% 60% at 50% 25%, rgba(107,63,160,0.15) 0%, transparent 70%);
}
[data-theme="dark"] .page-header::after { background: linear-gradient(180deg, transparent 55%, var(--fond) 100%); }
[data-theme="dark"] .page-header h1 {
  background: linear-gradient(135deg, var(--texte) 30%, var(--accent) 85%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: var(--fond-hover); border-color: var(--border); color: var(--texte);
}
[data-theme="dark"] .form-group select option { background: #1A1628; color: #F0EBE0; }
[data-theme="dark"] .testi-card { background: var(--fond-hover); }
[data-theme="dark"] .video-hero { background: var(--fond); }
[data-theme="dark"] .video-hero-overlay {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(13,11,20,0.05) 0%, rgba(13,11,20,0.55) 75%),
    linear-gradient(180deg, rgba(13,11,20,0.45) 0%, rgba(13,11,20,0.22) 30%, rgba(13,11,20,0.55) 70%, rgba(13,11,20,0.92) 100%);
}
[data-theme="dark"] #mobile-menu .mobile-link { color: var(--texte-dim); }
[data-theme="dark"] #menu-btn span { background: var(--texte); }
[data-theme="dark"] .faq-question { color: var(--texte); }
[data-theme="dark"] .section-light { background: var(--fond-light); color: #1A1628; }
[data-theme="dark"] .stats { background: var(--fond-card); }
[data-theme="dark"] .testi-section { background: var(--fond-card); }
[data-theme="dark"] footer { background: var(--fond-card); }

/* ─── SECTION DARK ─── */
.section-dark {
  background: #12082A !important;
  color: #F0EBE0;
  border-color: rgba(201,168,76,0.18) !important;
}
.section-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,2 78,22 78,62 40,82 2,62 2,22' fill='none' stroke='%23C9A84C' stroke-width='0.45'/%3E%3C/svg%3E");
  opacity: 0.06;
}
.section-dark > .container, .section-dark .container { position: relative; z-index: 1; }
.section-dark .section-tag { color: #C9A84C; }
.section-dark .section-tag::before { background: #C9A84C; }
.section-dark .section-title { color: #F0EBE0; }
.section-dark .section-title em {
  background: linear-gradient(135deg, #C9A84C 20%, #E0BF6A 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-dark .section-desc { color: rgba(240,235,224,0.65); }
.section-dark p { color: rgba(240,235,224,0.72); }
.section-dark h2 { color: #F0EBE0; }
.section-dark h3 { color: #F0EBE0; }
.section-dark h4 { color: rgba(240,235,224,0.88); }
.section-dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,168,76,0.2);
  color: #F0EBE0;
}
.section-dark .card h3 { color: #F0EBE0; }
.section-dark .card p { color: rgba(240,235,224,0.65); }
.section-dark .card:hover {
  border-color: rgba(201,168,76,0.62);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 24px 60px rgba(201,168,76,0.22), 0 8px 24px rgba(107,63,160,0.14);
  transform: translateY(-5px);
}
.section-dark .card.card-violet { border-color: rgba(107,63,160,0.3); }
.section-dark .card.card-violet:hover {
  border-color: rgba(107,63,160,0.68);
  box-shadow: 0 24px 60px rgba(107,63,160,0.28), 0 8px 24px rgba(201,168,76,0.1);
}
.section-dark .card-icon { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.22); color: #C9A84C; }
.section-dark .card.card-violet .card-icon { background: rgba(107,63,160,0.15); border-color: rgba(107,63,160,0.28); }
.section-dark .stat-num {
  background: linear-gradient(135deg, #C9A84C, #E0BF6A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-dark .stat-label { color: rgba(240,235,224,0.48); }
.section-dark .btn-secondary { color: rgba(240,235,224,0.85); border-color: rgba(240,235,224,0.25); }
.section-dark .btn-secondary:hover { border-color: #C9A84C; color: #C9A84C; }
.section-dark .chemin-dot { background: rgba(255,255,255,0.06); border-color: #C9A84C; color: #C9A84C; }
.section-dark .chemin-steps::before { background: linear-gradient(180deg, transparent, rgba(201,168,76,0.3) 10%, rgba(201,168,76,0.3) 90%, transparent); }
.section-dark .chemin-item h3 { color: #F0EBE0; }
.section-dark .chemin-item p { color: rgba(240,235,224,0.65); }
.section-dark .matrix-cell { background: rgba(255,255,255,0.04); border-color: rgba(201,168,76,0.2); }
.section-dark .matrix-cell:hover { border-color: rgba(201,168,76,0.55); }
.section-dark .matrix-cell.violet { border-color: rgba(107,63,160,0.3); }
.section-dark .matrix-label { color: rgba(240,235,224,0.5); }
.section-dark .matrix-world { color: #C9A84C; }
.section-dark .artisanat-band { background: rgba(255,255,255,0.04); border-color: rgba(107,63,160,0.3); }
.section-dark .inclus-item { background: rgba(255,255,255,0.04); border-color: rgba(201,168,76,0.2); }
.section-dark .inclus-item h4 { color: #F0EBE0; }
.section-dark .process-mini-num { color: #C9A84C; }
.section-dark .symb5-card { background: rgba(255,255,255,0.045); border-color: rgba(201,168,76,0.22); }
.section-dark .symb5-card:hover { border-color: rgba(201,168,76,0.6); transform: translateY(-3px); }
.section-dark .symb5-glyph { color: #C9A84C; }
.section-dark .symb5-card p { color: rgba(240,235,224,0.65); }

/* Dark mode overrides for new visual elements */
[data-theme="dark"] .page-header {
  background:
    radial-gradient(ellipse 110% 80% at 50% 0%, rgba(107,63,160,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 90% 90%, rgba(201,168,76,0.08) 0%, transparent 60%),
    var(--fond);
}
[data-theme="dark"] .page-header::before { opacity: 0.07; }
[data-theme="dark"] .cta-band { background: #08041A; }
[data-theme="dark"] .section-dark { background: #0F0720 !important; }

/* ─── TABLE & GRID UTILS ─── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.data-table th { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); font-weight: 700; font-family: 'Instrument Sans', sans-serif; }
.data-table td { color: var(--texte-dim); }
.data-table tr:last-child td { border-bottom: none; }

/* ─── NUMBER GRID (29 nombres) ─── */
.nombres-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.nombre-card {
  background: var(--fond-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.2rem; transition: border-color 0.2s, transform 0.2s;
  display: flex; align-items: flex-start; gap: 1rem;
}
.nombre-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.nombre-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600;
  color: var(--accent); line-height: 1; flex-shrink: 0; min-width: 2.2rem;
}
.nombre-card h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.nombre-card p { font-size: 0.78rem; color: var(--texte-dim); }

/* ─── SYMBOLE GRID (29 symboles) ─── */
.symboles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.symbole-card {
  background: var(--fond-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1rem; text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.symbole-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.symbole-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--texte-dim); margin-bottom: 0.4rem; }
.symbole-svg { width: 54px; height: 54px; margin: 0 auto 0.8rem; }
.symbole-svg svg { width: 100%; height: 100%; }
.symbole-card h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.symbole-archet { font-size: 0.74rem; color: var(--accent); font-style: italic; }

/* ─── CONCEPTS GRID (27 concepts) ─── */
.concepts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.concept-card {
  background: var(--fond-card); border: 1px solid var(--border); border-radius: 8px;
  padding: 1.2rem; transition: border-color 0.2s;
}
.concept-card:hover { border-color: var(--accent); }
.concept-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: var(--texte-dim); margin-bottom: 0.3rem; }
.concept-card h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.concept-card p { font-size: 0.78rem; color: var(--texte-dim); line-height: 1.55; }

@media (max-width: 768px) {
  .concepts-grid { grid-template-columns: 1fr 1fr; }
  .symboles-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
