/* ============================================
   SUNA FILMS MEDIA — Design System
   ============================================ */

/* --- Variables --- */
:root {
  --bg:          #080808;
  --brand:       #FF5F00;
  --text:        #FFFFFF;
  --text-muted:  #888888;
  --text-dim:    #555555;
  --surface:     #111111;
  --border:      #1E1E1E;
  --border-dark: #1A1A1A;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-pill: 999px;
  --radius-card: 16px;

  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Utilitaires --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 24px;
}

.section-tag::before { content: '< '; }
.section-tag::after  { content: ' >'; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  padding: 12px 24px;
}

.btn--secondary {
  background: #fff;
  color: #000;
  padding: 12px 24px;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.75);
  opacity: 1;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 15px;
}

/* ============================================
   BURGER MENU (mobile)
   ============================================ */

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  z-index: 998;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-size: 16px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color 0.2s ease;
}

.nav__mobile a:hover {
  color: var(--text);
}

.nav__mobile .btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding-top: calc(var(--nav-h) + 100px);
  padding-bottom: 0;
  text-align: center;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
}

.hero__title {
  font-size: clamp(42px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero__underline {
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.hero__highlight {
  background-color: var(--brand);
  color: #fff;
  padding: 0 8px 2px;
  border-radius: 4px;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__cta {
  margin-bottom: 0;
}

/* --- Marquee --- */
.marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--bg);
  /* masques de fondu sur les bords */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
}

.marquee__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.marquee__logo:hover {
  opacity: 1;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   WHAT WE DO
   ============================================ */

.whatwedo {
  padding: 120px 0 100px;
}

/* Top : 2 colonnes */
.whatwedo__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

.whatwedo__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.whatwedo__desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 380px;
}

/* Citation */
.whatwedo__quote {
  border-left: 3px solid var(--brand);
  padding-left: 28px;
  margin-bottom: 28px;
}

.whatwedo__quote p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
}

/* Fondateurs */
.whatwedo__founders {
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatwedo__avatars {
  display: flex;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bg);
}

.avatar + .avatar {
  margin-left: -10px;
}

.avatar--placeholder {
  background: var(--surface);
  border-color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatwedo__founders-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whatwedo__founders-names {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.whatwedo__founders-title {
  font-size: 12px;
  color: var(--text-dim);
}

/* Grille vidéos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.video-card__thumb {
  width: 100%;
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
}

.video-card__thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__info {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-card__handle {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
}

.video-card__hook {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Métriques */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}

.metric__value {
  display: block;
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.metric__label {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ============================================
   CASE STUDIES
   ============================================ */

.cases {
  padding: 120px 0;
  border-top: 1px solid var(--border-dark);
}

/* Header */
.cases__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.cases__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-top: 8px;
}

.cases__quebec {
  color: var(--brand);
}

.cases__header-right {
  flex-shrink: 0;
}

/* Onglets */
.cases__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.cases__tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cases__tab:hover {
  color: var(--text);
}

.cases__tab.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

/* Panneaux */
.cases__panel {
  display: none;
  animation: fadeIn 0.25s ease;
}

.cases__panel.active {
  display: block;
}

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

.cases__panel-info {
  margin-bottom: 40px;
}

.cases__panel-niche {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

.cases__panel-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Métriques par client */
.cases__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.cases__metric {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cases__metric-value {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1;
}

.cases__metric-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.cases__metric-period {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================
   COMPTEUR ANIMÉ
   ============================================ */

.counter-section {
  padding: 140px 0;
  text-align: center;
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

/* Halo orange derrière le chiffre */
.counter-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 95, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.counter-section__inner {
  position: relative;
  z-index: 1;
}

.counter-section__number {
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.counter-section__label {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.counter-section__sub {
  font-size: 15px;
  color: var(--text-dim);
}

/* ============================================
   PROCESSUS
   ============================================ */

.process {
  padding: 120px 0;
  border-top: 1px solid var(--border-dark);
}

.process__header {
  margin-bottom: 64px;
}

.process__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-top: 8px;
  max-width: 600px;
}

/* Steps */
.process__steps {
  display: flex;
  flex-direction: column;
}

.process__step {
  position: relative;
  border-top: 1px solid var(--border-dark);
  padding: 40px 0;
  overflow: hidden;
}

.process__step--last {
  border-bottom: 1px solid var(--border-dark);
}

/* Numéro décoratif en fond */
.process__num {
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* Layout intérieur */
.process__step-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.process__step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  padding-top: 4px;
}

.process__step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.process__step-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process__step-list li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.process__step-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
  font-size: 12px;
  top: 3px;
}

/* ============================================
   FORFAIT
   ============================================ */

.forfait {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.forfait__header {
  max-width: 680px;
  margin-bottom: 64px;
}

.forfait__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 12px 0 20px;
  line-height: 1.15;
}

.forfait__intro {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.forfait__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.forfait__col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
}

.forfait__col--main {
  border-color: var(--brand);
}

.forfait__col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 28px;
}

.forfait__col--extra .forfait__col-label {
  color: var(--text-muted);
}

.forfait__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.forfait__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.forfait__list li:last-child {
  border-bottom: none;
}

.forfait__item-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 95, 0, 0.1);
  border-radius: 8px;
  margin-top: 1px;
}

.forfait__item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.forfait__item-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.forfait__item-text span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.forfait__list--muted li {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.forfait__list--muted li:last-child {
  border-bottom: none;
}

.forfait__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  margin-top: 1px;
}

.forfait__icon--muted {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 14px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.forfait__cta {
  text-align: center;
}

@media (max-width: 768px) {
  .forfait__cols {
    grid-template-columns: 1fr;
  }
  .forfait__col {
    padding: 28px;
  }
}

/* ============================================
   TÉMOIGNAGES
   ============================================ */

.testimonials {
  padding: 120px 0;
  border-top: 1px solid var(--border-dark);
}

.testimonials__header {
  margin-bottom: 56px;
}

.testimonials__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  margin-top: 8px;
}

.testimonials__subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* Grille 2×2 */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Card de base */
.tcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}

.tcard:hover {
  border-color: #2e2e2e;
}

/* Card featured (vidéo) */
.tcard--featured {
  grid-row: span 1;
}

.tcard__video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d0d0d;
}

.tcard__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcard__video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0d0d0d;
  border-bottom: 1px solid var(--border);
}

.tcard__play-icon {
  font-size: 36px;
  color: rgba(255,255,255,0.15);
}

.tcard__video-label {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
}

/* Contenu texte */
.tcard__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard__author .avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  font-size: 14px;
}

.tcard__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.tcard__role {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
}

.tcard__quote {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   MINI BANNER — sous marquee
   ============================================ */

.ref-mini {
  display: block;
  background: var(--brand);
  border-top: 1px solid var(--brand);
  border-bottom: 1px solid var(--brand);
  padding: 14px 0;
  transition: filter 0.2s ease;
  cursor: pointer;
}

.ref-mini:hover {
  filter: brightness(1.08);
}

.ref-mini__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ref-mini__pill {
  display: inline-block;
  background: #fff;
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.ref-mini__text {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.ref-mini__text strong {
  font-weight: 700;
}

.ref-mini__amount {
  font-weight: 700;
  background: rgba(0, 0, 0, 0.18);
  padding: 2px 8px;
  border-radius: 4px;
}

.ref-mini__arrow {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .ref-mini__inner {
    gap: 10px;
  }
  .ref-mini__text {
    font-size: 13px;
    text-align: center;
  }
}

/* ============================================
   RÉFÉRENCEMENT — Banner
   ============================================ */

.referral-banner {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(255, 95, 0, 0.05), transparent);
}

.referral-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.referral-banner__left {
  flex: 1;
}

.referral-banner__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.referral-banner__title {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

.referral-banner__highlight {
  color: var(--brand);
}

.referral-banner__cta {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .referral-banner__inner {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
  }
}

/* ============================================
   ÉQUIPE
   ============================================ */

.team {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.team__header {
  text-align: center;
  margin-bottom: 72px;
}

.team__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 12px 0 16px;
}

.team__subtitle {
  font-size: 17px;
  color: var(--text-muted);
}

/* Fondateurs avec photos */
.team__founders {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 72px;
}

.team__founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.team__founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--brand);
}

.team__founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reste de l'équipe */
.team__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 48px;
}

.team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: 140px;
}

.team__member-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.team__member-role {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.avatar--lg {
  width: 72px;
  height: 72px;
  font-size: 22px;
  font-weight: 700;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lien fondateurs dans whatwedo */
.whatwedo__founders--link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.2s;
}

.whatwedo__founders--link:hover {
  opacity: 0.75;
}

.whatwedo__founders--link .whatwedo__founders-title {
  color: var(--brand);
}

@media (max-width: 768px) {
  .team__founders {
    gap: 32px;
  }
  .team__founder-photo {
    width: 120px;
    height: 120px;
  }
  .team__grid {
    gap: 32px 36px;
  }
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
  padding: 160px 0;
  text-align: center;
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

/* Grain de texture */
.cta-final__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

/* Halo central */
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 95, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final__title {
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 40px;
}

.cta-final__btn {
  padding: 18px 40px;
  font-size: 16px;
  margin-bottom: 16px;
  box-shadow: 0 0 40px rgba(255, 95, 0, 0.25);
}

.cta-final__btn:hover {
  box-shadow: 0 0 60px rgba(255, 95, 0, 0.35);
}

.cta-final__note {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__logo {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  font-size: 13px;
  color: #444;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--text-muted);
}

.footer__copy {
  font-size: 13px;
  color: #444;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 60px);
  }

  .hero__title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .hero__subtitle {
    font-size: 15px;
    padding: 0 8px;
  }

  .whatwedo__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .whatwedo__desc {
    max-width: 100%;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cases__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cases__tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cases__tab {
    white-space: nowrap;
  }

  .cases__metrics {
    grid-template-columns: 1fr;
  }

  .process__step-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process__num {
    font-size: 80px;
    right: -8px;
    opacity: 0.6;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .cta-final {
    padding: 100px 0;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}

/* ============================================
   PAGE RÉFÉRENCEMENT
   ============================================ */

/* HERO VSL */
.ref-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
}

.ref-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}

.ref-hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin: 16px 0 24px;
}

.ref-hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.ref-vsl {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ref-vsl__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ref-vsl__placeholder p {
  font-size: 14px;
  color: var(--text-muted);
}

.ref-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SECTION HEADERS génériques */
.ref-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.ref-section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 12px 0 16px;
  line-height: 1.15;
}

.ref-section-sub {
  font-size: 17px;
  color: var(--text-muted);
}

/* COMMENT ÇA MARCHE */
.ref-how {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.ref-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ref-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
}

.ref-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ref-step__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.ref-step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* QUI SE QUALIFIE */
.ref-qualify {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.ref-qualify__list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ref-qualify__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text);
}

.ref-qualify__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 95, 0, 0.15);
  color: var(--brand);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

/* FORMULAIRE */
.ref-form-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.ref-form-section__inner {
  max-width: 600px;
}

.ref-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ref-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ref-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ref-form__field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.ref-form__field input,
.ref-form__field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}

.ref-form__field input:focus,
.ref-form__field select:focus {
  outline: none;
  border-color: var(--brand);
}

.ref-form__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 4px;
}

.ref-form__divider span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  flex-shrink: 0;
}

.ref-form__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ref-form__submit {
  margin-top: 12px;
  width: 100%;
}

.ref-form__alt {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.ref-form__alt strong {
  color: var(--text);
}

/* FAQ */
.ref-faq {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.ref-faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ref-faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.ref-faq__item[open] {
  border-color: var(--brand);
}

.ref-faq__item summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ref-faq__item summary::-webkit-details-marker {
  display: none;
}

.ref-faq__item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.ref-faq__item[open] summary::after {
  transform: rotate(45deg);
  color: var(--brand);
}

.ref-faq__item p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FOOTER PAGE RÉFÉRENCEMENT */
.ref-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ref-footer__brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brand);
  margin-bottom: 4px;
}

.ref-footer__desc,
.ref-footer__loc {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .ref-steps {
    grid-template-columns: 1fr;
  }
  .ref-form__row {
    grid-template-columns: 1fr;
  }
  .ref-hero__ctas {
    flex-direction: column;
  }
  .ref-hero__ctas .btn {
    width: 100%;
  }
}

/* ============================================
   PAGE PERSONAL BRAND (privé)
   ============================================ */

.pb-nav-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 12px;
  border: 1px solid var(--brand);
  border-radius: 999px;
}

.pb-hero {
  padding: calc(var(--nav-h) + 80px) 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pb-hero__inner {
  max-width: 820px;
}

.pb-hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin: 16px 0 28px;
}

.pb-hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.pb-hero__sub strong { color: var(--text); }
.pb-hero__sub em { color: var(--brand); font-style: italic; }

.pb-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.pb-section--alt { background: var(--surface); }

.pb-section__inner { max-width: 820px; }

.pb-section__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.pb-num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand);
  padding: 6px 14px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  flex-shrink: 0;
}

.pb-section__title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}

.pb-content { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.pb-content p { margin-bottom: 18px; }
.pb-content strong { color: var(--text); }
.pb-content em { color: var(--brand); font-style: italic; }
.pb-content a { color: var(--brand); text-decoration: underline; }

.pb-lead {
  font-size: 19px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px !important;
  padding-left: 16px;
  border-left: 3px solid var(--brand);
}

.pb-list {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
}

.pb-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.pb-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.pb-list--num {
  counter-reset: pb-counter;
}

.pb-list--num li {
  counter-increment: pb-counter;
}

.pb-list--num li::before {
  content: counter(pb-counter) ".";
}

.pb-list--check li::before {
  content: "✓";
}

.pb-quote {
  margin: 32px 0;
  padding: 24px 28px;
  background: rgba(255, 95, 0, 0.06);
  border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

.pb-template {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  margin: 24px 0;
}

.pb-template__line {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 4px 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.pb-template__line:last-child { border-bottom: none; }

.pb-template__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand);
  text-transform: uppercase;
  align-self: center;
}

.pb-template__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.pb-template__example {
  grid-column: 2;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.pb-warning {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(255, 95, 0, 0.08);
  border-radius: 10px;
  color: var(--text);
}

.pb-cta-box {
  margin-top: 24px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.pb-cta-box ol { margin: 16px 0; }

.pb-cta {
  padding: 100px 0;
  text-align: center;
}

.pb-cta__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.pb-cta__sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .pb-template__line { grid-template-columns: 1fr; }
  .pb-template__example { grid-column: 1; }
  .pb-section__head { flex-direction: column; align-items: flex-start; gap: 12px; }
}
