/* =====================================================================
   ROCKSO V2 — Layout vertical empilé (style V1) + nouveaux éléments V2
   - Typo Fraunces (serif) + Inter (sans-serif)
   - Palette Rockso officielle
   - Hero avec collage masonry rotaté
   - How it Works : icône / device / icône
   - Bandeau Co-construire pleine largeur
   - Footer vert Rockso (#1f9d6a)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #f6eee4;
  --color-bg-alt: #fdf7f0;
  --color-bg-alt-2: #faf0e1;
  --color-card: #ffffff;
  --color-text: #1f2933;
  --color-text-dark: #0f3a2a;
  --color-muted: #6b7280;
  --color-border: #e8dcc9;

  --accent-green: #1f9d6a;
  --accent-green-dark: #198a5b;
  --accent-green-soft: #e6f5ee;
  --accent-green-light: rgba(31, 157, 106, 0.12);
  --accent-orange: #f97316;
  --accent-orange-soft: #fdece0;
  --accent-pink: #ec4899;
  --accent-pink-soft: #fce4ef;
  --accent-yellow: #facc15;
  --accent-yellow-soft: #fdf3c4;

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

  --shadow-card: 0 4px 14px rgba(15, 30, 20, 0.06);
  --shadow-elev: 0 14px 34px rgba(15, 30, 20, 0.1);
  --shadow-mockup: 0 30px 60px rgba(0, 0, 0, 0.25);

  --grid-max: 1200px;
  --radius-card: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--color-text-dark);
}

.container {
  width: 100%;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header-v2 {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 238, 228, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 196, 172, 0.4);
}

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

.brand-v2 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.brand-v2 .brand-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav-v2 {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
}

.main-nav-v2>a {
  color: #374151;
  transition: color 0.15s;
}

.main-nav-v2>a:hover {
  color: var(--accent-green);
}

.main-nav-v2 .lang-switch {
  font-size: 11px;
  padding: 5px 8px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  opacity: 0.75;
}

.main-nav-v2 .nav-cta {
  background: var(--accent-green);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(31, 157, 106, 0.25);
  transition: background 0.15s, transform 0.15s;
}

.main-nav-v2 .nav-cta:hover {
  background: var(--accent-green-dark);
  transform: translateY(-1px);
}

.nav-toggle-v2 {
  display: none;
  border: none;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.nav-toggle-v2 span {
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 999px;
}

/* =====================================================================
   GENERIC SECTION
   ===================================================================== */
.section-v2 {
  padding: 80px 0;
  background: var(--color-bg);
}

.section-v2.alt {
  background: var(--color-bg-alt);
}

.section-v2.alt-2 {
  background: var(--color-bg-alt-2);
}

.section-title-v2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  text-align: center;
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: -0.025em;
}

.section-lead-v2 {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--color-muted);
  font-size: 16px;
}

.eyebrow-v2 {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.8rem;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
  max-width: 100%;
}

.btn-v2.primary {
  background: var(--color-text-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 58, 42, 0.25);
}

.btn-v2.primary:hover {
  background: #0a2a1e;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(15, 58, 42, 0.35);
}

.btn-v2.green {
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 157, 106, 0.3);
}

.btn-v2.green:hover {
  background: var(--accent-green-dark);
  transform: translateY(-1px);
}

.btn-v2.ghost {
  background: #fff;
  border-color: var(--color-border);
  color: var(--color-text-dark);
}

.btn-v2.ghost:hover {
  background: var(--color-bg-alt);
  border-color: var(--accent-green);
}

.btn-v2.outline {
  background: transparent;
  border-color: var(--color-text-dark);
  color: var(--color-text-dark);
}

.btn-v2.outline:hover {
  background: var(--color-text-dark);
  color: #fff;
}

.btn-v2.white {
  background: #fff;
  color: var(--color-text-dark);
}

.btn-v2.white:hover {
  background: var(--color-bg);
  transform: translateY(-1px);
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero-v2 {
  padding: 64px 0 80px;
  background: var(--color-bg);
}

.hero-v2 {
  overflow: hidden;
}

.hero-v2-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}

.hero-v2-text {
  min-width: 0;
}

.hero-v2-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.02;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0 0 1.4rem;
  letter-spacing: -0.035em;
}

.hero-v2-lead {
  font-size: 1rem;
  color: #4b5563;
  margin: 0 0 2rem;
  max-width: 32rem;
  line-height: 1.6;
}

.hero-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Hero collage masonry rotaté (inclinaison +, coin haut-droit qui monte) ---- */
.hero-collage-wrap {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* déborde jusqu'au bord droit de la page */
  margin-right: calc(50% - 50vw);
  padding-right: 0;
}

.hero-collage {
  position: relative;
  width: 125%;
  height: 660px;
  display: grid;
  grid-template-columns: 1fr 0.95fr 1.05fr;
  gap: 4px;
  transform: translateX(-30px) rotate(8deg);
  transform-origin: center center;
  align-items: start;
}

.hero-collage .col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* effet masonry : décalages verticaux discrets */
.hero-collage .col.left {
  padding-top: 30px;
}

.hero-collage .col.center {
  padding-top: 0;
}

.hero-collage .col.right {
  padding-top: 0;
  transform: translateX(-120px);
}

.hero-collage .tile {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-mockup);
}

.hero-collage .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Photos latérales bien remplies */
.hero-collage .col.left .tile:nth-child(1) {
  height: 260px;
}

.hero-collage .col.left .tile:nth-child(2) {
  height: 300px;
}

.hero-collage .col.right .tile:nth-child(1) {
  height: 340px;
}

.hero-collage .col.right .tile:nth-child(2) {
  height: 280px;
}

.hero-collage .col.center .mock-part {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Le PNG du mockup contient ~15% de padding transparent de chaque côté.
   On agrandit l'image et on la laisse déborder en margin négative pour
   que le téléphone visible vienne toucher les photos voisines. */
.hero-collage .col.center .mock-part img {
  width: 135%;
  margin-left: -17.5%;
  margin-right: -17.5%;
  display: block;
}

.hero-collage .col.center .mock-part {
  overflow: visible;
}

/* Slice haute (on ne voit que le bas du mockup, coupée en haut du cadre) */
.hero-collage .col.center .mock-part.top-slice {
  height: 130px;
  overflow: hidden;
}

.hero-collage .col.center .mock-part.top-slice img {
  width: 135%;
  height: auto;
  margin-left: -17.5%;
  margin-top: -260px;
  object-fit: unset;
}

/* Mockup entier dominant */
.hero-collage .col.center .mock-part.full {
  height: 380px;
  overflow: hidden;
}

.hero-collage .col.center .mock-part.full img {
  width: 135%;
  height: auto;
  margin-left: -17.5%;
  margin-top: -20px;
  object-fit: unset;
}

/* Slice basse (on ne voit que le haut du mockup) */
.hero-collage .col.center .mock-part.bottom-slice {
  height: 130px;
  overflow: hidden;
}

.hero-collage .col.center .mock-part.bottom-slice img {
  width: 135%;
  height: auto;
  margin-left: -17.5%;
  margin-top: 0;
  object-fit: unset;
}

/* =====================================================================
   SCREENS (5 mockups ligne) — repris de V1
   ===================================================================== */
/* Section "À quoi ressemble Rockso" : padding réduit, mockups plus grands */
.section-screens-v2 {
  padding: 48px 0 40px;
}

.section-screens-v2 .section-lead-v2 {
  margin-bottom: 1.25rem;
}

.section-screens-v2 .screens-row {
  margin-top: 1.5rem;
  /* déborde bien au delà du container standard */
  max-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  gap: 2px;
  justify-content: center;
  padding: 0 20px;
}

.screens-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: end;
}

.section-screens-v2 .screen-mockup {
  display: flex;
  justify-content: center;
}

.section-screens-v2 .screen-mockup img {
  width: 162%;
  margin-left: -31%;
  margin-right: -31%;
  max-width: none;
}

.screen-mockup {
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.3s;
}

.screen-mockup:hover {
  transform: translateY(-6px);
}

.screen-mockup img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 25px 40px rgba(15, 58, 42, 0.18));
}

.screens-note {
  text-align: center;
  color: var(--color-muted);
  font-size: 13px;
  margin-top: 2rem;
}

/* =====================================================================
   HOW IT WORKS — icône / titre / contenu
   ===================================================================== */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 24px;
  align-items: start;
}

.how-col {
  text-align: center;
}

.how-col .how-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--accent-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  box-shadow: 0 10px 24px rgba(31, 157, 106, 0.15);
}

.how-col .how-icon svg {
  width: 44px;
  height: 44px;
}

.how-col h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.9rem;
  font-weight: 600;
}

.how-col p {
  font-size: 0.93rem;
  color: var(--color-muted);
  margin: 0;
  max-width: 260px;
  margin-inline: auto;
}

/* Colonne centrale */
.how-col--visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-col--visual h3 {
  margin-bottom: 0.7rem;
}

.how-col--visual .how-device {
  margin-top: 0;
}

.how-col--visual .how-device img {
  width: clamp(520px, 56vw, 920px);
  max-width: none;
  display: block;
  margin-top: -80px;
  margin-bottom: -90px;
  filter: drop-shadow(0 25px 45px rgba(15, 58, 42, 0.2));
}

/* On neutralise l'ancien système flottant */
.how-device {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.how-device-brain {
  display: none;
}

#how-it-works {
  padding-bottom: 36px;
}

/* Colonnes latérales uniquement : on n'affecte pas la colonne centrale */
.how-col:not(.how-col--visual) h3 {
  max-width: 320px;
  margin: 0 auto 0.9rem;
}

.how-col:not(.how-col--visual) p {
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =====================================================================
   AI COACH HERO — chat + voix, athlète + coach
   ===================================================================== */
.ai-coach-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(31, 157, 106, 0.18), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(31, 157, 106, 0.12), transparent 60%),
    linear-gradient(180deg, #0f3a2a 0%, #0a2a1e 100%);
  color: #fff;
}

.ai-coach-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.ai-coach-eyebrow {
  color: #7cdcb0;
  background: rgba(124, 220, 176, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.ai-coach-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 20px 0 1.2rem;
  line-height: 1.05;
  color: #fff;
}

.ai-coach-accent {
  color: #7cdcb0;
  font-style: italic;
}

.ai-coach-lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38rem;
  margin: 0 0 2.5rem;
}

.ai-coach-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 2rem;
}

.ai-coach-pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.2s;
}

.ai-coach-pillar:hover {
  border-color: rgba(124, 220, 176, 0.4);
  transform: translateY(-2px);
}

.pillar-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.pillar-badge.athlete {
  background: rgba(124, 220, 176, 0.18);
  color: #7cdcb0;
}

.pillar-badge.coach {
  background: rgba(250, 204, 21, 0.18);
  color: #facc15;
}

.ai-coach-pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: #fff;
  line-height: 1.25;
}

.ai-coach-pillar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-coach-pillar li {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 18px;
  position: relative;
}

.ai-coach-pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7cdcb0;
}

.ai-coach-pillar li strong {
  color: #fff;
  font-weight: 600;
}

.ai-coach-footnote {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 42rem;
}

/* Visuel : mockup + bulles flottantes */
.ai-coach-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.ai-coach-visual img {
  width: 110%;
  max-width: 480px;
  margin: 0 -5%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
  transform: rotate(-3deg);
  position: relative;
  z-index: 2;
}

.ai-coach-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 220, 176, 0.35) 0%, transparent 65%);
  filter: blur(30px);
  z-index: 1;
}

.ai-coach-bubble {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f3a2a;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.ai-coach-bubble svg {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
}

.bubble-voice {
  top: 18%;
  left: -4%;
  transform: rotate(-6deg);
}

.bubble-chat {
  bottom: 18%;
  right: -2%;
  transform: rotate(4deg);
}

@media (max-width: 1024px) {
  .ai-coach-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ai-coach-pillars {
    grid-template-columns: 1fr;
  }

  .ai-coach-visual {
    min-height: 420px;
  }

  .bubble-voice {
    left: 4%;
  }

  .bubble-chat {
    right: 4%;
  }
}

@media (max-width: 768px) {
  .ai-coach-hero {
    padding: 64px 0;
  }
}

/* =====================================================================
   FEATURES (Ce que Rockso vous apporte) — 3 cards pleine largeur
   ===================================================================== */
/* ---- Section Features avec image de fond (même logique que co-banner) ---- */
.section-features-bg {
  position: relative;
  overflow: hidden;
}

.section-features-bg .container {
  position: relative;
  z-index: 2;
}

.section-features-bg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.section-features-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

.section-features-bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 18, 0.55) 0%, rgba(10, 25, 18, 0.5) 100%);
}

.section-features-bg .eyebrow-v2 {
  color: rgba(255, 255, 255, 0.85);
}

.section-features-bg .section-title-v2 {
  color: #fff;
}

.section-features-bg .section-lead-v2 {
  color: rgba(255, 255, 255, 0.9);
}

/* Cards semi-transparentes pour rester lisibles sur fond photo */
.section-features-bg .feature-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.section-features-bg .feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.section-features-bg .feature-card h3 {
  color: #fff;
}

.section-features-bg .feature-card p {
  color: rgba(255, 255, 255, 0.88);
}

.section-features-bg .feature-card .feature-icon {
  background: rgba(31, 157, 106, 0.25);
  color: #fff;
}

.section-features-bg .cta-band-v2 p {
  color: #fff;
}

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

.feature-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elev);
  border-color: var(--accent-green);
}

.feature-card .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-green-soft);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card .feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 12px;
  font-weight: 600;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-muted);
  margin: 0;
}

.cta-band-v2 {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  text-align: center;
}

.cta-band-v2 p {
  margin: 0;
  font-size: 16px;
  color: var(--color-muted);
}

/* =====================================================================
   PRODUCT HERO — texte + mockup (repris de V1)
   ===================================================================== */
.product-hero {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.product-hero-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin: 0 0 1.2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.product-hero-text p {
  color: #4b5563;
  font-size: 16px;
  margin: 0 0 1rem;
  max-width: 36rem;
}

.product-hero-text .note {
  font-size: 14px;
  color: var(--color-muted);
}

.product-hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-hero-phone img {
  width: 100%;
  max-width: 520px;
  background: transparent;
  border: none;
  transform: rotate(-3deg);
  filter: drop-shadow(0 30px 45px rgba(15, 58, 42, 0.25));
}

/* =====================================================================
   COMPATIBLE DEVICES
   ===================================================================== */
.devices-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.device-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #4b5563;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.15s, transform 0.15s;
  filter: grayscale(0.3);
}

.device-v2:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: grayscale(0);
}

.device-v2 img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.device-v2 .text-logo {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
}

/* =====================================================================
   FOR WHOM — 3 cards with image header
   ===================================================================== */
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.for-whom-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.for-whom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elev);
}

.for-whom-card .fw-image {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.for-whom-card .fw-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.for-whom-card:hover .fw-image img {
  transform: scale(1.05);
}

/* no overlay on for-whom card photos */

.for-whom-card .fw-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.for-whom-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 12px;
  font-weight: 600;
}

.for-whom-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-muted);
  margin: 0 0 20px;
  flex: 1;
}

.for-whom-card .fw-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.for-whom-card .fw-link:hover {
  gap: 10px;
}

/* =====================================================================
   RESEARCH — 2 cols : text+checklist / image placeholder
   ===================================================================== */
.research-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.research-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  font-weight: 600;
}

.research-text p {
  color: #4b5563;
  font-size: 15px;
  margin: 0 0 1rem;
  max-width: 36rem;
}

.research-text .checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.research-text .checklist li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

.research-text .checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-green-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f9d6a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}

.research-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-elev);
  height: 440px;
}

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

/* =====================================================================
   BANDEAU CO-CONSTRUIRE — pleine largeur, image fond, overlay léger
   ===================================================================== */
.co-banner {
  position: relative;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 32px;
}

.co-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.co-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Natation_2 is dark enough — no overlay needed */

.co-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 680px;
}

.co-banner-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin: 0 0 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.co-banner-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.4rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================================
   DATA & PRIVACY — 2 cols : texte+checklist / image
   ===================================================================== */
.data-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.data-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  margin: 0 0 1rem;
  font-weight: 600;
}

.data-text p {
  color: #4b5563;
  font-size: 15px;
  margin: 0 0 1rem;
}

.data-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.data-text ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

.data-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-green-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f9d6a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}

.data-image {
  height: 420px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(15, 58, 42, 0.22));
}

.privacy-link-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.privacy-link-bottom a {
  font-size: 13px;
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-link-bottom a:hover {
  color: var(--accent-green);
}

/* =====================================================================
   FOUNDER
   ===================================================================== */
.founder-card-v2 {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}

.founder-card-v2 .founder-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 5px solid #fff;
  box-shadow: var(--shadow-elev);
  flex-shrink: 0;
}

.founder-card-v2 .founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.5);
  transform-origin: center center;
  display: block;
}

.founder-card-v2 h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin: 0 0 6px;
  font-weight: 600;
}

.founder-card-v2 .founder-role {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 1rem;
}

.founder-card-v2 p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 0.8rem;
}

.founder-card-v2 .founder-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.badge-pill {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-green-soft);
  color: var(--accent-green);
}

.badge-pill.b-orange {
  background: var(--accent-orange-soft);
  color: #c2410c;
}

.badge-pill.b-pink {
  background: var(--accent-pink-soft);
  color: #b8336a;
}

/* =====================================================================
   FAQ — pleine largeur
   ===================================================================== */
.faq-v2 {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item-v2 {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-item-v2.open {
  box-shadow: var(--shadow-card);
  border-color: rgba(31, 157, 106, 0.3);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: left;
  gap: 16px;
}

.faq-q .chev {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-green-soft);
  color: var(--accent-green);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
}

.faq-q .chev::before,
.faq-q .chev::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 8px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.faq-q .chev::before {
  left: 4px;
  transform: rotate(45deg);
}

.faq-q .chev::after {
  right: 4px;
  transform: rotate(-45deg);
}

.faq-item-v2.open .faq-q .chev {
  transform: rotate(180deg);
  background: var(--accent-green);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 26px 22px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.faq-a-inner a {
  color: var(--accent-green);
  font-weight: 600;
}

/* =====================================================================
   BLOC BAS CTA — 50/50 texte+bouton / collage mockups+photos
   ===================================================================== */
.bottom-cta {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.bottom-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bottom-cta-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 1.2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.bottom-cta-text p {
  color: #4b5563;
  font-size: 16px;
  margin: 0 0 1.8rem;
  max-width: 28rem;
}

.bottom-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Bottom collage : photo – mockup – MOCKUP – mockup – photo ---- */
.bottom-collage {
  position: relative;
}

.collage-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 -20px;
}

/* Photos latérales */
.collage-photo {
  flex: 0 0 auto;
  width: 170px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-mockup);
}

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

.collage-photo.left {
  transform: rotate(-3deg);
  margin-right: -70px;
  z-index: 1;
}

.collage-photo.right {
  transform: rotate(3deg);
  margin-left: -80px;
  margin-right: -120px;
  z-index: 1;
}

/* Mockups latéraux (légèrement plus grands que les photos) */
.collage-phone {
  flex: 0 0 auto;
  z-index: 2;
}

.collage-phone img {
  height: auto;
  background: transparent;
  border: none;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
}

.collage-phone.side {
  width: 280px;
}

.collage-phone.side img {
  width: 200%;
  margin-left: 0%;
  margin-right: -100%;
}

/* Mockup central dominant */
.collage-phone.center {
  width: 300px;
  z-index: 3;
  margin: 0 -150px;
}

.collage-phone.center img {
  width: 200%;
  margin-left: 0%;
  margin-right: -300%;
}

/* =====================================================================
   FOOTER — vert Rockso
   ===================================================================== */
.site-footer-v2 {
  background: var(--accent-green);
  color: rgba(255, 255, 255, 0.92);
  padding: 48px 0 28px;
}

.footer-inner-v2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-v2 img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-links-v2 {
  display: flex;
  gap: 28px;
  font-size: 13px;
}

.footer-links-v2 a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links-v2 a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-stores-v2 {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-stores-v2 .store-badge {
  display: inline-flex;
  transition: transform 0.15s, opacity 0.15s;
}

.footer-stores-v2 .store-badge:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.footer-stores-v2 .store-badge img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 11px;
  opacity: 0.8;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-collage-wrap {
    height: 520px;
    justify-content: center;
    margin-right: 0;
    padding-right: 0;
    overflow: visible;
  }

  .hero-collage {
    width: min(92vw, 520px);
    max-width: 520px;
    height: 520px;
    transform: rotate(6deg);
  }

  .hero-collage .col.right {
    transform: none;
  }

  .screens-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .screens-row .screen-mockup:nth-child(n+4) {
    display: none;
  }

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

  .how-device {
    max-width: 560px;
    margin: 0 auto;
  }

  .how-col--visual .how-device img {
    width: min(100%, 560px);
    max-width: 100%;
    margin: -24px auto -28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

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

  .for-whom-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

  .research-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .research-image {
    height: 320px;
  }

  .data-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .data-image {
    height: 340px;
  }

  .founder-card-v2 {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .bottom-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bottom-cta-text {
    text-align: center;
  }

  .bottom-cta-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .bottom-cta-actions {
    justify-content: center;
  }

  .collage-photo {
    width: 130px;
    height: 220px;
  }

  .collage-phone.side {
    width: 140px;
  }

  .collage-phone.center {
    width: 170px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header-inner-v2 {
    height: 68px;
  }

  .brand-v2 .brand-logo {
    height: 30px;
  }

  .main-nav-v2 {
    display: none;
  }

  .nav-toggle-v2 {
    display: flex;
  }

  body.nav-open-v2 .main-nav-v2 {
    display: flex;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    z-index: 90;
    align-items: flex-start;
  }

  .section-v2,
  .product-hero,
  .bottom-cta {
    padding: 56px 0;
  }

  .hero-v2 {
    padding: 36px 0 48px;
  }

  .hero-v2-inner {
    gap: 26px;
  }

  .hero-v2-text h1 {
    font-size: clamp(2rem, 6.6vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    max-width: 100%;
  }

  .hero-v2-lead {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .hero-v2-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-v2-actions .btn-v2 {
    width: 100%;
    white-space: normal;
    min-height: 54px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .hero-collage-wrap {
    height: clamp(330px, 86vw, 430px);
    margin-top: 10px;
  }

  .hero-collage {
    width: min(78vw, 340px);
    height: clamp(330px, 86vw, 430px);
    grid-template-columns: 0.9fr 1fr 0.9fr;
    gap: 3px;
    transform: translateX(0) rotate(3deg);
  }

  .hero-collage .col {
    gap: 3px;
  }

  .hero-collage .col.left {
    padding-top: 28px;
  }

  .hero-collage .col.center {
    padding-top: 0;
  }

  .hero-collage .col.right {
    padding-top: 20px;
    transform: none;
  }

  .hero-collage .tile {
    border-radius: 14px;
  }

  .hero-collage .col.left .tile:nth-child(1) {
    height: clamp(120px, 31vw, 150px);
  }

  .hero-collage .col.left .tile:nth-child(2) {
    height: clamp(140px, 37vw, 185px);
  }

  .hero-collage .col.right .tile:nth-child(1) {
    height: clamp(140px, 36vw, 180px);
  }

  .hero-collage .col.right .tile:nth-child(2) {
    height: clamp(120px, 31vw, 150px);
  }

  .hero-collage .col.center .mock-part.full {
    height: clamp(210px, 54vw, 260px);
    margin-top: 42px;
  }

  .hero-collage .col.center .mock-part.top-slice,
  .hero-collage .col.center .mock-part.bottom-slice {
    display: none;
  }

  .hero-collage .col.center .mock-part.full img {
    width: 138%;
    margin-left: -19%;
    margin-top: -8px;
  }

  .how-grid {
    gap: 44px;
  }

  .how-col .how-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }

  .how-col .how-icon svg {
    width: 36px;
    height: 36px;
  }

  .how-col h3 {
    font-size: 1.16rem;
  }

  .how-col p,
  .how-col:not(.how-col--visual) p {
    max-width: 31rem;
  }

  .how-col--visual .how-device {
    width: 100%;
    max-width: 360px;
  }

  .how-col--visual .how-device img {
    width: 100%;
    max-width: 100%;
    margin: -10px auto -6px;
  }

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

  .screens-row .screen-mockup:nth-child(n+3) {
    display: none;
  }

  .co-banner {
    min-height: 220px;
    padding: 56px 20px;
  }

  .collage-photo {
    display: none;
  }

  .collage-phone.side {
    width: clamp(88px, 27vw, 120px);
  }

  .collage-phone.center {
    width: clamp(120px, 36vw, 160px);
    margin: 0 -88px;
  }

  .collage-row {
    margin: 0;
    overflow: hidden;
  }

  .bottom-cta-actions {
    align-items: stretch;
  }

  .bottom-cta-actions .btn-v2 {
    width: 100%;
    white-space: normal;
    min-height: 54px;
    text-align: center;
  }

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

  .footer-brand-v2 img {
    height: 48px;
  }

  .footer-links-v2 {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
    font-size: 13px;
  }

  .footer-links-v2 a {
    flex: 0 1 auto;
  }

  .footer-stores-v2 {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-stores-v2 .store-badge img {
    height: 38px;
  }
}

@media (max-width: 480px) {
  .hero-v2-text h1 {
    font-size: clamp(1.72rem, 7vw, 1.95rem);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .hero-v2-lead {
    font-size: 0.94rem;
  }

  .hero-collage-wrap {
    height: clamp(300px, 82vw, 360px);
  }

  .hero-collage {
    width: min(72vw, 300px);
    height: clamp(300px, 82vw, 360px);
  }

  .hero-collage .col.left {
    padding-top: 24px;
  }

  .hero-collage .col.right {
    padding-top: 18px;
  }

  .hero-collage .col.left .tile:nth-child(1) {
    height: clamp(106px, 28vw, 128px);
  }

  .hero-collage .col.left .tile:nth-child(2) {
    height: clamp(126px, 33vw, 156px);
  }

  .hero-collage .col.right .tile:nth-child(1) {
    height: clamp(126px, 33vw, 156px);
  }

  .hero-collage .col.right .tile:nth-child(2) {
    height: clamp(106px, 28vw, 128px);
  }

  .hero-collage .col.center .mock-part.full {
    height: clamp(186px, 49vw, 228px);
    margin-top: 38px;
  }

  .hero-collage .col.center .mock-part.full img {
    width: 132%;
    margin-left: -16%;
  }
}

/* =====================================================================
   SECTION "PRODUCT / SCREENS HERO"
   Image pleine largeur, sans zoom ni crop
   La hauteur suit le ratio réel de l'image
   Le contenu est superposé par-dessus
   ===================================================================== */

.section-screens-hero {
  /* Réglages faciles à ajuster */
  --hero-content-top: 0px;
  --hero-content-bottom: 0px;
  --hero-eyebrow-gap: 0.45rem;
  --hero-title-gap: 0.7rem;
  --hero-lead-gap: 1.25rem;
  --hero-note-gap: 1rem;
  --hero-lead-max-width: 980px;
  --hero-text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);

  position: relative;
  display: grid;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

/* L'image et le contenu se superposent */
.section-screens-hero-media,
.section-screens-hero-overlay {
  grid-area: 1 / 1;
}

/* Image : pleine largeur, hauteur auto => pas de zoom */
.section-screens-hero-media {
  position: relative;
  z-index: 1;
}

.section-screens-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

/* Overlay très léger — juste de quoi poser le texte sur l'image */
.section-screens-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 18, 0.22) 0%, rgba(10, 25, 18, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Contenu posé au-dessus de l'image */
.section-screens-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-screens-hero-overlay .container {
  width: 100%;
  position: relative;
  padding-top: var(--hero-content-top);
  padding-bottom: var(--hero-content-bottom);
}

/* Texte */
.section-screens-hero .eyebrow-v2 {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: var(--hero-eyebrow-gap);
  text-shadow: var(--hero-text-shadow);
}

.section-screens-hero .section-title-v2 {
  color: #fff;
  margin-bottom: var(--hero-title-gap);
  text-shadow: var(--hero-text-shadow);
}

.section-screens-hero .section-lead-v2 {
  color: rgba(255, 255, 255, 0.92);
  max-width: var(--hero-lead-max-width);
  margin: 0 auto var(--hero-lead-gap);
  text-shadow: var(--hero-text-shadow);
}

.section-screens-hero .screens-note {
  color: rgba(255, 255, 255, 0.84);
  margin-top: var(--hero-note-gap);
  margin-bottom: 0;
  text-shadow: var(--hero-text-shadow);
}

/* Rangée de mockups */
.section-screens-hero .screens-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 2px;

  width: 85vw;
  max-width: 85vw;

  /* centre la row au milieu du viewport, même si le .container est plus étroit */
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  margin: 0.8rem 0 0;
  padding: 0;

  justify-content: center;
}

.section-screens-hero .screen-mockup {
  display: flex;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.3s;
}

.section-screens-hero .screen-mockup:hover {
  transform: translateY(-6px);
}

.section-screens-hero .screen-mockup img {
  width: 162%;
  max-width: none;
  margin-left: -31%;
  margin-right: -31%;
  display: block;
  filter: drop-shadow(0 25px 40px rgba(15, 58, 42, 0.18));
}

/* =====================================================================
   Responsive
   ===================================================================== */

@media (max-width: 1100px) {
  .section-screens-hero {
    --hero-content-top: 16px;
    --hero-content-bottom: 8px;
    --hero-lead-max-width: 1000px;
  }

  .section-screens-hero .screen-mockup img {
    width: 150%;
    margin-left: -25%;
    margin-right: -25%;
  }
}

@media (max-width: 900px) {
  .section-screens-hero {
    --hero-content-top: 20px;
    --hero-content-bottom: 16px;
    --hero-lead-max-width: 800px;
  }

  .section-screens-hero .screens-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 16px;
  }

  .section-screens-hero .screen-mockup img {
    width: 132%;
    margin-left: -16%;
    margin-right: -16%;
  }
}

@media (max-width: 640px) {
  .section-screens-hero {
    --hero-content-top: 18px;
    --hero-content-bottom: 14px;
    --hero-eyebrow-gap: 0.35rem;
    --hero-title-gap: 0.55rem;
    --hero-lead-gap: 1rem;
    --hero-note-gap: 0.85rem;
    --hero-lead-max-width: 98%;
  }

  .section-screens-hero-overlay {
    align-items: flex-start;
  }

  .section-screens-hero .section-title-v2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .section-screens-hero .section-lead-v2 {
    font-size: 15px;
  }

  .section-screens-hero .screens-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 0.8rem;
    padding: 0 12px;
  }

  .section-screens-hero .screen-mockup img {
    width: 118%;
    margin-left: -9%;
    margin-right: -9%;
  }

  .section-screens-hero .screens-note {
    font-size: 12px;
  }
}

.field-band {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.field-band-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.field-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.field-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 28, 24, 0.72) 0%,
      rgba(10, 32, 28, 0.58) 35%,
      rgba(10, 32, 28, 0.62) 100%);
}

.field-band-inner {
  position: relative;
  z-index: 2;
}

.manifesto-band {
  padding: 110px 0 90px;
}

.manifesto-band-text {
  margin: 0 auto;
  max-width: 1580px;
  text-align: center;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.co-banner {
  padding: 0 32px 110px;
}

.co-banner-content {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 36px;
}

.co-banner-content h3 {
  color: #fff;
  margin-bottom: 12px;
}

.co-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 24px;
  max-width: 640px;
}
