/* ============================================
   SABINE GOURAUD — OBM — STYLESHEET
   ============================================ */

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

:root {
  --marine:     #2a3f52;
  --bleu-gris:  #5f8f88;
  --terracotta: #b85c3b;
  --ocre:       #e1a531;
  --beige:      #e3d8c6;
  --beige-light:#f5f0e8;
  --white:      #ffffff;
  --text-dark:  #2a3f52;
  --text-mid:   #4a5568;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(42,63,82,0.10);
  --shadow-md:  0 8px 32px rgba(42,63,82,0.14);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--marine);
}

p { color: var(--text-mid); }

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

section { overflow: hidden; }

/* --- TYPOGRAPHY SCALE --- */
.h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bleu-gris);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(184,92,59,0.30);
}
.btn-primary:hover {
  background: #a34e30;
  box-shadow: 0 6px 20px rgba(184,92,59,0.40);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--marine);
  border: 2px solid var(--marine);
}
.btn-outline:hover {
  background: var(--marine);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--terracotta);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-light:hover {
  background: var(--beige-light);
  transform: translateY(-1px);
}

/* --- DIVIDER ACCENT --- */
.divider-accent {
  width: 56px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider-accent.centered { margin: 16px auto 24px; }

/* --- FADE-IN ANIMATION --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(42,63,82,0.08);
  box-shadow: 0 2px 12px rgba(42,63,82,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-identity {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-identity .name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--marine);
}
.nav-identity .title {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--bleu-gris);
  letter-spacing: 0.05em;
}

.nav-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

nav.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
}
nav.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width var(--transition);
}
nav.nav-links a:hover { color: var(--terracotta); }
nav.nav-links a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--marine);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 24px;
  gap: 20px;
  border-top: 1px solid var(--beige);
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--marine);
  padding: 8px 0;
  border-bottom: 1px solid var(--beige);
}
.mobile-menu.open { display: flex; }

/* ============================================
   SECTION 2 — HERO / PROMESSE PRINCIPALE
   ============================================ */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/background-workspace.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(42,63,82,0.82) 0%,
    rgba(42,63,82,0.60) 50%,
    rgba(42,63,82,0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 80px 0;
}

.hero-content .eyebrow { color: var(--beige); opacity: 0.85; }

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin: 16px 0 32px;
  line-height: 1.2;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.benefit-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50px;
  padding: 12px 20px;
  color: var(--ocre);
  font-size: 0.88rem;
  font-weight: 500;
}

.benefit-pill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(1) invert(0);
}

/* ============================================
   SECTION 3 — CTA LEAD MAGNET
   ============================================ */
.leadmagnet-section {
  background: var(--beige-light);
  padding: 56px 0;
  border-top: 3px solid var(--ocre);
}

.leadmagnet-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.leadmagnet-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--marine);
  max-width: 600px;
}

/* ============================================
   SECTION 4 — TRANSFORMATIONS PROMISES
   ============================================ */
.transformations-section {
  padding: 96px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.transformations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.transfo-card {
  background: var(--beige-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.transfo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.transfo-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.transfo-card h3 {
  font-size: 1.15rem;
  color: var(--marine);
}

/* ============================================
   SECTION 5 — MOTIVATEUR
   ============================================ */
.motivateur-section {
  background: var(--marine);
  padding: 72px 0;
  text-align: center;
}

.motivateur-section p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ============================================
   SECTION 6 — COÛT DE L'INACTION
   ============================================ */
.inaction-section {
  padding: 96px 0;
  background: var(--beige-light);
}

.inaction-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.inaction-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 24px;
}

.inaction-text p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.inaction-visual {
  background: var(--marine);
  border-radius: var(--radius);
  padding: 48px 40px;
  color: var(--white);
}

.inaction-visual blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--beige);
  font-style: italic;
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
}

/* ============================================
   SECTION 7 — 3 CONSTATS
   ============================================ */
.constats-section {
  padding: 96px 0;
  background: var(--white);
}

.constats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.constat-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.constat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.constat-image {
  height: 220px;
  overflow: hidden;
}
.constat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.constat-card:hover .constat-image img { transform: scale(1.04); }

.constat-body {
  padding: 28px 24px;
  background: var(--white);
  border-top: 3px solid var(--bleu-gris);
}

.constat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--beige);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.constat-body h3 {
  font-size: 1.1rem;
  color: var(--marine);
  margin-bottom: 12px;
}

.constat-body p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   SECTION 8 — AUTORITÉ
   ============================================ */
.autorite-section {
  padding: 96px 0;
  background: var(--beige-light);
}

.autorite-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.autorite-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--terracotta);
}

.stat-icon { font-size: 1.5rem; margin-bottom: 8px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--marine);
  font-weight: 700;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-top: 4px;
}

/* ============================================
   CTA SECTIONS (repeating)
   ============================================ */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}

.cta-section.dark {
  background: var(--marine);
}
.cta-section.dark h2,
.cta-section.dark p { color: var(--white); }

.cta-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ============================================
   SECTION 10 — IL EST TEMPS DE
   ============================================ */
.ilesttemps-section {
  padding: 80px 0;
  background: var(--beige);
  text-align: center;
}

.ilesttemps-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--marine);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   SECTION 11 — TRANSFORMATIONS AVEC IMAGES
   ============================================ */
.transfo-images-section {
  padding: 96px 0;
  background: var(--white);
}

.transfo-items {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 56px;
}

.transfo-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.transfo-item.reverse { direction: rtl; }
.transfo-item.reverse > * { direction: ltr; }

.transfo-item-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.transfo-item-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.transfo-item-body {}

.transfo-item-body .step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.transfo-item-body h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--marine);
  margin-bottom: 12px;
}

.transfo-item-body .stat-highlight {
  background: var(--beige-light);
  border-left: 3px solid var(--ocre);
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--marine);
  font-weight: 600;
  margin-bottom: 16px;
}

.transfo-item-body p {
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   SECTION 13 — TÉMOIGNAGES
   ============================================ */
.temoignages-section {
  padding: 96px 0;
  background: var(--beige-light);
}

.temoignages-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.temoignage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}
.temoignage-card:hover { transform: translateY(-4px); }

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--bleu-gris);
  opacity: 0.3;
  margin-bottom: 16px;
}

.temoignage-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 24px;
}

.temoignage-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--marine);
}
.author-role {
  font-size: 0.78rem;
  color: var(--bleu-gris);
}

/* ============================================
   SECTION 14 — POURQUOI ME CHOISIR
   ============================================ */
.pourquoi-section {
  padding: 96px 0;
  background: var(--white);
}

.pourquoi-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

.pourquoi-photo {
  position: sticky;
  top: 100px;
}

.pourquoi-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.pourquoi-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 40px;
}

.pourquoi-blocks {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.pourquoi-block {
  padding-left: 20px;
  border-left: 3px solid var(--bleu-gris);
}

.pourquoi-block h3 {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bleu-gris);
  margin-bottom: 8px;
}

.pourquoi-block p {
  font-size: 1rem;
  line-height: 1.8;
}

.philosophie-block {
  background: var(--beige-light);
  border-left: 3px solid var(--terracotta) !important;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 24px 24px 20px !important;
}

/* ============================================
   SECTION 16 — MA PROMESSE
   ============================================ */
.promesse-section {
  padding: 96px 0;
  background: var(--marine);
  text-align: center;
}

.promesse-section h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  max-width: 780px;
  margin: 16px auto 0;
  line-height: 1.5;
}

.promesse-section .eyebrow { color: var(--ocre); }

/* ============================================
   SECTION 17 — EXPERTISES
   ============================================ */
.expertises-section {
  padding: 96px 0;
  background: var(--beige-light);
}

.expertises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.expertise-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.expertise-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.expertise-card h3 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--marine);
  margin-top: 4px;
}

/* ============================================
   SECTION 18 — MA SOLUTION
   ============================================ */
.solution-section {
  padding: 96px 0;
  background: var(--white);
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.solution-block h3 {
  font-size: 1.3rem;
  color: var(--marine);
  margin-bottom: 16px;
}

.solution-block p {
  font-size: 1rem;
  line-height: 1.8;
}

.method-badge {
  display: inline-block;
  background: var(--marine);
  color: var(--beige);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

/* ============================================
   SECTION 19 — OFFRES / ÉTAPES
   ============================================ */
.offres-section {
  padding: 96px 0;
  background: var(--beige-light);
}

.offres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.offre-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.offre-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.offre-header {
  padding: 28px 28px 20px;
  background: var(--marine);
  position: relative;
}

.offre-step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 8px;
}

.offre-header h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.offre-tagline {
  color: var(--beige);
  font-style: italic;
  font-size: 0.85rem;
  margin-top: 8px;
  font-family: 'Playfair Display', serif;
  opacity: 0.85;
}

.offre-body {
  padding: 28px;
  flex: 1;
}

.offre-objectif {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bleu-gris);
  margin-bottom: 8px;
}

.offre-body > p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.offre-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offre-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.offre-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ============================================
   SECTION 20 — COMMENT RETROUVER LE FIL
   ============================================ */
.etapes-section {
  padding: 96px 0;
  background: var(--white);
}

.etapes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.etapes-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 2px;
  background: var(--beige);
  z-index: 0;
}

.etape-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.etape-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--marine);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.etape-item h3 {
  font-size: 1.1rem;
  color: var(--marine);
  margin-bottom: 12px;
}

.etape-item p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   SECTION 22 — AUTORITÉ FINALE
   ============================================ */
.autorite-finale {
  padding: 80px 0;
  background: var(--bleu-gris);
  text-align: center;
}

.autorite-finale p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--marine);
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand .name {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-brand .title {
  color: var(--beige);
  opacity: 0.7;
  font-size: 0.8rem;
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--beige);
  font-size: 0.85rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.footer-nav a:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--white);
  opacity: 0.45;
  font-size: 0.78rem;
}
.footer-bottom a:hover { opacity: 0.8; }

/* ============================================
   PAGE À PROPOS
   ============================================ */
.apropos-hero {
  background: var(--beige-light);
  padding: 80px 0 0;
}

.apropos-hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: end;
}

.apropos-intro .eyebrow { margin-bottom: 16px; }

.apropos-intro h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--marine);
  margin-bottom: 24px;
}

.apropos-intro .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.apropos-photo img {
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
  display: block;
}

.apropos-content {
  padding: 80px 0 96px;
  background: var(--white);
}

.apropos-body {
  max-width: 760px;
  margin: 0 auto;
}

.apropos-body h2 {
  font-size: 1.6rem;
  color: var(--marine);
  margin: 48px 0 20px;
}

.apropos-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.apropos-body hr {
  border: none;
  height: 1px;
  background: var(--beige);
  margin: 40px 0;
}

.apropos-body .highlight-box {
  background: var(--beige-light);
  border-left: 4px solid var(--terracotta);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
}

.apropos-body .highlight-box p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--marine);
  margin: 0;
}

.apropos-body em {
  font-style: italic;
  color: var(--marine);
}

.apropos-body strong {
  font-weight: 700;
  color: var(--marine);
}

.apropos-sign {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--beige);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--marine);
  font-style: italic;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .pourquoi-inner {
    grid-template-columns: 320px 1fr;
    gap: 48px;
  }

  .autorite-inner,
  .inaction-inner,
  .solution-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .apropos-hero-inner {
    grid-template-columns: 1fr;
  }
  .apropos-photo { max-width: 400px; }
  .apropos-photo img { border-radius: var(--radius); }
}

@media (max-width: 900px) {
  .transformations-grid,
  .constats-grid,
  .temoignages-grid,
  .expertises-grid,
  .offres-grid { grid-template-columns: 1fr; }

  .etapes-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .etapes-grid::before { display: none; }

  .pourquoi-inner {
    grid-template-columns: 1fr;
  }
  .pourquoi-photo { position: static; max-width: 360px; }

  .transfo-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .transfo-item.reverse { direction: ltr; }

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

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
  nav.nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-identity .title { display: none; }

  .hero-content { padding: 60px 0; }
  .hero-benefits { flex-direction: column; }
  .benefit-pill { width: 100%; }

  .leadmagnet-inner {
    flex-direction: column;
    text-align: center;
  }

  .section-header { margin-bottom: 40px; }

  .offres-grid,
  .transformations-grid,
  .constats-grid,
  .expertises-grid { grid-template-columns: 1fr; }

  .autorite-finale p { font-size: 1rem; }

  .constat-body { padding: 20px 16px; }

  .inaction-visual { padding: 28px 20px; }

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

/* ============================================
   MODIFICATIONS V2
   ============================================ */

/* --- SECTION 2 : bénéfices sur une ligne --- */
.hero-benefits--row {
  flex-wrap: nowrap;
  gap: 12px;
}
.hero-benefits--row .benefit-pill {
  flex: 1;
  min-width: 0;
  font-size: 0.82rem;
}
@media (max-width: 768px) {
  .hero-benefits--row {
    flex-wrap: wrap;
  }
  .hero-benefits--row .benefit-pill {
    flex: 1 1 100%;
  }
}

/* --- SECTION 3 : Lead Magnet marine --- */
.leadmagnet-dark {
  background: var(--marine) !important;
  border-top: none !important;
  padding: 72px 0;
}
.leadmagnet-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.leadmagnet-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.leadmagnet-sub {
  color: var(--beige);
  opacity: 0.88;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* --- SECTIONS 4+5+6 IMBRIQUÉES --- */
.merged-456-section {
  background: var(--beige-light);
  padding: 80px 0;
}
.merged-456-section .transformations-grid {
  margin-bottom: 56px;
}
.merged-456-section .transfo-card {
  background: var(--white);
}

.motivateur-inline {
  text-align: center;
  margin-bottom: 32px;
}
.motivateur-inline p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--marine);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 600;
}

.inaction-inline {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 8px;
}
.inaction-inline p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
}

/* Retirer l'ancienne section sections 4/5/6 séparées (overrides) */
.transformations-section {
  padding: 0;
}
.motivateur-section,
.inaction-section {
  display: none;
}

/* --- SECTION 8 : icônes personnalisées, 2 tuiles --- */
.stat-custom-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
  /* Les icônes sont sur fond noir — on les rend visibles sur fond blanc background: var(--marine); */
  border-radius: 10px;
  padding: 8px;
}
.stats-grid--2 {
  grid-template-columns: 1fr 1fr !important;
}
@media (max-width: 640px) {
  .stats-grid--2 {
    grid-template-columns: 1fr !important;
  }
}

/* --- SECTION 11 : encart stat simple (sans icône ni liseré) --- */
.stat-highlight-simple {
  background: var(--beige-light);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--marine);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* --- SECTION 13 : témoignages fond marine --- */
.temoignages-dark {
  background: var(--marine) !important;
}

/* --- SECTION 14 : Pourquoi — restructuration --- */

/* Photo centrée verticalement par rapport aux 3 blocs de texte */
.pourquoi-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 48px;
}
.pourquoi-photo {
  position: sticky;
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pourquoi-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}

/* Blocs pleine largeur */
.pourquoi-full-width {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}
.pourquoi-fw-card {
  background: var(--beige-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  border-left: 3px solid var(--bleu-gris);
}
.philosophie-fw {
  border-left-color: var(--terracotta) !important;
  background: #fdf7f5 !important;
}
.pourquoi-fw-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bleu-gris);
  margin-bottom: 12px;
}
.pourquoi-fw-card p {
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .pourquoi-inner {
    grid-template-columns: 1fr;
  }
  .pourquoi-photo {
    max-width: 360px;
  }
  .pourquoi-photo img {
    height: auto;
  }
  .pourquoi-full-width {
    grid-template-columns: 1fr;
  }
}

/* --- SECTION 16 : promesse fond blanc --- */
.promesse-light {
  background: var(--white) !important;
  padding: 96px 0;
}
.promesse-light h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.6;
}

/* --- SECTION 19 : tuiles même hauteur totale, corps blanc s'étire --- */
.offres-grid--equal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.offres-grid--equal .offre-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.offres-grid--equal .offre-header {
  flex-shrink: 0;
}
.offres-grid--equal .offre-body {
  flex: 1; /* s'étire pour remplir la hauteur restante */
}
@media (max-width: 900px) {
  .offres-grid--equal {
    grid-template-columns: 1fr;
  }
}

/* --- FOOTER : logo fond blanc --- */
.footer-logo {
  height: 80px;
  width: auto;
  filter: none !important; /* on n'inverse pas ce logo */
  opacity: 1 !important;
  background: transparent;
}

/* ============================================
   PAGE À PROPOS — V2
   ============================================ */

/* --- INTRO : photo + texte côte à côte --- */
.ap-intro {
  padding: 72px 0 64px;
  background: var(--white);
}

.ap-intro-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
}

.ap-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}

.ap-intro-text h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--marine);
  margin-bottom: 4px;
}

.ap-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bleu-gris);
  margin-bottom: 28px;
}

.ap-conviction {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--marine);
  line-height: 1.55;
  margin-bottom: 16px;
  font-style: italic;
}

.ap-conviction-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* --- CORPS : texte biographique --- */
.ap-body {
  padding: 0 0 80px;
  background: var(--white);
}

.ap-text {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid var(--beige);
}

.ap-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.ap-text em {
  font-style: italic;
  color: var(--marine);
}

.ap-text strong {
  font-weight: 700;
  color: var(--marine);
}

.ap-separator {
  width: 40px;
  height: 2px;
  background: var(--beige);
  border-radius: 2px;
  margin: 36px 0;
}

.ap-signature {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--beige-light);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.ap-signature p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.ap-baseline {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem !important;
  font-style: italic;
  color: var(--marine) !important;
  margin-bottom: 0 !important;
}

/* --- CTA --- */
.ap-cta {
  background: var(--beige-light);
  padding: 64px 0;
  text-align: center;
}

.ap-cta p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .ap-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ap-photo {
    max-width: 300px;
  }
  .ap-text {
    padding-top: 0;
    border-top: none;
  }
  .ap-body {
    padding-top: 32px;
  }
}
