/* ============================================================
   BRICZEN — Charte graphique officielle
   Couleurs : #000000 · #ff6f3c · #ffffff · #2b053d
   Typos   : Bebas Neue (titres) · Montserrat (corps)
   ============================================================ */

:root {
  --noir: #000000;
  --noir-90: #0a0a0a;
  --noir-80: #141414;
  --orange: #ff6f3c;
  --orange-dark: #e55a28;
  --blanc: #ffffff;
  --violet: #2b053d;
  --violet-light: #3d0a56;
  --gris-texte: #b8b8b8;
  --gris-bordure: rgba(255, 255, 255, 0.08);

  --font-title: "Bebas Neue", Impact, sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;

  --ease: cubic-bezier(.2, .7, .2, 1);

  --top-band-h: 40px;
}

/* ----------------- RESET ----------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--noir);
  color: var(--blanc);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ----------------- LAYOUT ----------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section-dark { background: var(--noir); color: var(--blanc); }
.section-light { background: var(--blanc); color: var(--noir); }
.section-violet {
  background: linear-gradient(160deg, var(--violet) 0%, #1a0328 100%);
  color: var(--blanc);
}
.section-orange {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8855 100%);
  color: var(--noir);
}
.section-black-band {
  background: var(--noir);
  padding: 80px 0;
  border-top: 1px solid var(--gris-bordure);
  border-bottom: 1px solid var(--gris-bordure);
}

/* ----------------- TYPOGRAPHIE ----------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.eyebrow-dark { color: var(--violet); }
.section-orange .eyebrow { color: var(--violet); }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(42px, 6vw, 88px);
  line-height: .95;
  letter-spacing: 1px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.section-title-dark { color: var(--noir); }

.section-lead {
  font-size: 18px;
  max-width: 780px;
  color: var(--gris-texte);
  margin-bottom: 60px;
  line-height: 1.7;
}
.section-light .section-lead { color: #4a4a4a; }
.section-lead.dark { color: #2a0a0a; }
.section-lead.white { color: rgba(255, 255, 255, .85); }

.accent { color: var(--orange); }
.accent-violet { color: var(--violet); }

.strike {
  position: relative;
  white-space: nowrap;
}
.strike::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 52%;
  height: 4px;
  background: var(--orange);
  transform: rotate(-3deg);
  border-radius: 2px;
}

/* ----------------- BUTTONS ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--noir);
  box-shadow: 0 12px 32px -8px rgba(255, 111, 60, .55);
}
.btn-primary:hover {
  background: #ff8558;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -10px rgba(255, 111, 60, .75);
}
.btn-ghost {
  background: transparent;
  color: var(--blanc);
  border-color: rgba(255, 255, 255, .3);
}
.section-orange .btn-ghost {
  color: var(--noir);
  border-color: rgba(0, 0, 0, .3);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ============================================================
   BANDE SCARCITY TOP
   ============================================================ */
.top-band {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: linear-gradient(90deg, var(--violet) 0%, #1a0328 50%, var(--violet) 100%);
  color: var(--blanc);
  border-bottom: 1px solid rgba(255, 111, 60, .3);
  font-size: 13px;
  height: var(--top-band-h);
  display: flex;
  align-items: center;
}
.top-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.top-band p {
  margin: 0;
  letter-spacing: .5px;
  font-weight: 500;
}
.top-band strong {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.tb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 111, 60, .6);
  animation: tb-pulse 2s ease-in-out infinite;
}
@keyframes tb-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 111, 60, .6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 111, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 111, 60, 0); }
}
.tb-link {
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}
.tb-link:hover { color: var(--blanc); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: var(--top-band-h); left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled {
  background: rgba(0, 0, 0, .92);
  border-bottom-color: var(--gris-bordure);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.logo-mark {
  font-family: var(--font-title);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--blanc);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  border-top: 1px solid var(--orange);
  padding-top: 3px;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  position: relative;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  padding: 12px 24px;
  font-size: 12px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanc);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — avec photo
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: calc(var(--top-band-h) + 120px) 0 100px;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--noir);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(255, 111, 60, .25) 0%, transparent 45%),
    radial-gradient(ellipse at bottom left, rgba(43, 5, 61, .5) 0%, transparent 50%),
    var(--noir);
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 620px; }

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(44px, 6.8vw, 96px);
  line-height: .95;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-lead {
  font-size: 18px;
  max-width: 560px;
  color: var(--gris-texte);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-lead strong { color: var(--blanc); font-weight: 700; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-proof {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--gris-bordure);
}
.hero-proof li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-proof strong {
  font-family: var(--font-title);
  font-size: 30px;
  color: var(--orange);
  letter-spacing: 1px;
}
.hero-proof span {
  font-size: 11px;
  color: var(--gris-texte);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  max-width: 160px;
}

/* Photo hero */
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--noir-80);
  aspect-ratio: 4 / 5;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, .8),
    0 0 0 1px rgba(255, 111, 60, .2);
}
.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .85) 100%),
    linear-gradient(135deg, rgba(255, 111, 60, .12) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-photo-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 14px 18px;
}
.hero-photo-badge-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--noir);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-photo-badge strong {
  display: block;
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--blanc);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-photo-badge span {
  font-size: 11px;
  color: var(--gris-texte);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  margin: 7px auto 0;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(14px); }
}

/* ============================================================
   GRILLES GÉNÉRIQUES
   ============================================================ */
.grid {
  display: grid;
  gap: 28px;
  margin-top: 20px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--gris-bordure);
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  background: rgba(255, 111, 60, .05);
}
.card h3 {
  font-family: var(--font-title);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 16px;
}
.card p { color: var(--gris-texte); font-size: 15px; line-height: 1.7; }

/* ----------------- Quote cards (témoignages avatars) ----------------- */
.quotes-row {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote-card {
  background: rgba(255, 111, 60, .04);
  border-left: 3px solid var(--orange);
  padding: 26px 28px;
  border-radius: 6px;
  position: relative;
}
.quote-card p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .92);
  margin: 0 0 12px;
}
.quote-card p em { color: var(--orange); font-style: italic; }
.quote-card cite {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gris-texte);
  font-style: normal;
}

.avatar-bridge {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.3;
  letter-spacing: 1px;
  color: var(--blanc);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.avatar-bridge strong { font-weight: 700; }

/* ============================================================
   MÉTHODE M.R.D
   ============================================================ */
.mrd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.mrd-card {
  background: var(--noir);
  color: var(--blanc);
  padding: 56px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease);
}
.mrd-card:hover { transform: translateY(-6px); }
.mrd-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 111, 60, .18) 0%, transparent 70%);
  pointer-events: none;
}
.mrd-letter {
  font-family: var(--font-title);
  font-size: 140px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.mrd-card h3 {
  font-family: var(--font-title);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--blanc);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.mrd-card p {
  color: var(--gris-texte);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   IMPULSION GRID
   ============================================================ */
.impulsion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.imp-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, .1);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.imp-item:hover {
  background: var(--noir);
  color: var(--blanc);
  transform: translateY(-4px);
}
.imp-item:hover h4, .imp-item:hover p { color: var(--blanc); }
.imp-item:hover span { color: var(--orange); }
.imp-item span {
  font-family: var(--font-title);
  font-size: 56px;
  line-height: .9;
  color: var(--violet);
  flex-shrink: 0;
  transition: color .3s var(--ease);
}
.imp-item h4 {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
  color: var(--noir);
}
.imp-item p {
  font-size: 14px;
  line-height: 1.55;
  color: #3a1a10;
}

/* ============================================================
   PREUVE SOCIALE / CONFÉRENCE
   ============================================================ */
.section-proof { padding: 100px 0; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.proof-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .7);
}
.proof-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, .4) 100%),
    linear-gradient(135deg, rgba(255, 111, 60, .08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-content h2 { margin-bottom: 24px; }
.proof-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gris-texte);
  margin-bottom: 32px;
}
.proof-text strong { color: var(--blanc); }
.proof-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-points li {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  border-bottom: 1px solid var(--gris-bordure);
}
.proof-points li:last-child { border-bottom: none; }
.proof-points li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--orange);
  font-size: 16px;
  line-height: 1;
}
.proof-points strong { color: var(--orange); }

/* ============================================================
   POINT B — Tableau Avant/Après
   ============================================================ */
.ab-table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 40px;
}
.ab-col {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
}
.ab-before {
  background: #f4f4f4;
  color: #4a4a4a;
  position: relative;
}
.ab-before::before {
  content: "✕";
  position: absolute;
  top: 18px; right: 22px;
  color: #b0b0b0;
  font-size: 22px;
  font-weight: 700;
}
.ab-after {
  background: var(--violet);
  color: var(--blanc);
  position: relative;
}
.ab-after::before {
  content: "✓";
  position: absolute;
  top: 18px; right: 22px;
  color: var(--orange);
  font-size: 22px;
  font-weight: 700;
}
.ab-col h3 {
  font-family: var(--font-title);
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.ab-before h3 { color: #888; }
.ab-after h3 { color: var(--orange); }

.ab-col ul li {
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.ab-after ul li { border-bottom-color: rgba(255, 255, 255, .1); }
.ab-col ul li:last-child { border-bottom: none; }
.ab-after ul li strong { color: var(--orange); }

.ab-arrow {
  display: grid;
  place-items: center;
  font-family: var(--font-title);
  font-size: 72px;
  color: var(--orange);
  line-height: 1;
}

/* ============================================================
   GARANTIE
   ============================================================ */
.garantie-grid {
  margin-top: 40px;
}
.garantie-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.garantie-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}
.garantie-num {
  font-family: var(--font-title);
  font-size: 80px;
  line-height: 1;
  color: var(--orange);
  opacity: .25;
  position: absolute;
  top: 20px; right: 24px;
  letter-spacing: 2px;
}
.garantie-card h3 {
  font-family: var(--font-title);
  font-size: 32px;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.garantie-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
}
.garantie-card p strong { color: var(--blanc); }

/* ============================================================
   OFFRES
   ============================================================ */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
  align-items: stretch;
}
.offer {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, .01) 100%);
  border: 1px solid var(--gris-bordure);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.offer:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 111, 60, .4);
}
.offer-premium {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(255, 111, 60, .10) 0%, rgba(255, 111, 60, .02) 100%);
  box-shadow: 0 30px 60px -30px rgba(255, 111, 60, .4);
}
.offer-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--noir);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.offer-title {
  font-family: var(--font-title);
  font-size: 36px;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.offer-sub {
  color: var(--gris-texte);
  font-size: 13px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.offer-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  border-top: 1px solid var(--gris-bordure);
  border-bottom: 1px solid var(--gris-bordure);
  margin-bottom: 28px;
}
.price-big {
  font-family: var(--font-title);
  font-size: 54px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: 1px;
}
.price-per { font-size: 22px; color: var(--gris-texte); }
.price-old {
  font-size: 16px;
  color: var(--gris-texte);
  text-decoration: line-through;
}
.price-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

.offer-list {
  margin-bottom: 20px;
  flex-grow: 1;
}
.offer-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.offer-list li:last-child { border-bottom: none; }
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}
.offer-list li strong { color: var(--blanc); }

.offer-value {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gris-texte);
  margin-bottom: 20px;
  padding: 12px 0;
  border-top: 1px dashed rgba(255, 255, 255, .15);
  text-align: center;
}
.offer-value strong {
  color: var(--orange);
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 1px;
  margin-left: 6px;
}

.offer-cta {
  width: 100%;
  padding: 16px 20px;
  font-size: 12px;
}

/* ============================================================
   HISTOIRE — TRIPTYQUE
   ============================================================ */
.triptyque {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 72px;
}
.triptyque-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--noir-80);
  transition: transform .4s var(--ease);
}
.triptyque-item:hover { transform: translateY(-6px) scale(1.01); }
.triptyque-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .9) 100%);
  z-index: 1;
  pointer-events: none;
}
.triptyque-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.triptyque-item:hover img { transform: scale(1.04); }
.triptyque-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 26px;
  z-index: 2;
}
.triptyque-item figcaption strong {
  display: block;
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--blanc);
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.triptyque-item figcaption span {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.story {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .9);
}
.story p { margin-bottom: 24px; }
.story strong { color: var(--orange); font-weight: 700; }
.story em { color: var(--blanc); font-style: italic; }
.story-sign {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: var(--blanc) !important;
}
.story-sign strong { color: var(--orange) !important; }

/* ============================================================
   USP BAND
   ============================================================ */
.band-text {
  font-family: var(--font-title);
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.3;
  letter-spacing: 1.2px;
  text-align: center;
  color: var(--blanc);
  max-width: 1000px;
  margin: 0 auto;
}
.band-text .accent { color: var(--orange); }
.band-text strong { color: var(--orange); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 860px;
  margin-top: 40px;
}
.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 48px 22px 0;
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 1.2px;
  color: var(--noir);
  text-transform: uppercase;
  position: relative;
  transition: color .2s var(--ease);
}
.faq-item summary:hover { color: var(--orange); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 300;
  color: var(--orange);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 48px 24px 0;
  font-size: 15px;
  line-height: 1.75;
  color: #4a4a4a;
}
.faq-item p strong { color: var(--violet); }
.faq-item p em { color: var(--orange); font-style: normal; font-weight: 600; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--gris-bordure);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  background: rgba(255, 111, 60, .05);
}
.contact-card-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--noir);
  border-color: var(--orange);
}
.contact-card-primary:hover {
  background: linear-gradient(135deg, #ff8558 0%, var(--orange) 100%);
  border-color: var(--blanc);
}
.contact-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 111, 60, .12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-ico svg { width: 24px; height: 24px; }
.contact-card-primary .contact-ico {
  background: rgba(0, 0, 0, .15);
  color: var(--noir);
}
.contact-card h3 {
  font-family: var(--font-title);
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-card p {
  font-size: 14px;
  color: var(--gris-texte);
}
.contact-card-primary p { color: rgba(0, 0, 0, .7); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--noir);
  color: var(--gris-texte);
  padding: 80px 0 32px;
  border-top: 1px solid var(--gris-bordure);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo-mark { font-size: 36px; display: block; }
.footer-brand .logo-sub { display: inline-block; margin-top: 4px; }
.footer-tag {
  margin-top: 20px;
  font-family: var(--font-title);
  font-size: 18px;
  letter-spacing: 2.5px;
  color: var(--orange);
}
.footer-col h4 {
  font-family: var(--font-title);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--blanc);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--gris-texte);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gris-bordure);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.8;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo { max-width: 480px; margin: 0 auto; width: 100%; }
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .grid-3, .mrd-grid, .impulsion-grid, .offers, .triptyque { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .quotes-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .ab-table { grid-template-columns: 1fr; }
  .ab-arrow { transform: rotate(90deg); font-size: 48px; }

  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--noir);
    padding: 20px 28px 32px;
    border-bottom: 1px solid var(--gris-bordure);
  }
  .nav.open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--gris-bordure);
  }

  .hero-proof { gap: 28px; }
  .hero-proof strong { font-size: 26px; }
  .mrd-letter { font-size: 100px; }

  .top-band { font-size: 12px; }
  .top-band p { text-align: center; }
  .tb-link { display: none; }
  .triptyque { gap: 14px; }
}

@media (max-width: 600px) {
  :root { --top-band-h: 54px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-proof { flex-direction: column; gap: 16px; }
  .quotes-row { grid-template-columns: 1fr; }
  .offer { padding: 32px 24px; }
  .offer-premium { margin-top: 12px; }
  .faq-item summary { font-size: 18px; }
  .top-band p { font-size: 11px; line-height: 1.3; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
