/*
 * ============================================================
 *  Zénith Solutions Financières inc. — styles.css
 * ============================================================
 *  Palette : #FFC400 (gold) · #060606 (black) · #1f1f1f (dark)
 *            #f7f1e8 (cream) · #ffffff (white)
 *  Display : Bebas Neue   |   Corps : Outfit
 * ============================================================
 */

/* ── Variables ── */
:root {
  --gold:      #ffc400;
  --gold-2:    #ffdd57;
  --gold-dim:  #d9a300;
  --black:     #060606;
  --black-2:   #121212;
  --dark:      #1f1f1f;
  --graphite:  #2e2e2e;
  --cream:     #f7f1e8;
  --white:     #ffffff;
  --muted:     #7b7b7b;
  --font-d:    'Bebas Neue', sans-serif;
  --font-b:    'Outfit', sans-serif;
  --max:       1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
@media (max-width: 900px) { body { cursor: auto; } }

/* ── Curseur ── */
.cursor {
  position: fixed; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
  opacity: .85;
}
.cursor.big { width: 34px; height: 34px; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  background: rgba(6,6,6,.88);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid rgba(255,196,0,.25);
}
.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  gap: 3px;
  text-decoration: none;
  transition: opacity .2s;
}
.brand:hover { opacity: .82; }
.brand-name {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: .18em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
/* Accent doré sur la première lettre */
.brand-name::first-letter { color: var(--gold); }
.brand-sub {
  font-family: var(--font-b);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding-left: 0;
}
.nav-links {
  display: flex; gap: 28px; list-style: none;
  font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.nav-links a { transition: color .15s; position: relative; color: rgba(255,255,255,.65); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Groupe droite : CTA + hamburger */
.nav-right {
  display: flex; align-items: center; gap: 14px;
}

.nav-cta {
  font-family: var(--font-d); font-size: 15px; letter-spacing: .1em;
  color: var(--black); background: var(--gold);
  padding: 11px 26px;
  clip-path: polygon(8% 0,100% 0,92% 100%,0 100%);
  transition: background .2s, transform .15s;
  cursor: none; font-weight: 800;
}
.nav-cta:hover { background: var(--gold-2); transform: translateY(-2px); }

/* ── Bouton hamburger ── */
.nav-hamburger {
  display: none;                         /* Caché sur desktop */
  flex-direction: column; justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid rgba(255,196,0,.35);
  padding: 7px 8px;
  cursor: pointer;
  transition: border-color .2s;
}
.nav-hamburger:hover { border-color: var(--gold); }
.nav-hamburger span {
  display: block; height: 2px;
  background: var(--gold);
  transition: transform .25s, opacity .2s;
}
/* Animation X quand ouvert */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100svh;
  position: relative; overflow: hidden;
  padding: 150px 6vw 90px;
  display: grid;
  grid-template-columns: minmax(320px,640px) 1fr;
  gap: 7vw; align-items: center;
  isolation: isolate;
}
/* Fond grain + radial doré */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -5;
  background:
    radial-gradient(circle at 72% 50%, rgba(255,196,0,.1), transparent 32%),
    linear-gradient(90deg, #040404 0%, #0c0c0c 50%, #020202 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  opacity: .15; mix-blend-mode: screen;
}

/* ── Chevrons CSS ── */
.chevrons {
  position: absolute;
  left: -16vw; top: -14vh;
  width: 62vw; height: 126vh;
  z-index: -2;
  transform: skewX(-4deg);
  pointer-events: none;
}
.chev {
  position: absolute;
  width: 56vw; height: 56vw;
  transform: rotate(45deg);
  border-style: solid;
}
.chev.y1 {
  left: -19vw; top: 3vh;
  border-width: 90px 90px 0 0;
  border-color: var(--gold);
  filter: drop-shadow(0 0 32px rgba(255,196,0,.2));
}
.chev.b1 {
  left: -13vw; top: 3vh;
  border-width: 66px 66px 0 0;
  border-color: #000;
}
.chev.y2 {
  left: -7vw; top: 3vh;
  border-width: 90px 90px 0 0;
  border-color: var(--gold);
  opacity: .92;
  filter: drop-shadow(0 0 24px rgba(255,196,0,.15));
}
.chev.l1 {
  left: 0; top: 3vh;
  border-width: 2px 2px 0 0;
  border-color: rgba(255,196,0,.6);
}
.chev.l2 {
  left: 4vw; top: 3vh;
  border-width: 2px 2px 0 0;
  border-color: rgba(255,255,255,.18);
}
.chev.l3 {
  left: 8vw; top: 3vh;
  border-width: 1px 1px 0 0;
  border-color: rgba(255,196,0,.28);
}

/* ── Formes géo flottantes ── */
.hero-diamond {
  position: absolute; z-index: -1; pointer-events: none;
  right: 7vw; top: 25%;
  width: 140px; height: 140px;
  border: 1px solid rgba(255,196,0,.24);
  transform: rotate(45deg);
  animation: rotateSlow 28s linear infinite;
}
.hero-diamond-2 {
  position: absolute; z-index: -1; pointer-events: none;
  left: 50%; bottom: 14%;
  width: 80px; height: 80px;
  background: rgba(255,196,0,.22);
  clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  animation: pulse 3s ease-in-out infinite;
}
.hero-tri {
  position: absolute; z-index: -1; pointer-events: none;
  left: 22%; bottom: 10%;
  width: 0; height: 0;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-bottom: 62px solid rgba(255,196,0,.14);
}

@keyframes rotateSlow { to { transform: rotate(405deg); } }
@keyframes pulse {
  0%,100% { opacity: .22; transform: scale(1); }
  50%      { opacity: .55; transform: scale(1.12); }
}

/* ── Contenu hero ── */
.hero-inner {
  max-width: var(--max); width: 100%;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px,640px) 1fr;
  gap: 7vw; align-items: center;
}
.hero-copy {
  position: relative;
  /* ── Tuile translucide ── */
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 4px solid var(--gold);
  border-bottom: 1px solid rgba(255,196,0,.18);
  border-top: 1px solid rgba(255,196,0,.08);
  padding: 52px 52px 56px;
  /* Coin coupé style Zénith */
  clip-path: polygon(0 0, 100% 0, 100% 92%, 97% 100%, 0 100%);
  /* Halo doré très subtil */
  box-shadow:
    inset 0 0 80px rgba(0,0,0,.3),
    0 24px 64px rgba(0,0,0,.55),
    -4px 0 0 var(--gold);
}
/* Ligne décorative fine en haut à droite */
.hero-copy::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 2px;
  background: linear-gradient(to left, transparent, rgba(255,196,0,.45));
  pointer-events: none;
}
/* Losange déco coin bas-droit */
.hero-copy::after {
  content: '';
  position: absolute;
  bottom: 18px; right: 20px;
  width: 10px; height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  opacity: .7;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 38px; height: 2px; background: var(--gold); }
.hero-copy h1 {
  font-family: var(--font-d);
  font-size: clamp(56px, 7.5vw, 112px);
  line-height: .92;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.hero-copy h1 .yellow { color: var(--gold); }
.hero-copy h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}
.hero-lead {
  margin-top: 24px; max-width: 520px;
  color: rgba(255,255,255,.88);
  font-size: 16px; line-height: 1.75;
  border-left: 3px solid rgba(255,196,0,.6);
  padding-left: 16px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ── Boutons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 28px;
  font-family: var(--font-d); font-size: 16px; letter-spacing: .12em;
  text-transform: uppercase;
  clip-path: polygon(8% 0,100% 0,92% 100%,0 100%);
  transition: transform .18s, box-shadow .18s, background .18s;
  cursor: none;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--gold); color: var(--black); font-weight: 800; box-shadow: 0 16px 44px rgba(255,196,0,.25); }
.btn-primary:hover { background: var(--gold-2); box-shadow: 0 22px 55px rgba(255,196,0,.38); }
.btn-ghost { border: 1px solid rgba(255,255,255,.32); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--submit { min-height: 54px; font-size: 18px; margin-top: 6px; cursor: none; }

/* ── Carte hero ── */
/* ── Image décorative hero (droite) ── */
.hero-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  /* Coin coupé style Zénith */
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  /* Bordure dorée */
  box-shadow: 6px 6px 0 var(--gold), 0 30px 80px rgba(0,0,0,.5);
}
.hero-visual-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05) brightness(.9);
  transition: transform .5s ease;
}
.hero-visual:hover .hero-visual-img { transform: scale(1.03); }
/* Calque doré diagonal par-dessus l'image */
.hero-visual-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,196,0,.14) 0%, transparent 45%),
    linear-gradient(to top, rgba(6,6,6,.55) 0%, transparent 50%);
}


/* ══════════════════════════════
   BANDE STATS
══════════════════════════════ */
.stats-band {
  display: grid; grid-template-columns: 1fr 0.38fr 1fr;
  height: 250px; overflow: hidden;
}
.stats-img { position: relative; overflow: hidden; background: var(--graphite); }
.stats-img img { width: 100%; height: 100%; object-fit: cover; }
.stats-img--left  { clip-path: polygon(0 0,100% 0,88% 100%,0 100%); }
.stats-img--right { clip-path: polygon(12% 0,100% 0,100% 100%,0 100%); }
.stats-gold {
  background: var(--gold);
  clip-path: polygon(6% 0,94% 0,86% 100%,14% 100%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 18px; z-index: 1;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: var(--font-d); font-size: 52px; color: var(--black); line-height: 1; }
.stat-lbl { font-size: 9px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: rgba(6,6,6,.62); text-align: center; line-height: 1.5; }
.stat-sep { width: 1px; height: 38px; background: rgba(6,6,6,.2); }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services {
  background: var(--black);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
/* Grand triangle doré */
.services::before {
  content: ''; position: absolute; z-index: 0;
  left: 10%; top: -3%; width: 44%; height: 65%;
  background: var(--gold);
  clip-path: polygon(15% 0%,85% 0%,50% 100%);
  opacity: .18; pointer-events: none;
}
/* Bandes croisées */
.services::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, transparent 0 37%, rgba(255,196,0,.08) 37% 50%, transparent 50%),
    linear-gradient(45deg, rgba(255,255,255,.03) 0 22%, transparent 22%);
  pointer-events: none;
}
.svc-geo-1 {
  position: absolute; z-index: 0; pointer-events: none;
  right: 0; top: 0; width: 38%; height: 52%;
  background: #080808;
  clip-path: polygon(30% 0%,100% 0%,100% 100%);
}
.svc-geo-2 {
  position: absolute; z-index: 0; pointer-events: none;
  left: 0; bottom: 0; width: 48%; height: 55%;
  background: #050505;
  clip-path: polygon(0 100%,100% 100%,0 0);
}
.svc-geo-diamond {
  position: absolute; z-index: 0; pointer-events: none;
  right: 4%; top: 38%;
  width: 66px; height: 66px;
  background: var(--gold);
  clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  opacity: .55; animation: pulse 3.5s ease-in-out infinite;
}
.svc-z {
  position: absolute; z-index: 0;
  font-family: var(--font-d); font-size: 560px; line-height: 1;
  right: -40px; bottom: -110px;
  color: rgba(255,196,0,.045); user-select: none; pointer-events: none;
}
.services .container { max-width: var(--max); margin: 0 auto; padding: 0 5%; position: relative; z-index: 2; }
.section-head { margin-bottom: 50px; }

/* Kicker */
.kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.kicker::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.kicker--dark { color: var(--gold-dim); }
.kicker--dark::before { background: var(--gold-dim); }

/* Titres de section */
.section-title {
  font-family: var(--font-d);
  font-size: clamp(48px,6.5vw,88px);
  line-height: .9; letter-spacing: .02em; text-transform: uppercase;
  color: var(--white);
}
.section-title--dark { color: var(--black); }
.outline-gold { color: transparent; -webkit-text-stroke: 2px var(--gold); }
.outline-dark  { color: transparent; -webkit-text-stroke: 2px var(--black); }
.game-changer  { color: var(--gold); text-shadow: 0 0 38px rgba(255,196,0,.5); }

.section-lead {
  margin-top: 18px; max-width: 700px;
  color: rgba(255,255,255,.55); font-size: 17px; line-height: 1.8;
}
.section-lead strong { color: rgba(255,255,255,.9); }

/* Grilles services */
.svc-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: rgba(255,255,255,.07);
  margin-bottom: 2px;
}
.svc-grid--3 { grid-template-columns: repeat(3,1fr); margin-bottom: 0; }

/* Cartes service */
.svc-card {
  min-height: 270px; padding: 32px;
  background: #1c1c1c;
  position: relative; overflow: hidden;
  transition: transform .2s ease, background .2s ease;
}
.svc-card:hover { transform: translateY(-8px); background: #0e0e0e; z-index: 3; }
.svc-card--dark { background: #111111; }
.svc-card--dark:hover { background: #070707; }
/* Filigrane numéro */
.svc-card::after {
  content: attr(data-num);
  position: absolute; right: 16px; bottom: -10px;
  font-family: var(--font-d); font-size: 108px; line-height: 1;
  color: rgba(255,196,0,.07); pointer-events: none;
}
/* Ligne latérale au hover */
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--gold);
  transition: height .3s;
}
.svc-card:hover::before { height: 100%; }
/* Icône losange */
.svc-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.svc-icon svg { width: 20px; height: 20px; stroke: var(--black); }
.svc-card h3 {
  font-family: var(--font-d); font-size: 24px; line-height: 1.05;
  letter-spacing: .04em; color: var(--white); margin-bottom: 10px;
}
.svc-card--dark h3 { color: var(--gold); }
.svc-card h3 { transition: color .2s; }
.svc-card:not(.svc-card--dark):hover h3 { color: var(--gold); }
.svc-card p { font-size: 13px; color: rgba(255,255,255,.52); line-height: 1.75; }

/* ══════════════════════════════
   À PROPOS
══════════════════════════════ */
.apropos {
  background: var(--cream);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.apropos-geo-gold {
  position: absolute; z-index: 0; pointer-events: none;
  top: 0; right: 0; width: 46vw; height: 100%;
  background: linear-gradient(135deg, rgba(255,196,0,.2), rgba(23,23,23,.04));
  clip-path: polygon(26% 0,100% 0,100% 100%,0 100%);
}
.apropos-geo-dark {
  position: absolute; z-index: 0; pointer-events: none;
  bottom: 0; left: 0; width: 55%; height: 50%;
  background: rgba(6,6,6,.05);
  clip-path: polygon(0 100%,100% 100%,0 0);
}
.apropos-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 70px; align-items: start; position: relative; z-index: 1;
}
.apropos-body { font-size: 15px; color: rgba(23,23,23,.7); line-height: 1.85; margin-top: 16px; }
.apropos-values { margin-top: 32px; border-top: 1px solid rgba(23,23,23,.1); }
.value-row {
  display: grid; grid-template-columns: 52px 1fr;
  gap: 14px; padding: 18px 0;
  border-bottom: 1px solid rgba(23,23,23,.1);
  align-items: start; transition: padding-left .2s;
}
.value-row:hover { padding-left: 8px; }
.value-num { font-family: var(--font-d); font-size: 32px; color: var(--gold-dim); line-height: 1; }
.value-row p { font-size: 14px; color: rgba(23,23,23,.68); line-height: 1.7; }
.value-row p strong { color: var(--black); }

/* Panneau visuel */
.visual-panel {
  min-height: 530px; position: relative;
  background: linear-gradient(135deg,#1a1a1a,#464646);
  clip-path: polygon(0 0,100% 0,100% 92%,90% 100%,0 100%);
  box-shadow: 0 28px 78px rgba(23,23,23,.18); overflow: hidden;
}
.visual-panel::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 0 41%, rgba(255,196,0,.88) 41% 57%, transparent 57%),
    linear-gradient(45deg, rgba(255,255,255,.07), transparent 50%);
}
.visual-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; height: 100%; }
.visual-photo { overflow: hidden; }
.visual-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(18%); transition: transform .4s; }
.visual-photo:hover img { transform: scale(1.05); }
.visual-caption {
  position: absolute; left: 26px; right: 26px; bottom: 26px;
  background: rgba(247,241,232,.94); padding: 26px; color: var(--black);
}
.visual-caption h3 { font-family: var(--font-d); font-size: clamp(18px, 2.6vw, 36px); line-height: .95; white-space: nowrap; }
.visual-caption p { margin-top: 8px; color: rgba(23,23,23,.65); font-size: 13px; line-height: 1.7; }

/* ══════════════════════════════
   BANDE PHOTO 2
══════════════════════════════ */
.band-2 { display: grid; grid-template-columns: 1fr 1fr; height: 210px; overflow: hidden; }
.band-2-img { position: relative; overflow: hidden; background: var(--graphite); }
.band-2-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.band-2-img:hover img { transform: scale(1.04); }
.band-2-img--left  { clip-path: polygon(0 0,100% 0,90% 100%,0 100%); }
.band-2-img--right { clip-path: polygon(10% 0,100% 0,100% 100%,0 100%); }
/* Tableau de bord (bande2-client) : on garde TOUJOURS le bord gauche
   visible. L'image est ancrée à gauche, donc seul le côté droit est rogné,
   et le zoom au survol part aussi de la gauche (pas du centre). */
.band-2-img--left img { object-position: left center; transform-origin: left center; }

/* ══════════════════════════════
   TÉMOIGNAGES
══════════════════════════════ */
.proof {
  background: var(--black-2);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.proof::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  left: 0; bottom: 0; width: 55%; height: 72%;
  background: #050505;
  clip-path: polygon(0 100%,100% 100%,0 0);
}
.proof::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  right: 0; top: 0; width: 46%; height: 58%;
  background: #181818;
  clip-path: polygon(24% 0,100% 0,100% 100%);
}
.proof-geo-1 {
  position: absolute; z-index: 0; pointer-events: none;
  top: -2%; left: 18%; width: 36%; height: 56%;
  background: var(--gold);
  clip-path: polygon(15% 0%,85% 0%,50% 100%);
  opacity: .14;
}
.proof-geo-diamond {
  position: absolute; z-index: 1; pointer-events: none;
  top: 44px; right: 72px;
  width: 90px; height: 90px;
  background: var(--gold);
  clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  opacity: .58; animation: pulse 3.2s ease-in-out infinite;
}
.proof-geo-2 {
  position: absolute; z-index: 1; pointer-events: none;
  bottom: 44px; left: 72px;
  width: 0; height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(255,196,0,.17);
}
.proof-geo-line {
  position: absolute; z-index: 1; pointer-events: none;
  top: 0; bottom: 0; left: 50%; width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255,196,0,.35) 25%, rgba(255,196,0,.35) 75%, transparent);
  transform: skewX(-5deg);
}
.proof .container { max-width: var(--max); margin: 0 auto; padding: 0 5%; position: relative; z-index: 2; }
.proof-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; margin-top: 52px;
  background: rgba(255,255,255,.04);
}
.quote {
  padding: 36px; min-height: 240px;
  background: rgba(255,255,255,.055);
  border-top: 3px solid rgba(255,196,0,.6);
  position: relative; overflow: hidden;
}
.quote--gold {
  background: var(--gold);
  border-top-color: var(--black);
}
.quote--black {
  background: #080808;
  border-top-color: var(--gold);
  border-left: 3px solid var(--gold);
}
.quote::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0; background: var(--gold);
  transition: width .4s;
}
.quote--gold::before { background: var(--black); }
.quote:hover::before { width: 100%; }
.quote-mark { font-family: var(--font-d); font-size: 88px; line-height: .7; color: rgba(255,196,0,.24); margin-bottom: 8px; }
.quote--gold .quote-mark { color: rgba(6,6,6,.18); }
.quote p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.7); font-style: italic; margin-bottom: 20px; }
.quote--gold p { color: rgba(6,6,6,.82); }
.quote strong { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.quote--gold strong { color: var(--black); }
.quote--black strong { color: var(--gold); }
.quote-role { font-size: 11px; color: rgba(255,196,0,.65); letter-spacing: .08em; margin-top: 3px; }
.quote--gold .quote-role { color: rgba(6,6,6,.55); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
  background: var(--cream);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.contact-geo {
  position: absolute; z-index: 0; pointer-events: none;
  top: 0; right: 0; width: 44vw; height: 100%;
  background: linear-gradient(135deg, rgba(255,196,0,.16), rgba(23,23,23,.03));
  clip-path: polygon(28% 0,100% 0,100% 100%,0 100%);
}
.contact-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 60px; position: relative; z-index: 1;
}
.contact-info .section-title--dark { margin-bottom: 12px; }
.contact-desc { font-size: 15px; color: rgba(23,23,23,.68); line-height: 1.8; margin-bottom: 30px; }
.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid rgba(23,23,23,.1);
  transition: padding-left .2s;
}
.contact-row:hover { padding-left: 8px; }
.contact-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: rgba(255,196,0,.15);
  clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 15px; height: 15px; color: var(--gold-dim); }
.contact-row div:last-child strong {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--black); margin-bottom: 3px;
}
.contact-row div:last-child span { font-size: 13px; color: rgba(23,23,23,.68); line-height: 1.6; }

/* ── Bouton copier courriel ── */
.copy-btn {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 6px;
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  padding: 9px 18px;
  font-family: var(--font-d); font-size: 14px; letter-spacing: .12em;
  text-transform: uppercase;
  clip-path: polygon(6% 0,100% 0,94% 100%,0 100%);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  font-weight: 800;
}
.copy-btn:hover {
  background: transparent;
  color: var(--gold-dim);           /* doré foncé lisible sur fond crème */
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}
.copy-btn.copied {
  background: transparent;
  color: #2e7d32;                   /* vert foncé lisible sur fond crème */
  border-color: #2e7d32;
}
.copy-icon svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: stroke .2s;
}

/* Formulaire */
.contact-form { display: flex; flex-direction: column; gap: 3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dim); padding: 7px 14px 4px;
  background: rgba(255,196,0,.08);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white); border: none;
  border-left: 3px solid transparent;
  font: inherit; font-size: 14px;
  padding: 12px 14px; outline: none; width: 100%; resize: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-left-color: var(--gold); }
.form-field select option { background: var(--white); }
.form-field textarea { height: 110px; }
.form-field--full { grid-column: 1 / -1; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: #080808;
  padding: 28px 6vw;
  border-top: 3px solid rgba(255,196,0,.35);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.38);
}
.footer-links { display: flex; gap: 16px; align-items: center; }
.footer-links a:hover { color: var(--gold); }

/* ══════════════════════════════
   ANIMATIONS SCROLL
══════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}
.fade-up.visible { opacity: 1; transform: none; }

/* ══════════════════════════════
   CONTAINER
══════════════════════════════ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 5%; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 980px) {
  /* ── Hamburger visible, liens cachés par défaut ── */
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }          /* CTA masqué, accessible dans le menu mobile */

  .nav-links {
    display: none;                      /* Caché par défaut */
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(6,6,6,.97);
    backdrop-filter: blur(18px);
    border-bottom: 2px solid var(--gold);
    padding: 0;
    z-index: 490;
  }
  .nav-links.open { display: flex; }   /* Affiché quand ouvert */
  .nav-links li { border-bottom: 1px solid rgba(255,196,0,.1); }
  .nav-links a {
    display: block;
    padding: 18px 6vw;
    font-size: 13px; letter-spacing: .2em;
    color: rgba(255,255,255,.8);
  }
  .nav-links a:hover { color: var(--gold); background: rgba(255,196,0,.05); }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy {
    clip-path: polygon(0 0, 100% 0, 100% 96%, 98% 100%, 0 100%);
    padding: 32px 28px 36px;
  }
  .hero-visual { display: none; }
  .apropos-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-grid   { grid-template-columns: repeat(2,1fr); }
  .svc-grid--3 { grid-template-columns: repeat(2,1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stats-gold { display: none; }
  .stats-img--left  { clip-path: polygon(0 0,100% 0,90% 100%,0 100%); }
  .stats-img--right { clip-path: polygon(10% 0,100% 0,100% 100%,0 100%); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .hero { padding: 104px 5% 72px; }
  .hero-copy { padding: 26px 20px 30px; clip-path: none; }
  .svc-grid, .svc-grid--3 { grid-template-columns: 1fr; }
  .band-2, .stats-band { height: 170px; }
  .visual-photos { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .nav { padding: 0 5%; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }
}
