/* ============================================
   PALETTE
   ----
   bg-main:    #FDFBF8  (cream)
   bg-alt:     #F5F0E5  (slightly darker cream)
   bg-card:    #FFFFFF
   border:     #E8E0D0  (warm beige)
   text-1:     #0a0a0a  (near black)
   text-2:     #5a5a5a  (mid gray)
   text-3:     #8a8a8a  (light gray)
   text-4:     #b8b0a0  (very muted, warm)
   accent:     #6366f1  (indigo)
   success:    #16a34a
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #FDFBF8;
  color: #0a0a0a;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; color: inherit; cursor: pointer; font: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-style: normal;
  color: #0a0a0a;
  line-height: 1.2;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.container.narrow { max-width: 720px; }
.container.center { text-align: center; }

.section {
  padding: 120px 0;
}
.section-alt { background: #FCF7F2; }

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: #0a0a0a;
}
.section-title.centered { text-align: center; margin: 0 auto 64px; max-width: 820px; }

.label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #6366f1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: #2b2f33;
  color: #ffffff;
}
.btn-primary:hover { background: #1a1d20; }
.btn-outline {
  background: #FDFBF8;
  border: 1px solid #c8c0b0;
  color: #0a0a0a;
}
.btn-outline:hover { border-color: #0a0a0a; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
#header.scrolled {
  background: rgba(253, 251, 248, 0.9);
  border-bottom-color: #E8E0D0;
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #0a0a0a;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-desktop a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5a5a5a;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: #0a0a0a; }
.nav-desktop a.active { color: #0a0a0a; }
.nav-desktop a.btn { color: #fff; }
.nav-desktop a.btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0a0a0a;
  transition: 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: #FDFBF8;
  border-bottom: 1px solid #E8E0D0;
  padding: 24px 48px 32px;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: #0a0a0a;
  padding: 8px 0;
  border-bottom: 1px solid #E8E0D0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 140px 0 40px;
  overflow: hidden;
  isolation: isolate;
}
.hero + .section { padding-top: 40px; }
/* Colored gradient blobs concentrés au centre */
.hero::before {
  content: "";
  position: absolute;
  top: 44%;
  left: 50%;
  width: 70%;
  height: 75%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(150, 175, 255, 0.70) 0%, transparent 38%),
    radial-gradient(ellipse at 50% 45%, rgba(215, 170, 235, 0.65) 0%, transparent 40%),
    radial-gradient(ellipse at 68% 55%, rgba(255, 165, 120, 0.70) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 50%, rgba(245, 140, 100, 0.55) 0%, transparent 38%);
  filter: blur(90px);
  pointer-events: none;
}
.hero-centered {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid #E8E0D0;
  background: #FFFFFF;
  color: #5a5a5a;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  margin-top: 8px;
  margin-bottom: 0;
}
.pulse {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}
.hero h1 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 28px;
  max-width: 1200px;
}
.hero .lede {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #5a5a5a;
  max-width: 900px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.lede strong {
  font-weight: 700;
  color: #333333;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a8a8a;
  margin-bottom: 16px;
}

/* ============================================
   PAGE SUB-HERO (sub-pages)
   ============================================ */
.page-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6366f1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid #E8E0D0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 99px;
}

.big-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  color: #5a5a5a;
  line-height: 1.75;
  margin-top: 24px;
}

/* ============================================
   PRESTATIONS BLOCKS (alternating)
   ============================================ */
.presta-block {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.presta-block:last-child { margin-bottom: 0; }
.presta-block.reverse {
  grid-template-columns: 2fr 3fr;
}
.presta-block.reverse .presta-text { order: 2; }
.presta-block.reverse .presta-visual { order: 1; }

.presta-num {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #6366f1;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.presta-text h3 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 32px;
  color: #0a0a0a;
  margin-bottom: 20px;
  line-height: 1.25;
}
.presta-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.75;
  margin-bottom: 24px;
}

.visual-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.visual-icon {
  font-family: 'Lora', serif;
  font-size: 64px;
  color: #6366f1;
  line-height: 1;
}
.visual-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #8a8a8a;
}

.presta-cards {
  margin-top: 70px;
  margin-bottom: 80px;
}
.presta-card {
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 10px;
  padding: 28px 24px;
}
.presta-card-icon {
  width: 36px;
  height: 36px;
  color: #0a0a0a;
  margin-bottom: 16px;
}
.presta-card-icon svg {
  width: 100%;
  height: 100%;
}
.presta-card h4 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 20px;
  color: #0a0a0a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.presta-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}

/* AGENTS CAROUSEL */
.agents-intro {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 700;
  color: #0a0a0a;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.3;
}
.agents-carousel {
  overflow: hidden;
  padding: 8px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}
.agents-track {
  display: flex;
  gap: 20px;
  animation: agents-scroll 80s linear infinite;
  width: max-content;
}
@keyframes agents-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.agent-card {
  flex-shrink: 0;
  width: 320px;
  background: #fff;
  border: 1px solid #E8E0D0;
  border-radius: 10px;
  padding: 24px;
}
.agent-card-icon {
  width: 32px;
  height: 32px;
  color: #0a0a0a;
  margin-bottom: 14px;
}
.agent-card-icon svg {
  width: 100%;
  height: 100%;
}
.agent-card h4 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 18px;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.agent-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.5;
  margin-bottom: 12px;
}
.agent-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  background: #0a0a0a;
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 10px;
}
.agent-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
}

/* CATALOGUE BLOCK */
.catalogue-block {
  max-width: 85%;
  margin: 64px auto 0;
  background: #ffffff;
  border: 1px solid #E8E0D0;
  border-radius: 12px;
  padding: 48px 56px;
  text-align: center;
}
.catalogue-block h3 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 28px;
  color: #0a0a0a;
  margin-bottom: 8px;
}
.catalogue-block p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #5a5a5a;
  margin-bottom: 32px;
}
.catalogue-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 52px;
  align-items: center;
}
.catalogue-visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}
.catalogue-form input,
.catalogue-form .btn {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
}
.catalogue-form input {
  border: 1px solid #E8E0D0;
  background: #FDFBF8;
  color: #0a0a0a;
  transition: border-color 0.2s;
  margin-bottom: 10px;
}
.catalogue-form input::placeholder {
  color: #999;
}
.catalogue-form input:focus {
  outline: none;
  border-color: #0a0a0a;
}
.btn-white {
  background: #0a0a0a;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid #0a0a0a;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.2s ease;
}
.btn-white:hover {
  background: #333;
}
.btn.btn-sent {
  background: #16a34a !important;
  border-color: #16a34a !important;
  color: #ffffff !important;
  pointer-events: none;
  animation: btn-sent-pop 0.5s ease;
}
.btn-check {
  display: inline-block;
  margin-right: 6px;
  font-weight: 700;
  animation: btn-check-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes btn-sent-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
@keyframes btn-check-in {
  0%   { transform: scale(0) rotate(-90deg); opacity: 0; }
  60%  { transform: scale(1.3) rotate(0deg);  opacity: 1; }
  100% { transform: scale(1) rotate(0deg);    opacity: 1; }
}
/* catalogue responsive handled in main responsive block below */

.presta-visual--plain {
  background: #FDFBF8;
  border: none;
  isolation: isolate;
}
.presta-visual--plain .visual-frame {
  background: transparent;
  border: none;
}
.presta-visual--plain img {
  width: 100%;
  height: auto;
  display: block;
}
.presta-visual-img--darken {
  mix-blend-mode: multiply;
}

/* ============================================
   COMMISSION BLOCK (apport-affaires)
   ============================================ */
.commission-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.commission-text h2 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 40px;
  color: #0a0a0a;
  margin: 16px 0 20px;
  line-height: 1.2;
}
.commission-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.75;
  margin-bottom: 24px;
}
.commission-card {
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 16px;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.commission-num {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 96px;
  color: #6366f1;
  line-height: 1;
  margin-bottom: 4px;
}
.commission-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
}
.commission-sep {
  display: block;
  width: 40px;
  height: 1px;
  background: #E8E0D0;
  margin: 18px 0;
}
.commission-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a8a8a;
  line-height: 1.5;
}

/* ============================================
   STACK GRID (agents page)
   ============================================ */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stack-item {
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}
.stack-item:hover { border-color: #6366f1; }
.stack-item strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
}
.stack-item span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a8a8a;
}

/* ============================================
   ABOUT PHOTO (reused placeholder)
   ============================================ */
.about-photo { display: flex; flex-direction: column; align-items: center; }
.photo-frame {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-frame.square { aspect-ratio: 1 / 1; }
.photo-frame { overflow: hidden; }
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.initials {
  font-family: 'Lora', serif;
  font-size: 48px;
  color: #d4ccba;
}
.photo-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #b8b0a0;
  margin-top: 16px;
  text-align: center;
}

/* ============================================
   SOLUTIONS (dark band)
   ============================================ */
.solutions-dark {
  background: #0a0a0a;
  color: #f5f5f5;
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.solutions-col {
  padding: 0 56px;
  display: flex;
  flex-direction: column;
}
.solutions-col + .solutions-col {
  border-left: 1px solid #1e1e1e;
}
.solutions-col:first-child { padding-left: 0; }
.solutions-col:last-child { padding-right: 0; }
.solutions-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #6366f1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.solutions-title {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 32px;
  color: #f5f5f5;
  line-height: 1.25;
  margin-bottom: 20px;
}
.solutions-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.solutions-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sol-icon {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: #6366f1;
  margin-top: 11px;
}
.sol-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #f5f5f5;
  margin-bottom: 4px;
}
.sol-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.solutions-link {
  align-self: flex-start;
  margin-top: auto;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #f5f5f5;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  padding-bottom: 2px;
}
.solutions-link:hover { border-bottom-color: #f5f5f5; }

/* ============================================
   CARDS / GRIDS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.2s;
}
.expertise-card { padding: 0 28px 24px; }
.expertise-visual {
  width: 75%;
  aspect-ratio: 1.5 / 1;
  background: #FCF7F2;
  border: 1px solid #E8E0D0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px;
  overflow: hidden;
  position: relative;
}
.expertise-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.expertise-visual--plain {
  background: transparent;
  border: none;
}
.expertise-visual-img--darken {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}
.expertise-card h3 {
  font-size: 48px;
  margin-bottom: 16px;
}
.expertise-card p {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1.7;
}
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.expertise-tags span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0a0a0a;
  background: #FCF7F2;
  border: 1px solid #E8E0D0;
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
}
.expertise-cta {
  margin-top: 28px;
  display: inline-flex;
}

.cases-title {
  font-size: 34px !important;
  max-width: 1100px !important;
  margin-bottom: 16px !important;
  white-space: nowrap;
}
.cases-sub {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  margin: 0 auto 64px;
  max-width: 720px;
}

/* ============================================
   CASES / RÉALISATIONS (marquee auto-scroll)
   ============================================ */
.cases-marquee {
  overflow: hidden;
  padding: 8px 0 32px;
  mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.cases-track {
  display: flex;
  gap: 24px;
  width: max-content;
}
.cases-track-auto {
  animation: cases-marquee 60s linear infinite;
}
@keyframes cases-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.case-card {
  flex: 0 0 340px;
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #0a0a0a;
}

.case-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #FCF7F2;
  border-bottom: 1px solid #F0E9DA;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8b0a0;
}

.case-body {
  padding: 24px 28px 28px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.case-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  background: #0a0a0a;
  border-radius: 4px;
  padding: 3px 8px;
}
.case-title {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.case-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.55;
  margin-bottom: 22px;
}
.case-metrics {
  display: flex;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #F0E9DA;
}
.case-metric {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.case-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0a0a0a;
  line-height: 1.2;
}
.case-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #5a5a5a;
  line-height: 1.4;
}
.expertise-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #FCF7F2;
  border: 1px solid #E8E0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  margin-bottom: 28px;
}
.expertise-icon svg {
  width: 28px;
  height: 28px;
}
.expertise-list {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #F0E9DA;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.expertise-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #5a5a5a;
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.expertise-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #6366f1;
  font-weight: 600;
}
.expertise-asset .visual-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8b0a0;
}
.card-number {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.card h3 {
  font-family: 'Lora', serif;
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.35;
}
.card p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 56px;
  align-items: center;
}
.about-photo .photo-frame {
  max-width: 230px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: none;
  background: transparent;
}
.about-photo .photo-frame img { border-radius: 50%; }
.about-text h2 {
  font-size: 34px;
  margin-bottom: 24px;
  line-height: 1.25;
}
.about-text p {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.tools {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a8a8a;
}

/* ============================================
   OFFRES
   ============================================ */
.offer-card {
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 8px;
  padding: 36px;
  position: relative;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.offer-card h3 {
  font-family: 'Lora', serif;
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #0a0a0a;
  margin-bottom: 20px;
}
.price-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a8a8a;
  margin-bottom: 20px;
}
.offer-card p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 24px;
}
.checks {
  margin-top: auto;
}
.checks li {
  font-size: 14px;
  color: #5a5a5a;
  padding: 4px 0 4px 24px;
  position: relative;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0a0a0a;
  font-weight: 600;
}
.offer-cta {
  text-align: center;
  margin-top: 56px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #5a5a5a;
}
.offer-cta a {
  color: #0a0a0a;
  text-decoration: underline;
  margin-left: 8px;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.logos-label {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #b8b0a0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.logos-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 96px;
}
.logo-placeholder {
  width: 120px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #c8c0b0;
}
.metrics {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 96px;
  text-align: center;
}
.metric {
  padding: 0 40px;
  border-right: 1px solid #E8E0D0;
}
.metric:last-child { border-right: none; }
.metric-num {
  font-family: 'Lora', serif;
  font-size: 56px;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 12px;
}
.metric-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #8a8a8a;
}
.testimonial {
  padding: 28px;
}
.testimonial .quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial .author {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #0a0a0a;
}
.testimonial .author-loc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a8a8a;
}
.testimonial-note {
  text-align: center;
  margin-top: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #b8b0a0;
}

/* ============================================
   LEAD MAGNET
   ============================================ */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lead-left h2 {
  font-family: 'Lora', serif;
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.lead-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 32px;
}
.lead-checks li {
  font-size: 15px;
  color: #0a0a0a;
}
.lead-card {
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 12px;
  padding: 40px;
}
.lead-card-title {
  font-family: 'Lora', serif;
  font-size: 24px;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.lead-card-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 24px;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.lead-form input {
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 4px;
  padding: 14px 16px;
  color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
}
.lead-form input::placeholder { color: #b8b0a0; }
.lead-form input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.form-success {
  color: #16a34a;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  text-align: center;
  padding: 24px;
}
.rgpd {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8a8a8a;
  text-align: center;
}

/* ============================================
   FAQ
   ============================================ */
.faq { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid #E8E0D0;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #0a0a0a;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: #6366f1; }
.faq-icon {
  font-size: 24px;
  color: #6366f1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: #5a5a5a;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-title {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 48px;
  color: #0a0a0a;
  margin-bottom: 24px;
  line-height: 1.2;
}
#contact .lede {
  font-size: 18px;
  color: #5a5a5a;
  margin-bottom: 40px;
}
.reassurance {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a8a8a;
}

/* Proof metrics */
.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  padding: 20px 0;
}
.proof-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-num {
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1;
}
.proof-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.5;
}

/* Tools marquee */
.tools-marquee {
  overflow: hidden;
  margin-top: 32px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.tools-track {
  display: flex;
  align-items: center;
  gap: 66px;
  width: max-content;
  animation: tools-scroll 60s linear infinite;
  will-change: transform;
}
.tools-track::after {
  content: "";
  display: block;
  width: 66px;
  flex-shrink: 0;
}
.tools-track img {
  height: 36px;
  max-width: 133px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.tools-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@keyframes tools-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Superpower block */
.superpower-block {
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.superpower-left h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.superpower-left p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}
.superpower-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background:
    radial-gradient(ellipse at -65% 70%, rgba(100, 140, 255, 0.90) 0%, transparent 95%),
    radial-gradient(ellipse at 45% 50%, rgba(180, 120, 220, 0.70) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 40%, rgba(255, 130, 50, 0.95) 0%, transparent 65%);
  background-color: #d4935a;
  border-radius: 6px;
  padding: 6px 12px;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.superpower-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.superpower-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #0a0a0a;
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 6px;
  padding: 5px 12px;
}
.superpower-block .btn {
  flex-shrink: 0;
}

/* Deliverables */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.deliverable-card {
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 10px;
  padding: 24px;
}
.deliverable-icon {
  width: 24px;
  height: 24px;
  color: #0a0a0a;
  margin-bottom: 14px;
}
.deliverable-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 8px;
}
.deliverable-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #5a5a5a;
  line-height: 1.65;
}

/* Pillars */
.pillars {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.pillar {
  flex: 1;
  padding: 0 40px;
  text-align: center;
}
.pillar-icon {
  width: 32px;
  height: 32px;
  color: #0a0a0a;
  margin: 0 auto 20px;
}
.pillar h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 10px;
}
.pillar p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
}
.pillar-sep {
  width: 1px;
  align-self: stretch;
  background: #E8E0D0;
  flex-shrink: 0;
}

.green-dot {
  color: #22c55e;
  font-size: 10px;
  margin-right: 2px;
}

/* Contact form glow */
#agents-ia {
  scroll-margin-top: 145px;
}
#catalogue {
  scroll-margin-top: 100px;
}
#contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 75px;
  padding-top: 90px;
}
#contact.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
#contact::before,
#contact::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 90%;
  transform: translateY(-50%);
  z-index: -1;
  filter: blur(80px);
  pointer-events: none;
}
#contact::before {
  left: 12%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(150, 175, 255, 0.60) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 40%, rgba(215, 170, 235, 0.45) 0%, transparent 50%);
  animation: contact-glow-left 4.1s ease-in-out infinite;
}
#contact::after {
  right: 12%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 165, 120, 0.60) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 60%, rgba(245, 140, 100, 0.40) 0%, transparent 50%);
  animation: contact-glow-right 4.1s ease-in-out infinite;
}
@keyframes contact-glow-left {
  0%   { transform: translateY(-50%) translateX(0)   rotate(0deg)   scale(1);    opacity: 0.8;  }
  25%  { transform: translateY(-48%) translateX(4%)  rotate(3deg)   scale(1.04); opacity: 1;    }
  50%  { transform: translateY(-52%) translateX(-2%) rotate(-2deg)  scale(0.98); opacity: 0.85; }
  75%  { transform: translateY(-49%) translateX(1%)  rotate(1.5deg) scale(1.02); opacity: 0.9;  }
  100% { transform: translateY(-50%) translateX(0)   rotate(0deg)   scale(1);    opacity: 0.8;  }
}
@keyframes contact-glow-right {
  0%   { transform: translateY(-50%) translateX(0)    rotate(0deg)    scale(1);    opacity: 0.8;  }
  25%  { transform: translateY(-52%) translateX(-4%)  rotate(-3deg)   scale(1.04); opacity: 1;    }
  50%  { transform: translateY(-48%) translateX(2%)   rotate(2deg)    scale(0.98); opacity: 0.85; }
  75%  { transform: translateY(-51%) translateX(-1%)  rotate(-1.5deg) scale(1.02); opacity: 0.9;  }
  100% { transform: translateY(-50%) translateX(0)    rotate(0deg)    scale(1);    opacity: 0.8;  }
}

/* Contact form */
.contact-form {
  background: #FFFFFF;
  border: 1px solid #E8E0D0;
  border-radius: 12px;
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0a0a0a;
}
.field .req { color: #6366f1; }
.contact-form input,
.contact-form textarea {
  background: #FDFBF8;
  border: 1px solid #E8E0D0;
  border-radius: 6px;
  padding: 12px 14px;
  color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b8b0a0; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.contact-form textarea {
  min-height: 120px;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}
.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.chip {
  background: #FAF7F2;
  border: 1px solid #E8E0D0;
  border-radius: 99px;
  padding: 2px 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #5a5a5a;
  cursor: pointer;
  transition: all 0.2s;
}
.chip:hover {
  border-color: #0a0a0a;
  color: #0a0a0a;
}
.textarea-wrap {
  position: relative;
}
.textarea-wrap textarea {
  position: relative;
  z-index: 1;
  background: transparent;
}
.textarea-chips {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  z-index: 2;
  pointer-events: auto;
}
.textarea-chips.hidden {
  display: none;
}
.contact-form .btn {
  margin-top: 8px;
}
.form-sep {
  border: none;
  border-top: 1px solid #E8E0D0;
  margin: 16px 0 8px;
}
.form-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 4px;
}
.field-help {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8a8a8a;
  line-height: 1.5;
  margin: -2px 0 6px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #FDFBF8;
  border-top: 1px solid #E8E0D0;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a8a8a;
  margin-top: 12px;
  max-width: 320px;
}
.footer-head {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #b8b0a0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
footer ul li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5a5a5a;
  margin-bottom: 10px;
}
footer ul li a { transition: color 0.2s; }
footer ul li a:hover { color: #0a0a0a; }
.footer-bottom {
  border-top: 1px solid #E8E0D0;
  padding: 28px 0;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #b8b0a0;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .header-inner { padding: 0 32px; }
  .section { padding: 80px 0; }

  .hero h1 { font-size: 38px; }
  .section-title { font-size: 36px; }
  .section-title.centered { font-size: 36px; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .presta-block { gap: 48px; }

  .about-grid { grid-template-columns: 20% 80%; gap: 40px; }

  .catalogue-block { max-width: 95%; padding: 36px 32px; }

  .superpower-block { flex-direction: column; align-items: flex-start; }
  .superpower-block .btn { align-self: flex-start; }

  .agent-card { width: 280px; }

  .nav-desktop { gap: 24px; }
  .nav-desktop a { font-size: 13px; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .nav-mobile { padding: 24px 20px 32px; }
  .section { padding: 64px 0; }

  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero::before { width: 100%; height: 60%; filter: blur(60px); }
  .hero-centered { max-width: 100%; }
  .hero h1 { font-size: 30px; margin-bottom: 20px; }
  .hero .lede { font-size: 16px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; width: 100%; margin-bottom: 28px; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .badges { gap: 12px; font-size: 12px; justify-content: center; flex-direction: column; align-items: center; }
  .pill { font-size: 12px; }

  /* Titles */
  .section-title,
  .section-title.centered,
  .lead-left h2 { font-size: 28px; }
  .final-title { font-size: 30px; }
  .about-text h2 { font-size: 26px; }
  .agents-intro { font-size: 24px; }
  .cases-title { font-size: 26px !important; white-space: normal !important; }

  /* Solutions dark */
  .solutions-grid { grid-template-columns: 1fr; gap: 48px; }
  .solutions-col { padding: 0; }
  .solutions-col + .solutions-col {
    border-left: none;
    border-top: 1px solid #1e1e1e;
    padding-top: 48px;
  }
  .solutions-title { font-size: 24px; }

  /* Lead */
  .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .lead-card { padding: 24px; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Pillars */
  .pillars { flex-direction: column; gap: 28px; }
  .pillar { padding: 0; text-align: left; }
  .pillar-sep { width: 100%; height: 1px; }
  .pillar-icon { margin-bottom: 12px; }

  /* Cases */
  .case-card { flex: 0 0 260px; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .about-photo { order: -1; }
  .about-photo .photo-frame { max-width: 150px; }

  /* Metrics */
  .metrics { flex-direction: column; gap: 32px; }
  .metric {
    border-right: none;
    border-bottom: 1px solid #E8E0D0;
    padding: 0 0 24px 0;
  }
  .metric:last-child { border-bottom: none; padding-bottom: 0; }
  .metric-num { font-size: 40px; }

  /* Logos */
  .logos-row { gap: 10px; }
  .logo-placeholder { width: 90px; height: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Buttons */
  .btn { width: 100%; text-align: center; }
  .btn-sm { width: auto; }

  /* Contact */
  .reassurance { flex-direction: column; gap: 8px; align-items: center; }
  .contact-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  #contact { scroll-margin-top: 40px; padding-top: 60px; }
  #contact::before,
  #contact::after { width: 60%; filter: blur(50px); }

  /* Presta blocks */
  .presta-block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
  .presta-block.reverse { grid-template-columns: 1fr; }
  .presta-block.reverse .presta-text { order: 0; }
  .presta-block.reverse .presta-visual { order: 0; }
  .presta-text h3 { font-size: 24px; }
  .presta-text p { font-size: 15px; }
  .presta-cards { margin-top: 40px; margin-bottom: 48px; }
  .visual-icon { font-size: 48px; }

  /* Expertise cards */
  .expertise-card { padding: 0 20px 20px; }
  .expertise-card h3 { font-size: 32px; }
  .expertise-visual { width: 90%; }

  /* Superpower */
  .superpower-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }
  .superpower-block .btn { width: 100%; align-self: stretch; }

  /* Catalogue */
  .catalogue-block { max-width: 100%; padding: 28px 20px; }
  .catalogue-content { grid-template-columns: 1fr; gap: 24px; }
  .catalogue-visual { max-width: 200px; margin: 0 auto; }

  /* Stack */
  .stack-grid { grid-template-columns: 1fr; }

  /* Big intro */
  .big-intro { font-size: 16px; }

  /* Commission (apport affaires) */
  .commission-block { grid-template-columns: 1fr; gap: 32px; }
  .commission-text h2 { font-size: 28px; }
  .commission-num { font-size: 64px; }
  .commission-card { padding: 32px 24px; }

  /* Offers */
  .offer-card { padding: 28px; }
  .price { font-size: 18px; }

  /* Tools marquee */
  .tools-track img { height: 28px; max-width: 100px; }
  .tools-track { gap: 40px; }

  /* Agent cards in carousel */
  .agent-card { width: 260px; padding: 20px; }
  .agent-card h4 { font-size: 16px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .nav-mobile { padding: 20px 16px 28px; }

  .hero { padding: 100px 0 48px; }
  .hero h1 { font-size: 26px; margin-bottom: 16px; }
  .hero .lede { font-size: 15px; margin-bottom: 24px; }
  .hero::before { opacity: 0.7; }

  .section-title,
  .section-title.centered { font-size: 24px; }
  .final-title { font-size: 26px; }
  .agents-intro { font-size: 22px; }

  .presta-text h3 { font-size: 22px; }
  .expertise-card h3 { font-size: 28px; }
  .about-text h2 { font-size: 24px; }

  .case-card { flex: 0 0 240px; }

  .proof-metrics { grid-template-columns: 1fr 1fr; gap: 16px; }
  .proof-num { font-size: 32px; }

  .contact-form { padding: 16px; gap: 14px; }
  .chip { font-size: 10px; padding: 2px 5px; }

  .catalogue-block h3 { font-size: 22px; }

  .commission-num { font-size: 52px; }
}
