/* ===================================================
   WEBFACTORY — DESIGN SYSTEM
   Refined minimalism — black & white, premium
   =================================================== */

/* Fonts: Geist for display, Inter for body (we use Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

/* ---------- Tokens ---------- */
:root {
  /* Couleurs */
  --bg: #f7f6f3;
  --bg-card: #ffffff;
  --bg-soft: #efede8;
  --ink: #0a0a0a;
  --ink-soft: #2c2c2c;
  --ink-muted: #6b6b6b;
  --ink-subtle: #9a9a9a;
  --line: rgba(10, 10, 10, 0.08);
  --line-strong: rgba(10, 10, 10, 0.15);
  --shadow-sm: 0 1px 3px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 4px 24px rgba(10, 10, 10, 0.06);
  --shadow-lg: 0 24px 48px -12px rgba(10, 10, 10, 0.08);
  --shadow-xl: 0 32px 64px -16px rgba(10, 10, 10, 0.12);

  /* Typo */
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  /* Espacement */
  --container: 1200px;
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2rem;
  --gap-xl: 4rem;
  --gap-2xl: 6rem;
  --gap-3xl: 9rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.h-display em {
  font-style: italic;
  font-weight: 400;
}

.h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.h3 {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 500;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

section {
  padding: var(--gap-2xl) 0;
}

@media (max-width: 768px) {
  section { padding: var(--gap-xl) 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.18);
}

.btn-ghost {
  background: var(--bg-card);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: #fff;
  border-color: var(--line-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover .btn-arrow {
  transform: translateX(2px);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: var(--shadow-md);
  transition: top 0.3s var(--ease-out);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo {
  height: 32px;
  width: auto;
  display: block;
}

@media (max-width: 480px) {
  .nav-logo { height: 26px; }
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
}

.nav-cta:hover {
  background: var(--ink-soft);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 880px) {
  .nav { padding: 0.5rem 0.5rem 0.5rem 1rem; gap: 1rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Background globe/chantier côté droit */
.hero-bg-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  opacity: 0.9;
}

/* Layout 2 colonnes */
.hero-split-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 2rem;
}

/* Colonne gauche */
.hero-content .hero-badge {
  display: inline-flex;
  margin-bottom: 2rem;
}

.hero-content .hero-title {
  margin: 0 0 1.5rem;
  max-width: 100%;
  text-align: left;
  font-size: clamp(2.5rem, 3.8vw, 4rem);
  line-height: 1.06;
}

.hero-content .hero-sub {
  margin: 0 0 2rem;
  text-align: left;
  max-width: 52ch;
}

.hero-content .hero-cta {
  justify-content: flex-start;
  margin-bottom: 0;
}

/* Colonne droite — même frame que l'ancien mockup */
.hero-demo .hero-mockup {
  max-width: 100%;
  margin: 0;
}

/* La vidéo remplace le mockup-content */
.hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

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

/* Bandeau stats */
.hero-stats-bar {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
  margin-top: 2rem;
}

.hero-stats {
  display: flex;
  align-items: center;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  padding: 0.5rem 1.25rem;
}

.hero-stat-sep {
  width: 1px;
  height: 2.5rem;
  background: var(--line);
  flex-shrink: 0;
}

.hero-stat-icon {
  flex-shrink: 0;
  color: var(--ink-muted);
}

.hero-stat-value {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-muted);
  line-height: 1.3;
}

/* ---- Responsive tablette ---- */
@media (max-width: 1024px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    gap: 2rem;
  }

  .hero-bg-wrap { opacity: 0.25; width: 80%; }

  .hero-content .hero-title { text-align: left; }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 0 0 50%;
    padding: 0.75rem 1rem;
  }

  .hero-stat-sep { display: none; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .hero-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---- Responsive mobile ---- */
@media (max-width: 640px) {
  .hero-split-inner {
    padding-top: 5.5rem;
    gap: 1.75rem;
  }

  .hero-bg-wrap { display: none; }

  .hero-content .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content .hero-cta .btn {
    justify-content: center;
  }

  .hero-stats-bar { margin-top: 1.25rem; }

  .hero-stat {
    flex: 0 0 50%;
    padding: 0.625rem 0.75rem;
    gap: 0.5rem;
  }

  .hero-stat-value { font-size: 0.75rem; }
  .hero-stat-label { font-size: 0.6875rem; }

  .hero-stat-icon { width: 15px; height: 15px; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(10, 10, 10, 0.04), transparent 60%);
  pointer-events: none;
}



.mockup-frame {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: rotateX(2deg);
  transform-origin: center bottom;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
}

.mockup-url {
  margin-left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}

.mockup-content {
  padding: 1.5rem;
  min-height: 360px;
  position: relative;
  background: linear-gradient(to bottom, #fafaf8, #fff);
}

/* ---------- BANDEAU CONFIANCE ---------- */
.trust {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.trust-label {
  text-align: center;
  margin-bottom: 1.75rem;
}

.trust-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.quote {
  text-align: center;
}

.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.quote-author {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

/* ---------- SECTION TITLES ---------- */
.section-head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 1rem;
}

.section-head .h1 {
  margin-bottom: 1.25rem;
}

/* ---------- PROBLEME — section avec gros chiffres ---------- */
.problem {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-xl);
  margin: 2rem 1.5rem;
  padding: 5rem 2rem;
}

.problem .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.problem .h1 {
  color: var(--bg);
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 18ch;
}

.problem .h1 em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  gap: 0;
}

@media (max-width: 768px) {
  .problem-stats { grid-template-columns: repeat(2, 1fr); }
  .problem { margin: 1rem; padding: 3rem 1.5rem; }
}

.stat {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child { border-right: none; }

@media (max-width: 768px) {
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 2rem; }
  .stat:nth-child(n+3) { padding-top: 2rem; }
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.problem-source {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

/* ---------- SOLUTIONS ---------- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .solutions-grid { grid-template-columns: 1fr; }
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.solution-mockup {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  height: 200px;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.solution-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  width: fit-content;
}

.solution-card .h2 {
  margin-bottom: 0.875rem;
  font-size: 1.375rem;
}

.solution-desc {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.solution-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.solution-features li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  padding: 0.375rem 0;
}

.solution-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230a0a0a' stroke-width='1.6'%3E%3Cpath d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.solution-pricing {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.solution-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.solution-price-detail {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

.solution-card .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- PROCESSUS ---------- */
.process {
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  margin: 2rem 1.5rem;
  padding: 5rem 2rem;
}

@media (max-width: 768px) {
  .process { margin: 1rem; padding: 3rem 1.5rem; }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink-subtle);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ---------- SECURITE ---------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .security-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .security-grid { grid-template-columns: 1fr; }
}

.security-item {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.security-item-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  color: var(--ink);
}

.security-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.security-item p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.deployment-box {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.deployment-box h2 {
  color: var(--bg);
  margin-bottom: 0.75rem;
}

.deployment-box p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
}

.deployment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: left;
}

@media (max-width: 640px) {
  .deployment-options { grid-template-columns: 1fr; }
}

.deployment-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.deployment-option h3 {
  color: var(--bg);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.deployment-option p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--font-sans);
  transition: color 0.2s;
}

.faq-q:hover { color: var(--ink-soft); }

.faq-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s var(--ease-out);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* ---------- CONTACT / RDV ---------- */
.contact {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-xl);
  margin: 2rem 1.5rem;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact { margin: 1rem; padding: 3rem 1.5rem; }
}

.contact .eyebrow { color: rgba(255, 255, 255, 0.55); }
.contact .h1 { color: var(--bg); }
.contact .lead { color: rgba(255, 255, 255, 0.7); margin: 0 auto; }

.rdv-form {
  max-width: 720px;
  margin: 3rem auto 0;
  background: var(--bg-card);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

@media (max-width: 640px) {
  .rdv-form { padding: 1.75rem; }
}

.form-step-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.calendar {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.calendar-month {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.calendar-nav {
  display: flex;
  gap: 0.5rem;
}

.calendar-nav button {
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.calendar-nav button:hover {
  background: var(--bg);
  border-color: var(--line-strong);
}

.calendar-nav button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day-name {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  padding: 0.5rem 0;
}

.calendar-day {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calendar-day:hover:not(:disabled) {
  background: var(--bg-soft);
  border-color: var(--line-strong);
}

.calendar-day:disabled {
  color: var(--ink-subtle);
  cursor: not-allowed;
  background: transparent;
  opacity: 0.4;
}

.calendar-day.empty { background: transparent; cursor: default; }

.calendar-day.selected {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.calendar-day.today {
  font-weight: 600;
  position: relative;
}

.calendar-day.today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}

.timeslots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.timeslot {
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.timeslot:hover {
  background: var(--bg-soft);
  border-color: var(--line-strong);
}

.timeslot.selected {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .form-fields { grid-template-columns: 1fr; }
}

.form-field { display: flex; flex-direction: column; }

.form-field.full-width { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 0.375rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.75rem 0.875rem;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: all 0.2s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  background: var(--bg-card);
  border-color: var(--ink);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-summary {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  display: none;
}

.form-summary.active { display: block; }

.form-summary strong { color: var(--ink); font-weight: 500; }

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.form-success.active { display: block; }

.form-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 32ch;
  line-height: 1.4;
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }

.footer-col a {
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

/* ---------- ANIMATIONS REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-soft), transform 0.8s var(--ease-out-soft);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-soft), transform 0.6s var(--ease-out-soft);
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 240ms; }

.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.legal-page .legal-version {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.legal-page h2 .legal-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-subtle);
  font-weight: 400;
  font-style: italic;
}

.legal-page h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.legal-page li { margin-bottom: 0.5rem; }

.legal-page strong { color: var(--ink); font-weight: 600; }

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-home:hover { color: var(--ink); }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-xl);
  z-index: 50;
  transform: translateY(120%);
  transition: transform 0.6s var(--ease-out);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--ink);
  transition: all 0.2s;
}

.cookie-btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

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

/* ===================================================
   FIXES — Menu mobile + corrections
   =================================================== */

/* Menu mobile : caché par défaut */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* Visible uniquement si classe .open ajoutée par JS */
.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1;
  padding: 0.5rem;
}

.nav-mobile-menu a {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: -0.02em;
}

.nav-mobile-menu a:hover { opacity: 0.5; }

/* Burger visible uniquement sur mobile */
@media (min-width: 881px) {
  .nav-burger { display: none !important; }
  .nav-mobile-menu { display: none !important; }
}

/* ===================================================
   HERO SPLIT — fixes mobile
   =================================================== */

/* Solutions : 1 colonne sur mobile */
@media (max-width: 700px) {
  .solutions-grid {
    grid-template-columns: 1fr !important;
  }
  .solution-mockup {
    height: 170px;
  }
}

@media (max-width: 1024px) and (min-width: 701px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Nav ne doit pas déborder */
@media (max-width: 880px) {
  .nav {
    left: 0.75rem;
    right: 0.75rem;
    top: 0.75rem;
    transform: none;
    width: auto;
  }
}
/* ===================================================
   PATCH HERO DEMO — vidéo sous le bandeau stats
   =================================================== */
.hero {
  min-height: 100vh;
  background: #f7f6f3;
}

.hero-split-inner {
  grid-template-columns: minmax(0, 0.82fr);
  max-width: 1200px;
  padding-bottom: 1.5rem;
}

.hero-content {
  max-width: 760px;
}

.hero-demo-section {
  position: relative;
  z-index: 2;
  padding: 2.75rem 0 4.5rem;
}

.hero-demo {
  max-width: 1180px;
  margin: 0 auto;
}

.hero-demo .hero-mockup {
  width: 100%;
  margin: 0 auto;
}

.hero-demo .mockup-frame {
  border-radius: 24px;
  transform: none;
  background: #ffffff;
}

.hero-video-wrap {
  aspect-ratio: 2044 / 1080;
  background: #f7f6f3;
}

.hero-video {
  object-fit: contain;
  background: #f7f6f3;
}

@media (max-width: 1024px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-demo-section {
    padding: 2rem 0 3.5rem;
  }
}

@media (max-width: 640px) {
  .hero-bg-wrap {
    display: block !important;
    width: 150%;
    height: 62%;
    top: 5rem;
    right: -82%;
    opacity: 0.26;
  }

  .hero-bg-img {
    object-fit: contain;
    object-position: right top;
    opacity: 1;
  }

  .hero-split-inner {
    padding-top: 5.75rem;
    padding-bottom: 0.75rem;
  }

  .hero-demo-section {
    padding: 1.5rem 0 3rem;
  }

  .hero-demo .mockup-frame {
    border-radius: 18px;
  }

  .mockup-bar {
    min-height: 38px;
  }

  .mockup-url {
    max-width: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ===================================================
   PATCH HERO BACKGROUND — globe/chantier calé dans le haut du hero
   Le visuel ne descend plus sous la stat bar et reste visible sur mobile.
   =================================================== */
.hero {
  position: relative;
  background: #f7f6f3;
  overflow: hidden;
}

.hero-bg-wrap {
  display: block !important;
  position: absolute;
  top: 4.25rem;
  right: -2vw;
  width: min(68vw, 1080px);
  height: clamp(500px, 62vh, 675px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.82;
  display: block;
}

.hero-split-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(560px, 72vh, 720px);
  display: grid;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 2rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-stats-bar {
  position: relative;
  z-index: 4;
  margin-top: 0;
}

.hero-demo-section {
  position: relative;
  z-index: 2;
  background: #f7f6f3;
}

@media (max-width: 1100px) {
  .hero-bg-wrap {
    right: -18vw;
    width: 82vw;
    height: clamp(480px, 58vh, 620px);
    opacity: 0.72;
  }

  .hero-split-inner {
    min-height: clamp(560px, 68vh, 680px);
  }
}

@media (max-width: 760px) {
  .hero-bg-wrap {
    display: block !important;
    top: 4.75rem;
    right: -40vw;
    width: 148vw;
    height: 460px;
    opacity: 0.30;
  }

  .hero-bg-img {
    object-fit: cover;
    object-position: right center;
    opacity: 1;
  }

  .hero-split-inner {
    min-height: auto;
    padding-top: 6.25rem;
    padding-bottom: 3rem;
  }

  .hero-content .hero-title,
  .hero-content .hero-sub {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .hero-bg-wrap {
    right: -54vw;
    width: 172vw;
    height: 430px;
    opacity: 0.26;
  }
}

/* ===================================================
   PATCH V4 — Hero BG plein, mobile, badge & stat bar
   =================================================== */
.hero {
  background: #f7f6f3 !important;
}

.hero::before {
  display: none !important;
}

.hero-bg-wrap {
  top: 5.8rem !important;
  right: max(-2.5vw, -42px) !important;
  width: min(58vw, 1030px) !important;
  height: clamp(520px, 66vh, 735px) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  overflow: visible !important;
}

.hero-bg-img {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  object-fit: contain !important;
  object-position: right center !important;
  background: transparent !important;
}

.hero-split-inner {
  min-height: clamp(590px, 74vh, 760px) !important;
  padding-top: 7.25rem !important;
  padding-bottom: 1.35rem !important;
}

.hero-content .hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  padding: 0.52rem 0.86rem !important;
  margin-bottom: 2.15rem !important;
  border: 1px solid rgba(15, 15, 15, 0.09) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.58) !important;
  box-shadow: 0 10px 26px rgba(20, 18, 15, 0.045) !important;
  color: rgba(20, 20, 20, 0.72) !important;
  font-size: 0.86rem !important;
  letter-spacing: 0.01em !important;
  backdrop-filter: blur(8px) !important;
}

.hero-badge-dot {
  width: 5px !important;
  height: 5px !important;
  border-radius: 999px !important;
  background: rgba(88, 88, 88, 0.72) !important;
  flex: 0 0 auto !important;
}

.hero-content .hero-title {
  max-width: 660px !important;
}

.hero-content .hero-sub {
  max-width: 610px !important;
}

.hero-stats-bar {
  background: rgba(247, 246, 243, 0.92) !important;
  border-top: 1px solid rgba(20, 20, 20, 0.055) !important;
  border-bottom: 1px solid rgba(20, 20, 20, 0.04) !important;
  box-shadow: 0 -12px 40px rgba(20, 18, 15, 0.025) !important;
  padding: 1.05rem 0 !important;
  backdrop-filter: blur(10px) !important;
}

.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: 0 !important;
}

.hero-stat {
  min-width: 0 !important;
  padding: 0.3rem 1.35rem !important;
  gap: 0.8rem !important;
}

.hero-stat-sep {
  display: block !important;
  width: 1px !important;
  height: 2.6rem !important;
  background: rgba(20, 20, 20, 0.075) !important;
  justify-self: center !important;
}

.hero-stat-icon {
  width: 19px !important;
  height: 19px !important;
  color: rgba(20, 20, 20, 0.45) !important;
}

.hero-stat-value {
  font-size: 0.82rem !important;
  font-weight: 650 !important;
  letter-spacing: -0.01em !important;
}

.hero-stat-label {
  font-size: 0.75rem !important;
  color: rgba(20, 20, 20, 0.48) !important;
  margin-top: 0.1rem !important;
}

.hero-demo-section {
  background: #f7f6f3 !important;
  padding-top: 2.45rem !important;
}

.hero-video-wrap {
  aspect-ratio: 2044 / 1080 !important;
}

.hero-video {
  object-fit: contain !important;
}

@media (max-width: 1100px) {
  .hero-bg-wrap {
    right: -16vw !important;
    width: 78vw !important;
    height: 610px !important;
  }

  .hero-split-inner {
    min-height: 690px !important;
  }

  .hero-content .hero-title {
    max-width: 610px !important;
  }
}

@media (max-width: 760px) {
  .hero {
    overflow: hidden !important;
  }

  .hero-bg-wrap {
    display: block !important;
    top: 5.15rem !important;
    right: -76vw !important;
    width: 190vw !important;
    height: 460px !important;
    opacity: 1 !important;
    z-index: 0 !important;
  }

  .hero-bg-img {
    object-fit: contain !important;
    object-position: right top !important;
    opacity: 1 !important;
  }

  .hero-split-inner {
    display: block !important;
    min-height: auto !important;
    padding-top: 6.4rem !important;
    padding-bottom: 2.35rem !important;
  }

  .hero-content {
    max-width: 100% !important;
  }

  .hero-content .hero-badge {
    font-size: 0.78rem !important;
    padding: 0.46rem 0.72rem !important;
    margin-bottom: 1.75rem !important;
    max-width: calc(100vw - 2rem) !important;
  }

  .hero-content .hero-title {
    max-width: 94% !important;
    font-size: clamp(3rem, 15vw, 4.55rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em !important;
    margin-bottom: 1.35rem !important;
  }

  .hero-content .hero-sub {
    max-width: 92% !important;
    font-size: 1.03rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.65rem !important;
  }

  .hero-content .hero-cta {
    gap: 0.75rem !important;
  }

  .hero-stats-bar {
    padding: 0.95rem 0 !important;
    background: #f7f6f3 !important;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 0 !important;
    border-top: 1px solid rgba(20,20,20,0.06) !important;
    border-bottom: 1px solid rgba(20,20,20,0.04) !important;
  }

  .hero-stat {
    min-height: 70px !important;
    padding: 0.82rem 0.75rem !important;
    border: 0 !important;
  }

  .hero-stat:nth-of-type(1),
  .hero-stat:nth-of-type(3) {
    border-right: 1px solid rgba(20,20,20,0.065) !important;
  }

  .hero-stat:nth-of-type(1),
  .hero-stat:nth-of-type(2) {
    border-bottom: 1px solid rgba(20,20,20,0.065) !important;
  }

  .hero-stat-sep {
    display: none !important;
  }

  .hero-stat-icon {
    width: 17px !important;
    height: 17px !important;
  }

  .hero-stat-value {
    font-size: 0.74rem !important;
  }

  .hero-stat-label {
    font-size: 0.67rem !important;
  }

  .hero-demo-section {
    padding: 1.55rem 0 3rem !important;
  }
}

@media (max-width: 430px) {
  .hero-bg-wrap {
    top: 5.9rem !important;
    right: -92vw !important;
    width: 220vw !important;
    height: 420px !important;
  }

  .hero-content .hero-title {
    font-size: clamp(2.85rem, 16vw, 4.25rem) !important;
  }
}

/* ===================================================
   PATCH FINAL HERO — alignement maquette + stats + vidéo
   =================================================== */
.hero {
  position: relative !important;
  min-height: auto !important;
  background: #f7f6f3 !important;
  overflow: hidden !important;
}

.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
}

.hero-split-inner {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  min-height: clamp(610px, 76vh, 770px) !important;
  padding-top: clamp(7.6rem, 11vh, 9.4rem) !important;
  padding-bottom: 2rem !important;
}

.hero-content {
  position: relative !important;
  z-index: 3 !important;
  max-width: 690px !important;
}

.hero-content .hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  width: fit-content !important;
  padding: 0.55rem 0.95rem !important;
  margin: 0 0 2rem 0 !important;
  border: 1px solid rgba(9, 9, 9, 0.09) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: rgba(10, 10, 10, 0.72) !important;
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.045) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-content .hero-title {
  max-width: 650px !important;
  margin-bottom: 1.45rem !important;
  font-size: clamp(4.25rem, 6.15vw, 6.85rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.055em !important;
}

.hero-content .hero-sub {
  max-width: 610px !important;
  margin-bottom: 2.15rem !important;
  font-size: clamp(1.02rem, 1.12vw, 1.18rem) !important;
  line-height: 1.55 !important;
}

.hero-content .hero-cta {
  display: flex !important;
  align-items: center !important;
  gap: 0.95rem !important;
}

.hero-bg-wrap {
  display: block !important;
  position: absolute !important;
  z-index: 1 !important;
  top: 4.75rem !important;
  right: -10.5vw !important;
  width: min(78vw, 1320px) !important;
  height: clamp(560px, 74vh, 790px) !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  transform: none !important;
  pointer-events: none !important;
  overflow: visible !important;
}

.hero-bg-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: right center !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  background: transparent !important;
}

.hero-stats-bar {
  position: relative !important;
  z-index: 5 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #f7f6f3 !important;
  border-top: 1px solid rgba(10,10,10,0.055) !important;
  border-bottom: 1px solid rgba(10,10,10,0.045) !important;
  box-shadow: 0 -18px 38px rgba(10,10,10,0.025) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-stats {
  display: flex !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  gap: 0 !important;
  width: 100% !important;
  min-height: 86px !important;
}

.hero-stat {
  flex: 1 1 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.8rem !important;
  min-width: 0 !important;
  padding: 1.05rem 1.15rem !important;
  border: 0 !important;
}

.hero-stat-sep {
  display: block !important;
  flex: 0 0 1px !important;
  width: 1px !important;
  height: 44px !important;
  margin: auto 0 !important;
  background: rgba(10,10,10,0.075) !important;
}

.hero-stat-icon {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  color: rgba(10,10,10,0.45) !important;
}

.hero-stat-value {
  display: block !important;
  font-size: 0.86rem !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  letter-spacing: -0.015em !important;
  color: #0a0a0a !important;
}

.hero-stat-label {
  display: block !important;
  margin-top: 0.18rem !important;
  font-size: 0.75rem !important;
  line-height: 1.22 !important;
  color: rgba(10,10,10,0.46) !important;
}

.hero-demo-section {
  position: relative !important;
  z-index: 2 !important;
  background: #f7f6f3 !important;
  padding: 2.15rem 0 4.25rem !important;
}

.hero-demo {
  max-width: 980px !important;
  width: min(100%, 980px) !important;
  margin: 0 auto !important;
}

.hero-demo .mockup-frame {
  border-radius: 22px !important;
  transform: none !important;
  box-shadow: 0 28px 70px rgba(10,10,10,0.10) !important;
}

.hero-video-wrap {
  aspect-ratio: 2044 / 1080 !important;
  background: #f7f6f3 !important;
}

.hero-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #f7f6f3 !important;
}

@media (max-width: 1180px) {
  .hero-content .hero-title {
    font-size: clamp(3.85rem, 6.35vw, 5.8rem) !important;
    max-width: 590px !important;
  }

  .hero-content .hero-sub {
    max-width: 560px !important;
  }

  .hero-bg-wrap {
    right: -19vw !important;
    width: 92vw !important;
    top: 5.2rem !important;
  }
}

@media (max-width: 860px) {
  .hero-split-inner {
    min-height: 700px !important;
    padding-top: 7rem !important;
    padding-bottom: 2.4rem !important;
  }

  .hero-content .hero-title {
    font-size: clamp(3.55rem, 12vw, 5.35rem) !important;
    max-width: 95% !important;
  }

  .hero-bg-wrap {
    top: 8.6rem !important;
    right: -82vw !important;
    width: 205vw !important;
    height: 560px !important;
    opacity: 1 !important;
  }

  .hero-bg-img {
    object-position: right center !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    min-height: 0 !important;
  }

  .hero-stat-sep {
    display: none !important;
  }

  .hero-stat {
    justify-content: flex-start !important;
    min-height: 76px !important;
    padding: 0.95rem 1rem !important;
  }

  .hero-stats > .hero-stat:nth-child(1),
  .hero-stats > .hero-stat:nth-child(5) {
    border-right: 1px solid rgba(10,10,10,0.065) !important;
  }

  .hero-stats > .hero-stat:nth-child(1),
  .hero-stats > .hero-stat:nth-child(3) {
    border-bottom: 1px solid rgba(10,10,10,0.065) !important;
  }

  .hero-demo {
    max-width: 92vw !important;
  }
}

@media (max-width: 520px) {
  .hero-split-inner {
    min-height: 675px !important;
    padding-top: 6.45rem !important;
    padding-bottom: 2.1rem !important;
  }

  .hero-content .hero-badge {
    font-size: 0.76rem !important;
    padding: 0.48rem 0.72rem !important;
    margin-bottom: 1.6rem !important;
    max-width: calc(100vw - 2.5rem) !important;
  }

  .hero-content .hero-title {
    font-size: clamp(3rem, 15vw, 4.4rem) !important;
    line-height: 0.96 !important;
    max-width: 96% !important;
  }

  .hero-content .hero-sub {
    max-width: 95% !important;
    font-size: 0.98rem !important;
  }

  .hero-content .hero-cta {
    align-items: stretch !important;
  }

  .hero-content .hero-cta .btn {
    justify-content: center !important;
  }

  .hero-bg-wrap {
    top: 11.3rem !important;
    right: -122vw !important;
    width: 285vw !important;
    height: 455px !important;
  }

  .hero-stat {
    min-height: 72px !important;
    padding: 0.85rem 0.8rem !important;
    gap: 0.62rem !important;
  }

  .hero-stat-icon {
    width: 17px !important;
    height: 17px !important;
    flex-basis: 17px !important;
  }

  .hero-stat-value {
    font-size: 0.75rem !important;
  }

  .hero-stat-label {
    font-size: 0.66rem !important;
  }

  .hero-demo-section {
    padding: 1.65rem 0 3.2rem !important;
  }

  .hero-demo .mockup-frame {
    border-radius: 17px !important;
  }
}

/* ===================================================
   PATCH V4 — Hero remis proprement + planète BTP isolée
   Objectif : garder la taille du hero, placer le globe à côté du titre
   sans le coller au bord droit, et le rendre visible sur mobile.
   =================================================== */
.hero {
  position: relative !important;
  background: #f7f6f3 !important;
  overflow: hidden !important;
}

.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
}

.hero-split-inner {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  min-height: clamp(585px, 73vh, 735px) !important;
  padding-top: clamp(7.3rem, 10vh, 8.6rem) !important;
  padding-bottom: 1.65rem !important;
}

.hero-content {
  position: relative !important;
  z-index: 3 !important;
  max-width: 690px !important;
}

.hero-content .hero-title {
  max-width: 650px !important;
  font-size: clamp(4rem, 5.75vw, 6.35rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.052em !important;
}

.hero-content .hero-sub {
  max-width: 600px !important;
}

.hero-bg-wrap {
  display: block !important;
  position: absolute !important;
  z-index: 1 !important;
  top: clamp(6.2rem, 12vh, 9.2rem) !important;
  right: clamp(2.2rem, 6.2vw, 7.5rem) !important;
  width: clamp(430px, 38vw, 680px) !important;
  height: auto !important;
  aspect-ratio: 862 / 941 !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  pointer-events: none !important;
  overflow: visible !important;
}

.hero-bg-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  background: transparent !important;
}

.hero-stats-bar {
  position: relative !important;
  z-index: 5 !important;
}

.hero-demo {
  max-width: 900px !important;
  width: min(100%, 900px) !important;
}

.hero-demo-section {
  padding-top: 1.85rem !important;
}

@media (max-width: 1180px) {
  .hero-split-inner {
    min-height: 660px !important;
  }

  .hero-content .hero-title {
    max-width: 590px !important;
    font-size: clamp(3.65rem, 6vw, 5.55rem) !important;
  }

  .hero-bg-wrap {
    right: -1.5rem !important;
    top: 8.2rem !important;
    width: clamp(420px, 44vw, 610px) !important;
  }
}

@media (max-width: 860px) {
  .hero-split-inner {
    min-height: 705px !important;
    padding-top: 6.8rem !important;
    padding-bottom: 2rem !important;
  }

  .hero-content {
    max-width: 100% !important;
  }

  .hero-content .hero-title {
    max-width: 94% !important;
    font-size: clamp(3.2rem, 12vw, 5rem) !important;
  }

  .hero-content .hero-sub {
    max-width: 92% !important;
  }

  .hero-bg-wrap {
    display: block !important;
    top: 11.4rem !important;
    right: -38vw !important;
    width: 118vw !important;
    min-width: 520px !important;
    opacity: 0.58 !important;
  }

  .hero-bg-img {
    object-position: right center !important;
  }
}

@media (max-width: 520px) {
  .hero-split-inner {
    min-height: 690px !important;
    padding-top: 6.2rem !important;
    padding-bottom: 2rem !important;
  }

  .hero-content .hero-badge {
    max-width: calc(100vw - 2rem) !important;
    font-size: 0.75rem !important;
    padding: 0.46rem 0.68rem !important;
  }

  .hero-content .hero-title {
    max-width: 96% !important;
    font-size: clamp(2.9rem, 15vw, 4.2rem) !important;
    line-height: 0.97 !important;
  }

  .hero-content .hero-sub {
    max-width: 94% !important;
    font-size: 0.98rem !important;
  }

  .hero-bg-wrap {
    top: 13.8rem !important;
    right: -72vw !important;
    width: 170vw !important;
    min-width: 580px !important;
    opacity: 0.5 !important;
  }

  .hero-demo {
    max-width: 88vw !important;
  }
}

/* ===================================================
   PATCH V5 DETAILS — badge, stats fond, mockup fin, mobile nav
   =================================================== */
.hero-content .hero-badge {
  padding: 0.42rem 0.78rem !important;
  min-height: 0 !important;
  font-size: 0.84rem !important;
  line-height: 1 !important;
  background: rgba(255,255,255,0.72) !important;
  border-color: rgba(10,10,10,0.075) !important;
  box-shadow: 0 10px 24px rgba(10,10,10,0.035) !important;
}

.hero-stats-bar {
  background: transparent !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  padding: 1.05rem 0 0.9rem !important;
}

.hero-stats-bar .container {
  border-top: 1px solid rgba(10,10,10,0.055) !important;
  border-bottom: 1px solid rgba(10,10,10,0.045) !important;
  padding-top: 0.9rem !important;
  padding-bottom: 0.9rem !important;
}

.hero-stats {
  min-height: auto !important;
}

.hero-stat {
  padding: 0.25rem 1.15rem !important;
}

.hero-stat-sep {
  height: 38px !important;
  background: rgba(10,10,10,0.06) !important;
}

.hero-demo {
  max-width: 820px !important;
  width: min(100%, 820px) !important;
}

.mockup-bar,
.hero-demo .mockup-bar {
  min-height: 32px !important;
  padding: 0.38rem 0.72rem !important;
  gap: 0.42rem !important;
}

.mockup-dot,
.hero-demo .mockup-dot {
  width: 7px !important;
  height: 7px !important;
}

.mockup-url,
.hero-demo .mockup-url {
  margin-left: 0.55rem !important;
  padding: 0.16rem 0.52rem !important;
  font-size: 0.66rem !important;
  line-height: 1.2 !important;
}

.nav-burger {
  width: 42px !important;
  height: 42px !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 5px !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: var(--ink) !important;
}

.nav-burger span {
  display: block !important;
  width: 19px !important;
  height: 1.6px !important;
  border-radius: 999px !important;
  background: currentColor !important;
  transition: transform .22s var(--ease-out), opacity .22s var(--ease-out) !important;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.6px) rotate(45deg) !important;
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0 !important;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.6px) rotate(-45deg) !important;
}

@media (max-width: 880px) {
  .nav-burger { display: flex !important; }
  .nav { padding: 0.42rem 0.5rem 0.42rem 0.9rem !important; }
  .nav-cta { display: none !important; }
}

@media (max-width: 760px) {
  .hero-stats-bar {
    background: transparent !important;
    padding-top: 0.6rem !important;
  }
  .hero-stats-bar .container {
    border-top: 1px solid rgba(10,10,10,0.055) !important;
    border-bottom: 1px solid rgba(10,10,10,0.045) !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .hero-stat {
    min-height: 66px !important;
    padding: 0.72rem 0.65rem !important;
  }
  .hero-demo {
    max-width: 92vw !important;
  }
  .mockup-bar,
  .hero-demo .mockup-bar {
    min-height: 28px !important;
    padding: 0.32rem 0.55rem !important;
  }
  .mockup-dot,
  .hero-demo .mockup-dot {
    width: 6px !important;
    height: 6px !important;
  }
  .mockup-url,
  .hero-demo .mockup-url {
    font-size: 0.58rem !important;
    padding: 0.12rem 0.42rem !important;
  }
}

/* ===================================================
   PATCH V6 — scroll smooth renforcé + hamburger mobile à droite
   =================================================== */
@media (max-width: 880px) {
  .nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    width: auto !important;
    transform: none !important;
    padding: 0.42rem 0.48rem 0.42rem 0.9rem !important;
  }

  .nav-brand {
    margin-right: auto !important;
    flex: 0 0 auto !important;
  }

  .nav-burger {
    margin-left: auto !important;
    order: 20 !important;
    flex: 0 0 42px !important;
    display: flex !important;
  }

  .nav-links,
  .nav-cta {
    display: none !important;
  }
}

@media (min-width: 901px) and (pointer: fine) {
  html {
    scroll-behavior: auto !important;
  }
}

/* ===================================================
   PATCH V7 — Responsive global, logo, nav fine, hero mobile/ultrawide
   =================================================== */

/* Nav desktop plus fine, logo conservé */
.nav {
  min-height: 46px !important;
  padding: 0.34rem 0.42rem 0.34rem 1.05rem !important;
  gap: 1.45rem !important;
}
.nav-logo {
  height: 31px !important;
  width: auto !important;
}
.nav-cta {
  padding: 0.46rem 0.92rem !important;
  line-height: 1 !important;
}

/* Hero desktop : garder le rendu 1920 mais empêcher le globe de partir trop loin en ultra-wide */
.hero-split-inner {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero-bg-wrap {
  left: calc(50% + 155px) !important;
  right: auto !important;
  width: clamp(560px, 38vw, 820px) !important;
  height: clamp(455px, 58vh, 640px) !important;
  top: 6.2rem !important;
}
.hero-bg-img {
  object-fit: contain !important;
  object-position: center center !important;
}
.hero-demo {
  max-width: 1050px !important;
}

@media (min-width: 2100px) {
  .hero-bg-wrap {
    left: calc(50% + 180px) !important;
    width: 760px !important;
    height: 600px !important;
  }
  .hero-split-inner {
    min-height: 640px !important;
  }
}

/* Menu mobile : hamburger classique, bouton RDV propre */
@media (max-width: 880px) {
  .nav {
    top: 0.95rem !important;
    left: 1rem !important;
    right: 1rem !important;
    min-height: 56px !important;
    padding: 0.45rem 0.7rem 0.45rem 1.1rem !important;
    border-radius: 999px !important;
    justify-content: space-between !important;
    gap: 1rem !important;
  }
  .nav-logo {
    height: 31px !important;
  }
  .nav-cta {
    display: none !important;
  }
  .nav-burger {
    width: 44px !important;
    height: 44px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 0 !important;
    margin-left: auto !important;
  }
  .nav-burger span {
    width: 26px !important;
    height: 2px !important;
    display: block !important;
    background: #0a0a0a !important;
    border-radius: 999px !important;
  }
  .nav-mobile-menu {
    padding: 4.5rem 1.25rem 2rem !important;
    gap: 2.25rem !important;
  }
  .nav-mobile-menu a:not(.btn) {
    font-size: clamp(2rem, 10vw, 3.15rem) !important;
    line-height: 1 !important;
    font-family: var(--font-display) !important;
    font-style: italic !important;
    font-weight: 400 !important;
  }
  .nav-mobile-menu .btn,
  .nav-mobile-menu .btn-primary {
    width: auto !important;
    min-width: 245px !important;
    max-width: calc(100vw - 4rem) !important;
    height: 58px !important;
    padding: 0 1.55rem !important;
    border-radius: 999px !important;
    justify-content: center !important;
    font-size: 1rem !important;
    margin-top: 0.35rem !important;
  }
  .nav-mobile-close {
    top: 1.4rem !important;
    right: 1.5rem !important;
    font-size: 1.65rem !important;
  }
}

/* Hero mobile harmonisé : texte moins massif, globe visible à côté du titre */
@media (max-width: 760px) {
  .hero {
    min-height: auto !important;
    overflow: hidden !important;
  }
  .hero .container {
    padding-left: 1.55rem !important;
    padding-right: 1.55rem !important;
  }
  .hero-split-inner {
    display: block !important;
    padding-top: 7.45rem !important;
    padding-bottom: 1.15rem !important;
    min-height: 640px !important;
  }
  .hero-content {
    max-width: 100% !important;
  }
  .hero-content .hero-badge {
    margin-bottom: 1.6rem !important;
    font-size: 0.82rem !important;
    padding: 0.5rem 0.76rem !important;
    max-width: fit-content !important;
  }
  .hero-content .hero-title {
    position: relative !important;
    z-index: 2 !important;
    max-width: 74vw !important;
    font-size: clamp(3.35rem, 14.2vw, 4.75rem) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.055em !important;
    margin-bottom: 1.45rem !important;
  }
  .hero-content .hero-sub {
    position: relative !important;
    z-index: 2 !important;
    max-width: 92% !important;
    font-size: 1.03rem !important;
    line-height: 1.54 !important;
    margin-bottom: 1.8rem !important;
  }
  .hero-content .hero-cta {
    position: relative !important;
    z-index: 3 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
    max-width: 100% !important;
  }
  .hero-content .hero-cta .btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 58px !important;
    font-size: 1rem !important;
  }
  .hero-bg-wrap {
    display: block !important;
    left: auto !important;
    top: 13.2rem !important;
    right: -34vw !important;
    width: 100vw !important;
    height: 335px !important;
    opacity: 1 !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }
  .hero-bg-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: right center !important;
    opacity: 0.88 !important;
  }
  .hero-stats-bar {
    padding: 0.85rem 0 !important;
    border-top: 1px solid rgba(10,10,10,0.055) !important;
    border-bottom: 1px solid rgba(10,10,10,0.045) !important;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
  }
  .hero-stat {
    min-height: 64px !important;
    padding: 0.72rem 0.72rem !important;
    gap: 0.62rem !important;
  }
}

@media (max-width: 430px) {
  .hero-split-inner {
    min-height: 690px !important;
    padding-top: 7.2rem !important;
  }
  .hero-content .hero-title {
    max-width: 78vw !important;
    font-size: clamp(3.15rem, 15.4vw, 4.35rem) !important;
  }
  .hero-bg-wrap {
    top: 17.4rem !important;
    right: -45vw !important;
    width: 112vw !important;
    height: 350px !important;
  }
}

@media (max-width: 380px) {
  .hero-content .hero-title {
    max-width: 82vw !important;
    font-size: 3.45rem !important;
  }
  .hero-bg-wrap {
    right: -56vw !important;
    top: 18.1rem !important;
  }
}

/* RDV mobile : moins monumental et surtout lisible */
@media (max-width: 760px) {
  #rdv {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  #rdv .container {
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
  }
  .contact {
    margin: 0 auto !important;
    width: 100% !important;
    border-radius: 34px !important;
    padding: 3rem 0.85rem 1rem !important;
  }
  .contact .section-head {
    padding: 0 0.65rem !important;
  }
  .contact .eyebrow {
    font-size: 0.72rem !important;
    letter-spacing: 0.18em !important;
  }
  .contact .h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.7rem) !important;
    line-height: 1.02 !important;
    max-width: 10.5ch !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .contact .lead {
    font-size: 1rem !important;
    line-height: 1.55 !important;
    max-width: 28ch !important;
    margin-top: 1.25rem !important;
  }
  .rdv-form {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 2.3rem !important;
    border-radius: 26px !important;
    padding: 1.25rem !important;
    box-shadow: 0 18px 44px rgba(0,0,0,0.14) !important;
  }
  .form-step-label {
    font-size: 0.72rem !important;
    margin-bottom: 0.8rem !important;
  }
  .calendar {
    border-radius: 20px !important;
    padding: 1rem !important;
    margin-bottom: 1.25rem !important;
  }
  .calendar-month {
    font-size: 1.25rem !important;
  }
  .calendar-grid {
    gap: 3px !important;
  }
  .calendar-day-name {
    font-size: 0.64rem !important;
    padding: 0.4rem 0 !important;
  }
  .calendar-day {
    font-size: 0.86rem !important;
    border-radius: 10px !important;
  }
  .timeslots {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .form-field input,
  .form-field textarea,
  .form-field select {
    min-height: 52px !important;
    border-radius: 14px !important;
    font-size: 0.98rem !important;
    width: 100% !important;
  }
  .form-field textarea {
    min-height: 116px !important;
  }
  .form-submit {
    min-height: 58px !important;
    border-radius: 999px !important;
    font-size: 1rem !important;
  }
}


/* ===================================================
   FINAL RESPONSIVE PATCH V8 — nav Manus-like + mobile hero
   =================================================== */
:root {
  --nav-height-final: 44px;
}

/* Nav desktop façon Manus : fine, horizontale, sans grosse pilule */
.nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: var(--nav-height-final) !important;
  transform: none !important;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(10,10,10,.07) !important;
  background: rgba(247,246,243,.88) !important;
  box-shadow: none !important;
  backdrop-filter: blur(16px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(160%) !important;
  padding: 0 clamp(18px, 4vw, 56px) !important;
  display: grid !important;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr) !important;
  gap: 1.25rem !important;
  align-items: center !important;
}

.nav-brand {
  justify-self: start !important;
  min-width: 0 !important;
}

.nav-logo {
  height: 18px !important;
  width: auto !important;
  max-width: 134px !important;
  object-fit: contain !important;
  display: block !important;
}

.nav-links {
  justify-self: center !important;
  display: flex !important;
  align-items: center !important;
  gap: clamp(.9rem, 1.7vw, 1.65rem) !important;
}

.nav-links a {
  font-size: .82rem !important;
  line-height: 1 !important;
  color: rgba(10,10,10,.72) !important;
}

.nav-cta {
  justify-self: end !important;
  height: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 1rem !important;
  font-size: .82rem !important;
  line-height: 1 !important;
  border-radius: 999px !important;
}

/* Hero desktop 1920 conservé, ultra-wide corrigé : le bloc visuel ne fuit pas à droite */
.hero-split-inner {
  width: min(100%, 1200px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: 6.15rem !important;
}

.hero-bg-wrap {
  top: 5.15rem !important;
  right: calc((100vw - min(1200px, calc(100vw - 48px))) / 2 + 24px) !important;
  width: min(45vw, 650px) !important;
  height: min(54vw, 590px) !important;
  transform: none !important;
  opacity: 1 !important;
  overflow: visible !important;
}

.hero-bg-img {
  object-fit: contain !important;
  object-position: center center !important;
  opacity: 1 !important;
}

.hero-content .hero-title {
  font-size: clamp(4.1rem, 5.25vw, 5.75rem) !important;
  line-height: .98 !important;
  max-width: 700px !important;
}

.hero-content .hero-sub {
  max-width: 595px !important;
}

/* Menu mobile façon Manus : logo gauche, burger droite, pas de grosse pilule */
@media (max-width: 880px) {
  :root { --nav-height-final: 58px; }

  .nav {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: var(--nav-height-final) !important;
    grid-template-columns: auto 1fr auto !important;
    padding: 0 1.25rem !important;
    background: rgba(247,246,243,.92) !important;
    border-bottom: 1px solid rgba(10,10,10,.055) !important;
  }

  .nav-logo {
    height: 21px !important;
    max-width: 145px !important;
  }

  .nav-burger {
    justify-self: end !important;
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-left: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .nav-burger span {
    display: block !important;
    width: 25px !important;
    height: 2px !important;
    background: #0a0a0a !important;
    border-radius: 999px !important;
  }

  .nav-mobile-menu {
    background: #f7f6f3 !important;
    gap: 2.4rem !important;
  }

  .nav-mobile-menu a:not(.btn) {
    font-family: var(--font-display) !important;
    font-style: italic !important;
    font-size: clamp(2.25rem, 11vw, 3.25rem) !important;
    font-weight: 400 !important;
    letter-spacing: -.025em !important;
  }

  .nav-mobile-menu .btn {
    min-width: 0 !important;
    width: auto !important;
    height: 48px !important;
    padding: 0 1.3rem !important;
    font-size: .92rem !important;
    box-shadow: none !important;
  }
}

/* Mobile hero : titre moins énorme, sous-titre plus compact, globe visible à droite */
@media (max-width: 760px) {
  .hero {
    min-height: auto !important;
    overflow: hidden !important;
  }

  .hero .container {
    padding-left: 1.35rem !important;
    padding-right: 1.35rem !important;
  }

  .hero-split-inner {
    width: 100% !important;
    display: block !important;
    min-height: 0 !important;
    padding-top: 6.4rem !important;
    padding-bottom: 1.2rem !important;
  }

  .hero-content .hero-badge {
    font-size: .74rem !important;
    padding: .4rem .66rem !important;
    margin-bottom: 1.25rem !important;
    max-width: calc(100vw - 2.7rem) !important;
  }

  .hero-content .hero-title {
    font-size: clamp(2.95rem, 12.2vw, 3.95rem) !important;
    line-height: .98 !important;
    letter-spacing: -.052em !important;
    max-width: 62vw !important;
    margin-bottom: 1.05rem !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .hero-content .hero-sub {
    font-size: .94rem !important;
    line-height: 1.48 !important;
    max-width: 78vw !important;
    margin-bottom: 1.35rem !important;
    position: relative !important;
    z-index: 3 !important;
  }

  .hero-content .hero-cta {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .72rem !important;
    position: relative !important;
    z-index: 4 !important;
  }

  .hero-content .hero-cta .btn {
    min-height: 52px !important;
    width: 100% !important;
    justify-content: center !important;
    font-size: .95rem !important;
    padding: 0 1.2rem !important;
  }

  .hero-bg-wrap {
    display: block !important;
    top: 10.5rem !important;
    right: -17vw !important;
    left: auto !important;
    width: 62vw !important;
    height: 62vw !important;
    max-height: 295px !important;
    min-height: 230px !important;
    z-index: 1 !important;
    opacity: .88 !important;
    overflow: visible !important;
  }

  .hero-bg-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    opacity: 1 !important;
  }

  .hero-stats-bar {
    padding: .75rem 0 !important;
    margin-top: .6rem !important;
  }

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

  .hero-stat {
    min-height: 58px !important;
    padding: .55rem .55rem !important;
  }

  .hero-stat-value { font-size: .72rem !important; }
  .hero-stat-label { font-size: .64rem !important; }
  .hero-stat-icon { width: 14px !important; height: 14px !important; }
}

@media (max-width: 430px) {
  .hero .container {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
  }

  .hero-content .hero-title {
    max-width: 61vw !important;
    font-size: clamp(2.75rem, 12.8vw, 3.55rem) !important;
  }

  .hero-content .hero-sub {
    max-width: 79vw !important;
    font-size: .92rem !important;
  }

  .hero-bg-wrap {
    top: 11.35rem !important;
    right: -16vw !important;
    width: 60vw !important;
    height: 60vw !important;
    min-height: 220px !important;
  }
}

@media (max-width: 380px) {
  .hero-content .hero-title {
    max-width: 64vw !important;
    font-size: 2.75rem !important;
  }
  .hero-bg-wrap {
    top: 11.2rem !important;
    right: -22vw !important;
    width: 66vw !important;
    height: 66vw !important;
  }
}

/* RDV mobile : carte moins bordélique et champs qui ne débordent pas */
@media (max-width: 760px) {
  #rdv { padding-top: 3rem !important; }
  .contact {
    margin: 0 .75rem !important;
    border-radius: 32px !important;
    padding: 2.6rem .9rem 1rem !important;
  }
  .contact .h1 {
    font-size: clamp(2.35rem, 10vw, 3.35rem) !important;
    max-width: 12ch !important;
  }
  .contact .lead {
    font-size: .98rem !important;
    max-width: 28ch !important;
  }
  .rdv-form {
    border-radius: 24px !important;
    padding: 1.15rem !important;
    margin-top: 2rem !important;
  }
  .calendar {
    padding: .92rem !important;
    border-radius: 18px !important;
  }
  .timeslots {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ===================================================
   PATCH V9 — nav centrée, stats propres, hero mobile corrigé
   =================================================== */

/* Desktop : nav dans la même largeur que le site, pas aux extrémités */
@media (min-width: 881px) {
  :root { --nav-height-final: 38px; }

  .nav {
    top: 0 !important;
    left: 50% !important;
    right: auto !important;
    width: min(calc(100vw - 48px), 1200px) !important;
    height: var(--nav-height-final) !important;
    transform: translateX(-50%) !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 150px 1fr 150px !important;
    align-items: center !important;
    gap: 1rem !important;
    background: rgba(247,246,243,.88) !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(10,10,10,.065) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .nav-brand { justify-self: start !important; }
  .nav-logo { height: 15px !important; max-width: 118px !important; }
  .nav-links { justify-self: center !important; gap: clamp(.85rem, 1.45vw, 1.35rem) !important; }
  .nav-links a { font-size: .765rem !important; }
  .nav-cta {
    justify-self: end !important;
    height: 27px !important;
    padding: 0 .82rem !important;
    font-size: .76rem !important;
  }
}

/* Desktop/ultrawide : globe calé dans la zone utile */
@media (min-width: 761px) {
  .hero-bg-wrap {
    left: calc(50% + 205px) !important;
    right: auto !important;
    top: clamp(5.4rem, 8.7vh, 7rem) !important;
    width: clamp(520px, 34vw, 690px) !important;
    height: clamp(450px, 45vw, 640px) !important;
  }

  .hero-split-inner {
    width: min(100%, 1200px) !important;
    padding-top: clamp(5.95rem, 9vh, 7.4rem) !important;
  }
}

@media (min-width: 2100px) {
  .hero-bg-wrap {
    left: calc(50% + 215px) !important;
    width: 640px !important;
    height: 585px !important;
  }
}

/* Bandeau stats : dans la même largeur que le contenu, plus propre */
.hero-stats-bar {
  background: #f7f6f3 !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: .55rem 0 1.05rem !important;
}
.hero-stats-bar .container {
  max-width: 1200px !important;
  border-top: 1px solid rgba(10,10,10,.055) !important;
  border-bottom: 1px solid rgba(10,10,10,.045) !important;
  padding-top: .72rem !important;
  padding-bottom: .72rem !important;
}
.hero-stats {
  min-height: 56px !important;
  display: flex !important;
  align-items: center !important;
}
.hero-stat {
  min-height: 44px !important;
  justify-content: center !important;
  padding: .35rem 1rem !important;
  gap: .72rem !important;
}
.hero-stat-sep {
  height: 36px !important;
  background: rgba(10,10,10,.055) !important;
}
.hero-stat-icon { width: 18px !important; height: 18px !important; }
.hero-stat-value { font-size: .81rem !important; }
.hero-stat-label { font-size: .72rem !important; }

/* Mobile : nav propre, burger droite, sans règle inline conflictuelle */
@media (max-width: 880px) {
  :root { --nav-height-final: 58px; }

  .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--nav-height-final) !important;
    transform: none !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    padding: 0 1.15rem !important;
    background: rgba(247,246,243,.94) !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(10,10,10,.055) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .nav-brand { justify-self: start !important; }
  .nav-logo { height: 19px !important; max-width: 132px !important; }
  .nav-links, .nav-cta { display: none !important; }
  .nav-burger {
    justify-self: end !important;
    display: inline-flex !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    background: transparent !important;
    border: 0 !important;
  }
  .nav-burger span { width: 25px !important; height: 2px !important; background: #0a0a0a !important; }
}

/* Mobile hero : titre plus compact, globe vraiment dans l'espace de droite */
@media (max-width: 760px) {
  .hero { overflow: hidden !important; }
  .hero .container { padding-left: 1.15rem !important; padding-right: 1.15rem !important; }
  .hero-split-inner {
    padding-top: 6.65rem !important;
    padding-bottom: 1rem !important;
    min-height: 0 !important;
  }
  .hero-content .hero-badge {
    font-size: .72rem !important;
    padding: .38rem .62rem !important;
    margin-bottom: 1.05rem !important;
    max-width: calc(100vw - 2.3rem) !important;
  }
  .hero-content .hero-title {
    max-width: 56vw !important;
    font-size: clamp(2.55rem, 11.1vw, 3.35rem) !important;
    line-height: .99 !important;
    letter-spacing: -.05em !important;
    margin-bottom: 1.05rem !important;
    position: relative !important;
    z-index: 3 !important;
  }
  .hero-content .hero-sub {
    max-width: 88vw !important;
    font-size: .92rem !important;
    line-height: 1.48 !important;
    margin-bottom: 1.25rem !important;
    position: relative !important;
    z-index: 4 !important;
  }
  .hero-bg-wrap {
    display: block !important;
    left: auto !important;
    top: 9.65rem !important;
    right: -36vw !important;
    width: 78vw !important;
    height: 78vw !important;
    max-height: 318px !important;
    min-height: 238px !important;
    opacity: .95 !important;
    z-index: 1 !important;
  }
  .hero-bg-img {
    object-fit: contain !important;
    object-position: center center !important;
    opacity: 1 !important;
  }
  .hero-content .hero-cta { gap: .68rem !important; }
  .hero-content .hero-cta .btn { min-height: 52px !important; }

  .hero-stats-bar {
    margin-top: .2rem !important;
    padding: .55rem 0 .9rem !important;
  }
  .hero-stats-bar .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: .55rem !important;
    padding-bottom: .55rem !important;
  }
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    min-height: 0 !important;
  }
  .hero-stat {
    min-height: 56px !important;
    padding: .55rem .62rem !important;
    justify-content: flex-start !important;
    gap: .55rem !important;
  }
  .hero-stat:nth-of-type(1),
  .hero-stat:nth-of-type(5) { border-right: 1px solid rgba(10,10,10,.055) !important; }
  .hero-stat:nth-of-type(1),
  .hero-stat:nth-of-type(3) { border-bottom: 1px solid rgba(10,10,10,.055) !important; }
  .hero-stat-sep { display: none !important; }
  .hero-stat-icon { width: 14px !important; height: 14px !important; flex-basis: 14px !important; }
  .hero-stat-value { font-size: .70rem !important; line-height: 1.15 !important; }
  .hero-stat-label { font-size: .61rem !important; line-height: 1.15 !important; }
}

@media (max-width: 430px) {
  .hero-content .hero-title {
    max-width: 57vw !important;
    font-size: clamp(2.52rem, 11.7vw, 3.15rem) !important;
  }
  .hero-content .hero-sub { max-width: 87vw !important; }
  .hero-bg-wrap {
    top: 9.85rem !important;
    right: -41vw !important;
    width: 84vw !important;
    height: 84vw !important;
  }
}

@media (max-width: 380px) {
  .hero-content .hero-title {
    max-width: 60vw !important;
    font-size: 2.55rem !important;
  }
  .hero-bg-wrap {
    right: -48vw !important;
    width: 92vw !important;
    height: 92vw !important;
  }
}

/* ===================================================
   PATCH V11 — reprise depuis V9 : nav pleine largeur,
   menu mobile propre, suppression stat bar + animation hero stats
   =================================================== */

@media (min-width: 881px) {
  .nav {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: 38px !important;
    transform: none !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(24px, 1fr) 170px minmax(360px, 620px) 170px minmax(24px, 1fr) !important;
    align-items: center !important;
    gap: 0 !important;
    background: rgba(247,246,243,.90) !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(10,10,10,.06) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: blur(14px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(160%) !important;
  }

  .nav-brand {
    grid-column: 2 !important;
    justify-self: start !important;
    align-self: center !important;
  }

  .nav-logo {
    height: 18px !important;
    max-width: 128px !important;
    width: auto !important;
  }

  .nav-links {
    grid-column: 3 !important;
    justify-self: center !important;
    display: flex !important;
    gap: clamp(.95rem, 1.45vw, 1.45rem) !important;
  }

  .nav-links a {
    font-size: .78rem !important;
    line-height: 1 !important;
  }

  .nav-cta {
    grid-column: 4 !important;
    justify-self: end !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 27px !important;
    padding: 0 .95rem !important;
    font-size: .76rem !important;
    line-height: 1 !important;
  }
}

/* On supprime le bandeau stats visible : les stats deviennent une séquence dans le hero. */
.hero-stats-bar {
  display: none !important;
}

@media (min-width: 881px) {
  .hero {
    min-height: 164svh !important;
    overflow: visible !important;
  }

  .hero-split-inner {
    position: sticky !important;
    top: 0 !important;
    min-height: 100svh !important;
    align-items: center !important;
    padding-top: 5.1rem !important;
    padding-bottom: 5.2rem !important;
  }

  .hero-content {
    transform: translateY(0) !important;
  }

  .hero-content .hero-title,
  .hero-content .hero-sub {
    transition: opacity .32s ease, transform .32s ease, filter .32s ease !important;
  }

  .hero-content.is-swapping .hero-title,
  .hero-content.is-swapping .hero-sub {
    opacity: 0 !important;
    transform: translateY(8px) !important;
    filter: blur(5px) !important;
  }

  .hero-content.is-stat-mode .hero-title {
    font-size: clamp(4rem, 7vw, 6.7rem) !important;
    line-height: .86 !important;
    letter-spacing: -.055em !important;
  }

  .hero-content.is-stat-mode .hero-title .hero-metric {
    font-family: var(--font-display) !important;
    font-style: italic !important;
    font-weight: 400 !important;
    letter-spacing: -.04em !important;
  }

  .hero-content.is-stat-mode .hero-title .hero-metric-text {
    font-family: var(--font-sans) !important;
    font-style: normal !important;
    font-size: clamp(1.6rem, 2.45vw, 2.55rem) !important;
    font-weight: 500 !important;
    letter-spacing: -.035em !important;
  }

  .hero-content.is-stat-mode .hero-sub {
    max-width: 42ch !important;
    font-size: clamp(1.08rem, 1.35vw, 1.36rem) !important;
    line-height: 1.42 !important;
  }

  .hero-demo-section {
    position: relative !important;
    z-index: 4 !important;
    margin-top: -4vh !important;
    padding-top: 0 !important;
  }
}

/* Menu mobile : bouton RDV lisible, compact, sans bloc noir énorme. */
.nav-mobile-menu .btn,
.nav-mobile-menu .btn-primary,
.nav-mobile-menu a.btn,
.nav-mobile-menu a.btn-primary {
  width: auto !important;
  min-width: 210px !important;
  max-width: calc(100vw - 4rem) !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 1.35rem !important;
  border-radius: 999px !important;
  background: #0a0a0a !important;
  color: #f7f6f3 !important;
  font-family: var(--font-sans) !important;
  font-size: .92rem !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: .65rem !important;
  box-shadow: none !important;
  text-decoration: none !important;
  letter-spacing: -.01em !important;
}

@media (max-width: 880px) {
  .nav-mobile-menu {
    gap: 2.15rem !important;
  }

  .nav-mobile-menu a:not(.btn) {
    font-size: clamp(2.35rem, 11vw, 3.25rem) !important;
  }
}

/* Mobile : pas d'animation sticky, on garde le globe validé et on ne montre pas le bandeau stats. */
@media (max-width: 880px) {
  .hero {
    min-height: auto !important;
    overflow: hidden !important;
  }
  .hero-split-inner {
    position: relative !important;
    top: auto !important;
  }
}

/* Fallback : si JS désactivé, le hero reste normal. */
.hero-content[data-hero-ready="true"] .hero-title,
.hero-content[data-hero-ready="true"] .hero-sub {
  will-change: opacity, transform, filter;
}

/* ===================================================
   V12 — Nav pleine largeur + hero scroll pinned
   =================================================== */
:root{
  --site-width: 1180px;
  --nav-h: 46px;
}

.nav{
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: var(--nav-h) !important;
  padding: 0 !important;
  background: rgba(247,246,243,.94) !important;
  border-bottom: 1px solid rgba(10,10,10,.055) !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px) !important;
  z-index: 100 !important;
  display: block !important;
}

.nav-inner{
  width: min(var(--site-width), calc(100vw - 48px)) !important;
  height: 100% !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 1rem !important;
}

.nav-brand{justify-self:start !important; display:inline-flex !important; align-items:center !important; min-width:0 !important;}
.nav-logo{height:28px !important; width:auto !important; max-width:150px !important; display:block !important; object-fit:contain !important;}
.nav-links{justify-self:center !important; display:flex !important; align-items:center !important; gap:2rem !important; margin:0 !important; padding:0 !important; list-style:none !important;}
.nav-links a{font-size:.86rem !important; color:rgba(10,10,10,.72) !important; text-decoration:none !important;}
.nav-cta{justify-self:end !important; height:30px !important; min-height:30px !important; padding:0 1.15rem !important; border-radius:999px !important; display:inline-flex !important; align-items:center !important; justify-content:center !important; background:#080808 !important; color:#f7f6f3 !important; font-size:.79rem !important; font-weight:650 !important; text-decoration:none !important;}
.nav-burger{justify-self:end !important;}

/* Hero pin : le reste du site ne remonte qu'après la séquence stats. */
.hero{
  height: 500vh !important;
  min-height: 500vh !important;
  padding: 0 !important;
  margin: 0 !important;
  background:#f7f6f3 !important;
  overflow: visible !important;
  position: relative !important;
}
.hero-sticky{
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  height: 100svh !important;
  min-height: 720px !important;
  overflow: hidden !important;
  background:#f7f6f3 !important;
  z-index: 1 !important;
}
.hero-split-inner{
  height: 100% !important;
  min-height: 0 !important;
  padding-top: clamp(7.6rem, 11vh, 9.4rem) !important;
  padding-bottom: clamp(4rem, 9vh, 7rem) !important;
  display: grid !important;
  align-items: center !important;
}
.hero-content{
  will-change: opacity, transform !important;
  transition: opacity .22s ease, transform .32s cubic-bezier(.22,.61,.36,1) !important;
}
.hero-content.is-swapping{opacity:0 !important; transform:translateY(10px) !important;}
.hero-content.is-stat-mode .hero-title{font-size:clamp(3.25rem,5.6vw,6.8rem) !important; line-height:.92 !important; letter-spacing:-.055em !important;}
.hero-content.is-stat-mode .hero-sub{font-size:clamp(1.08rem,1.25vw,1.32rem) !important; max-width:48ch !important; line-height:1.45 !important;}
.hero-metric{font-family:var(--font-display) !important; font-weight:400 !important; font-style:normal !important;}
.hero-metric-text{font-family:var(--font-display) !important; font-weight:400 !important; font-style:italic !important;}
.hero-stats-bar{display:none !important;}
.hero-demo-section{position:relative !important; z-index:3 !important; background:#f7f6f3 !important; padding-top:clamp(3rem,7vh,5rem) !important; margin-top:0 !important;}
.hero-demo{max-width:980px !important; margin-inline:auto !important;}

/* On garde la position validée du globe, avec seulement l'ancrage dans le sticky. */
.hero-bg-wrap{z-index:0 !important;}


/* Mobile : pas d'animation scroll pinned, hero naturel et menu propre. */
@media (max-width: 880px){
  :root{--nav-h:64px;}
  .nav{height:var(--nav-h) !important; background:#f7f6f3 !important;}
  .nav-inner{width:100% !important; padding:0 1.25rem !important; grid-template-columns:1fr auto !important;}
  .nav-logo{height:22px !important; max-width:148px !important;}
  .nav-links,.nav-cta{display:none !important;}
  .nav-burger{display:inline-flex !important; width:42px !important; height:42px !important; align-items:center !important; justify-content:center !important; flex-direction:column !important; gap:6px !important; background:transparent !important; border:0 !important; padding:0 !important;}
  .nav-burger span{width:25px !important;height:2px !important;background:#0a0a0a !important;border-radius:999px !important;display:block !important;}

  .hero{height:auto !important; min-height:0 !important; overflow:hidden !important;}
  .hero-sticky{position:relative !important; height:auto !important; min-height:0 !important; overflow:hidden !important;}
  .hero-split-inner{height:auto !important; padding-top:7.1rem !important; padding-bottom:2.2rem !important; align-items:start !important;}
  .hero-content.is-stat-mode .hero-title,
  .hero-content .hero-title{font-size:clamp(3.15rem,13.7vw,4.4rem) !important; line-height:.94 !important; max-width:7.2em !important;}
  .hero-content .hero-sub{font-size:1.02rem !important; line-height:1.43 !important; max-width:95% !important; margin-top:1.2rem !important;}
  .hero-content .hero-badge{margin-bottom:1.35rem !important;}
  .hero-content .hero-cta{gap:.8rem !important; margin-top:1.5rem !important;}
  .hero-bg-wrap{display:block !important; top:9.2rem !important; right:-38vw !important; width:118vw !important; height:350px !important; opacity:.33 !important;}
  .hero-bg-img{object-fit:contain !important; object-position:right center !important; opacity:1 !important;}
  .hero-demo-section{padding-top:2rem !important;}

  .nav-mobile-menu{background:#f7f6f3 !important; gap:2.25rem !important; padding:5.5rem 1.25rem 2rem !important;}
  .nav-mobile-menu a:not(.btn){font-size:clamp(2.3rem,10.5vw,3.1rem) !important;}
  .nav-mobile-menu .btn,
  .nav-mobile-menu .btn-primary,
  .nav-mobile-cta{
    width:auto !important;
    min-width:190px !important;
    max-width:260px !important;
    height:44px !important;
    min-height:44px !important;
    padding:0 1.2rem !important;
    border-radius:999px !important;
    background:#080808 !important;
    color:#f7f6f3 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-family:var(--font-sans) !important;
    font-size:.88rem !important;
    font-style:normal !important;
    font-weight:650 !important;
    line-height:1 !important;
    text-indent:0 !important;
    overflow:visible !important;
    white-space:nowrap !important;
    box-shadow:none !important;
  }
}

/* ===================================================
   V13 — correction centrage nav + alignement globe
   =================================================== */
@media (min-width: 881px) {
  /* Les anciennes règles V11 forçaient encore grid-column:2/3/4 sur les enfants.
     On les neutralise pour que la nav-inner centre vraiment tout dans la largeur site. */
  .nav-inner > .nav-brand,
  .nav-inner > .nav-links,
  .nav-inner > .nav-cta,
  .nav-inner > .nav-burger {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .nav-inner {
    width: min(var(--site-width), calc(100vw - 96px)) !important;
    max-width: var(--site-width) !important;
    margin-inline: auto !important;
    grid-template-columns: 180px minmax(360px, 1fr) 180px !important;
  }

  .nav-brand {
    justify-self: start !important;
  }

  .nav-links {
    justify-self: center !important;
  }

  .nav-cta {
    justify-self: end !important;
  }

  /* Le globe était légèrement trop haut après le passage en sticky : on le descend
     sans modifier son placement horizontal validé. */
  .hero-bg-wrap {
    top: clamp(8.6rem, 15vh, 11.4rem) !important;
  }
}

/* ===================================================
   V14 — Hero globe en ASCII Art
   Remplace l'image hero-bg par le fichier assets/ascii/globe.txt
   =================================================== */
.hero-ascii-wrap {
  position: absolute !important;
  top: 7.9rem !important;
  right: max(6vw, calc((100vw - var(--container-max)) / 2 + 1.5rem)) !important;
  width: min(49vw, 720px) !important;
  height: clamp(420px, 52vh, 560px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  opacity: 1 !important;
  mix-blend-mode: multiply !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.hero-ascii {
  margin: 0 !important;
  padding: 0 !important;
  white-space: pre !important;
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
  font-size: clamp(3.15px, 0.19vw, 4.85px) !important;
  line-height: 0.84 !important;
  letter-spacing: -0.105em !important;
  font-weight: 700 !important;
  color: rgba(92, 84, 74, 0.25) !important;
  text-rendering: geometricPrecision !important;
  -webkit-font-smoothing: antialiased !important;
  transform: translate(1.5%, 3%) scale(1.02) !important;
  transform-origin: center center !important;
  user-select: none !important;
}

.hero-bg-img {
  display: none !important;
}

@media (min-width: 1800px) {
  .hero-ascii-wrap {
    right: calc((100vw - var(--container-max)) / 2 - 0.25rem) !important;
    width: 720px !important;
    top: 8.3rem !important;
  }
}

@media (max-width: 1180px) {
  .hero-ascii-wrap {
    right: -2vw !important;
    width: 52vw !important;
    top: 8.4rem !important;
  }
}

@media (max-width: 880px) {
  .hero-ascii-wrap {
    top: 8.65rem !important;
    right: -1.2rem !important;
    width: min(58vw, 260px) !important;
    height: 300px !important;
    opacity: 0.66 !important;
    mix-blend-mode: multiply !important;
  }

  .hero-ascii {
    font-size: clamp(1.52px, 0.47vw, 2.08px) !important;
    line-height: 0.83 !important;
    letter-spacing: -0.12em !important;
    color: rgba(82, 74, 66, 0.22) !important;
    transform: translate(9%, 7%) scale(1.04) !important;
  }
}

@media (max-width: 430px) {
  .hero-ascii-wrap {
    top: 8.95rem !important;
    right: -1.15rem !important;
    width: 250px !important;
    height: 290px !important;
    opacity: 0.62 !important;
  }

  .hero-ascii {
    font-size: 1.56px !important;
    line-height: 0.82 !important;
    transform: translate(8%, 6%) scale(1.03) !important;
  }
}

/* ===================================================
   V15 — Ajustements ASCII globe desktop/mobile
   - desktop : globe un peu plus grand et plus centré verticalement
   - mobile : titre réduit, globe plus visible à droite du hero
   =================================================== */
@media (min-width: 881px) {
  .hero-ascii-wrap {
    top: clamp(10.2rem, 17.2vh, 12.4rem) !important;
    right: max(5.2vw, calc((100vw - var(--container-max)) / 2 + .85rem)) !important;
    width: min(52vw, 820px) !important;
    height: clamp(520px, 57vh, 650px) !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-ascii {
    font-size: clamp(3.65px, 0.215vw, 5.35px) !important;
    line-height: .84 !important;
    letter-spacing: -0.11em !important;
    color: rgba(92, 84, 74, 0.285) !important;
    transform: translate(1.8%, 1.5%) scale(1.08) !important;
  }
}

@media (min-width: 1800px) {
  .hero-ascii-wrap {
    top: clamp(10.45rem, 17.4vh, 12.6rem) !important;
    right: calc((100vw - var(--container-max)) / 2 - .85rem) !important;
    width: 835px !important;
    height: 650px !important;
  }
  .hero-ascii {
    font-size: 4.65px !important;
    transform: translate(1.5%, 1.5%) scale(1.08) !important;
  }
}

@media (max-width: 760px) {
  .hero-content .hero-title {
    max-width: 78vw !important;
    font-size: clamp(2.75rem, 12.25vw, 3.7rem) !important;
    line-height: .93 !important;
    letter-spacing: -0.058em !important;
    margin-bottom: 1.05rem !important;
  }
  .hero-content .hero-sub {
    max-width: 90vw !important;
    font-size: .88rem !important;
    line-height: 1.43 !important;
    margin-bottom: 1.18rem !important;
  }
  .hero-ascii-wrap {
    top: 11.35rem !important;
    right: -8.2rem !important;
    width: 430px !important;
    height: 430px !important;
    opacity: .72 !important;
    z-index: 1 !important;
  }
  .hero-ascii {
    font-size: 2.18px !important;
    line-height: .82 !important;
    letter-spacing: -0.13em !important;
    color: rgba(82, 74, 66, 0.245) !important;
    transform: translate(6%, 5%) scale(1.16) !important;
  }
  .hero-content {
    position: relative !important;
    z-index: 3 !important;
  }
}

@media (max-width: 430px) {
  .hero-content .hero-title {
    max-width: 79vw !important;
    font-size: clamp(2.58rem, 11.35vw, 3.1rem) !important;
    line-height: .94 !important;
  }
  .hero-content .hero-sub {
    font-size: .86rem !important;
    line-height: 1.42 !important;
  }
  .hero-ascii-wrap {
    top: 11.15rem !important;
    right: -9.8rem !important;
    width: 420px !important;
    height: 420px !important;
    opacity: .74 !important;
  }
  .hero-ascii {
    font-size: 2.05px !important;
    line-height: .82 !important;
    transform: translate(6%, 4%) scale(1.15) !important;
  }
}

@media (max-width: 380px) {
  .hero-content .hero-title {
    font-size: 2.42rem !important;
    max-width: 80vw !important;
  }
  .hero-ascii-wrap {
    top: 11rem !important;
    right: -10.4rem !important;
    width: 405px !important;
    height: 405px !important;
  }
  .hero-ascii {
    font-size: 1.95px !important;
  }
}

/* ===================================================
   V16 — ASCII responsive + morph globe -> logo
   =================================================== */
:root{
  --container-max: var(--container, 1200px);
}

.hero-ascii-wrap{
  isolation:isolate !important;
}

.hero-ascii-globe{
  position:relative !important;
  z-index:1 !important;
  transition:none !important;
  will-change:transform, opacity, filter, letter-spacing !important;
}

.hero-ascii-logo{
  position:absolute !important;
  left:50% !important;
  top:50% !important;
  margin:0 !important;
  padding:0 !important;
  white-space:pre !important;
  font-family:"Courier New", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
  font-size:clamp(6.5px, .48vw, 9px) !important;
  line-height:.82 !important;
  letter-spacing:-.065em !important;
  font-weight:800 !important;
  color:rgba(10,10,10,.82) !important;
  opacity:0 !important;
  filter:blur(4.5px) !important;
  transform:translate(-50%,-50%) scale(.84) !important;
  transform-origin:center center !important;
  text-rendering:geometricPrecision !important;
  -webkit-font-smoothing:antialiased !important;
  z-index:2 !important;
  user-select:none !important;
  pointer-events:none !important;
}

@media (min-width: 881px){
  .hero{
    height:620vh !important;
    min-height:620vh !important;
  }
  .hero-ascii-wrap{
    /* plus grand + un peu plus bas que V15 */
    top:clamp(10.9rem, 18.9vh, 13.65rem) !important;
    right:max(2.6vw, calc((100vw - var(--container-max)) / 2 - 2.15rem)) !important;
    width:min(58vw, 980px) !important;
    height:clamp(590px, 64vh, 780px) !important;
  }
  .hero-ascii{
    font-size:clamp(4.25px, .248vw, 6.15px) !important;
    line-height:.83 !important;
    letter-spacing:-.112em !important;
    color:rgba(92,84,74,.31) !important;
    transform:translate(1.8%,1.5%) scale(1.12) !important;
  }
  .hero-ascii-logo{
    width:max-content !important;
    max-width:none !important;
  }
}

@media (min-width: 1800px){
  .hero-ascii-wrap{
    right:calc((100vw - var(--container-max)) / 2 - 2.9rem) !important;
    width:980px !important;
    height:780px !important;
    top:clamp(11.2rem, 19vh, 13.9rem) !important;
  }
  .hero-ascii{
    font-size:5.35px !important;
    transform:translate(1.4%,1.2%) scale(1.12) !important;
  }
  .hero-ascii-logo{
    font-size:8.2px !important;
  }
}

@media (max-width: 880px){
  .hero-ascii-logo{display:none !important;}
}

@media (max-width:760px){
  .hero-content .hero-title{
    font-size:clamp(2.28rem, 10.4vw, 3.18rem) !important;
    line-height:.94 !important;
    max-width:8.4em !important;
    letter-spacing:-.055em !important;
    margin-bottom:.92rem !important;
  }
  .hero-content .hero-sub{
    font-size:.84rem !important;
    line-height:1.38 !important;
    max-width:94vw !important;
    margin-bottom:1.08rem !important;
  }
  .hero-ascii-wrap{
    /* plus haut + plus grand + bien à droite */
    top:7.75rem !important;
    right:-11.2rem !important;
    width:500px !important;
    height:500px !important;
    opacity:.79 !important;
  }
  .hero-ascii{
    font-size:2.42px !important;
    line-height:.81 !important;
    letter-spacing:-.132em !important;
    color:rgba(82,74,66,.265) !important;
    transform:translate(5%,0%) scale(1.24) !important;
  }
}

@media (max-width:430px){
  .hero-split-inner{
    padding-top:6.85rem !important;
  }
  .hero-content .hero-title{
    font-size:clamp(2.18rem, 9.85vw, 2.85rem) !important;
    line-height:.94 !important;
    max-width:8.55em !important;
  }
  .hero-content .hero-sub{
    font-size:.82rem !important;
    line-height:1.37 !important;
  }
  .hero-ascii-wrap{
    top:7.42rem !important;
    right:-12.65rem !important;
    width:505px !important;
    height:505px !important;
    opacity:.82 !important;
  }
  .hero-ascii{
    font-size:2.38px !important;
    transform:translate(5%,0%) scale(1.25) !important;
  }
}

@media (max-width:380px){
  .hero-content .hero-title{
    font-size:2.05rem !important;
    max-width:8.3em !important;
  }
  .hero-ascii-wrap{
    top:7.2rem !important;
    right:-13.3rem !important;
    width:490px !important;
    height:490px !important;
  }
  .hero-ascii{
    font-size:2.24px !important;
  }
}

/* ===================================================
   V18 — ASCII globe explosion pinned on desktop + mobile
   =================================================== */
.hero-ascii-logo {
  display: none !important;
}

.hero-ascii,
.hero-ascii-globe {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  font-variant-ligatures: none !important;
  font-feature-settings: "liga" 0, "calt" 0 !important;
  text-rendering: geometricPrecision !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  -webkit-text-size-adjust: none !important;
  text-size-adjust: none !important;
  tab-size: 1 !important;
  white-space: pre !important;
  overflow: visible !important;
  max-width: none !important;
}

@media (min-width: 881px) {
  .hero {
    height: 560vh !important;
    min-height: 560vh !important;
  }

  .hero-sticky {
    height: 100vh !important;
    min-height: 720px !important;
  }

  .hero-ascii-wrap {
    width: min(64vw, 1120px) !important;
    height: clamp(660px, 72vh, 860px) !important;
    top: clamp(9.4rem, 16.8vh, 12.5rem) !important;
    right: max(2.2vw, calc((100vw - var(--container-max)) / 2 - 5.7rem)) !important;
  }

  .hero-ascii {
    font-size: clamp(4.85px, .285vw, 6.85px) !important;
    line-height: .82 !important;
    letter-spacing: -.116em !important;
    color: rgba(82, 74, 66, .34) !important;
    transform: translate(1.2%, 3%) scale(1.24) !important;
    transform-origin: center center !important;
  }
}

@media (min-width: 1800px) {
  .hero-ascii-wrap {
    width: 1120px !important;
    height: 860px !important;
    right: calc((100vw - var(--container-max)) / 2 - 6.4rem) !important;
    top: clamp(9.6rem, 16.9vh, 12.8rem) !important;
  }

  .hero-ascii {
    font-size: 6.05px !important;
    transform: translate(1.2%, 3%) scale(1.24) !important;
  }
}

@media (max-width: 880px) {
  .hero {
    height: 460vh !important;
    min-height: 460vh !important;
    overflow: visible !important;
    position: relative !important;
  }

  .hero-sticky {
    position: sticky !important;
    top: 0 !important;
    height: 100svh !important;
    min-height: 620px !important;
    overflow: hidden !important;
    background: #f7f6f3 !important;
  }

  .hero-split-inner {
    height: 100% !important;
    min-height: 0 !important;
    padding-top: 6.25rem !important;
    padding-bottom: 1.65rem !important;
    display: grid !important;
    align-items: start !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 3 !important;
    max-width: 100% !important;
  }

  .hero-content .hero-title,
  .hero-content.is-stat-mode .hero-title {
    font-size: clamp(2.05rem, 9.15vw, 2.75rem) !important;
    line-height: .94 !important;
    max-width: 8.05em !important;
    letter-spacing: -.054em !important;
    margin-bottom: .85rem !important;
  }

  .hero-content .hero-sub,
  .hero-content.is-stat-mode .hero-sub {
    font-size: .82rem !important;
    line-height: 1.36 !important;
    max-width: 92vw !important;
    margin-top: .95rem !important;
    margin-bottom: 1.05rem !important;
  }

  .hero-content.is-stat-mode .hero-title {
    font-size: clamp(2.35rem, 10.5vw, 3.25rem) !important;
    max-width: 8.35em !important;
  }

  .hero-content.is-stat-mode .hero-sub {
    font-size: .88rem !important;
    max-width: 88vw !important;
  }

  .hero-content .hero-badge {
    margin-bottom: 1.2rem !important;
  }

  .hero-content .hero-cta {
    gap: .72rem !important;
    margin-top: 1.25rem !important;
  }

  .hero-ascii-wrap {
    display: flex !important;
    top: 4.95rem !important;
    right: -15.8rem !important;
    width: 600px !important;
    height: 600px !important;
    opacity: .82 !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  .hero-ascii {
    font-size: 2.62px !important;
    line-height: .80 !important;
    letter-spacing: -.132em !important;
    color: rgba(70, 63, 56, .29) !important;
    transform: translate(4%, -10%) scale(1.38) !important;
    transform-origin: center center !important;
  }
}

@media (max-width: 430px) {
  .hero-sticky {
    min-height: 620px !important;
  }

  .hero-split-inner {
    padding-top: 6.15rem !important;
  }

  .hero-ascii-wrap {
    top: 4.65rem !important;
    right: -16.8rem !important;
    width: 590px !important;
    height: 590px !important;
  }

  .hero-ascii {
    font-size: 2.54px !important;
    transform: translate(4%, -10%) scale(1.38) !important;
  }
}

@media (max-width: 380px) {
  .hero-content .hero-title,
  .hero-content.is-stat-mode .hero-title {
    font-size: 1.95rem !important;
  }

  .hero-ascii-wrap {
    top: 4.55rem !important;
    right: -17.4rem !important;
    width: 565px !important;
    height: 565px !important;
  }

  .hero-ascii {
    font-size: 2.44px !important;
  }
}

/* ===================================================
   V19 — ajustements ASCII : mobile propre + explosion nette
   =================================================== */
@media (min-width: 881px) {
  .hero-ascii-wrap {
    width: min(68vw, 1240px) !important;
    height: clamp(720px, 78vh, 940px) !important;
    top: clamp(10.2rem, 17.6vh, 13.4rem) !important;
    right: max(1.2vw, calc((100vw - var(--container-max)) / 2 - 7rem)) !important;
    opacity: 1 !important;
  }

  .hero-ascii {
    font-size: clamp(5.35px, .315vw, 7.6px) !important;
    line-height: .815 !important;
    letter-spacing: -.118em !important;
    color: rgba(82, 74, 66, .36) !important;
    transform: translate(0%, 1.2%) scale(1.32) !important;
    filter: none !important;
  }
}

@media (min-width: 1800px) {
  .hero-ascii-wrap {
    width: 1240px !important;
    height: 940px !important;
    top: clamp(10.3rem, 17.7vh, 13.6rem) !important;
    right: calc((100vw - var(--container-max)) / 2 - 7.4rem) !important;
  }

  .hero-ascii {
    font-size: 6.65px !important;
    transform: translate(0%, 1.2%) scale(1.32) !important;
  }
}

@media (max-width: 880px) {
  .hero-sticky {
    min-height: 100svh !important;
  }

  .hero-split-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 100svh !important;
    padding-top: calc(var(--nav-h, 64px) + .35rem) !important;
    padding-bottom: 2.25rem !important;
  }

  .hero-content {
    width: 100% !important;
    margin-top: -1.1rem !important;
  }

  .hero-content .hero-title,
  .hero-content.is-stat-mode .hero-title {
    font-size: clamp(2.02rem, 9vw, 2.72rem) !important;
    line-height: .93 !important;
    max-width: 8.25em !important;
  }

  .hero-content .hero-sub,
  .hero-content.is-stat-mode .hero-sub {
    max-width: 91vw !important;
    font-size: .81rem !important;
    line-height: 1.35 !important;
  }

  .hero-content .hero-cta {
    margin-top: 1.15rem !important;
  }

  .hero-ascii-wrap {
    top: 2.65rem !important;
    right: -14.4rem !important;
    width: 660px !important;
    height: 660px !important;
    opacity: .88 !important;
  }

  .hero-ascii {
    font-size: 2.78px !important;
    line-height: .80 !important;
    letter-spacing: -.134em !important;
    color: rgba(65, 58, 52, .31) !important;
    transform: translate(3.5%, -16%) scale(1.46) !important;
    filter: none !important;
  }
}

@media (max-width: 430px) {
  .hero-content {
    margin-top: -1.35rem !important;
  }

  .hero-ascii-wrap {
    top: 2.35rem !important;
    right: -15.15rem !important;
    width: 650px !important;
    height: 650px !important;
  }

  .hero-ascii {
    font-size: 2.66px !important;
    transform: translate(3.2%, -16%) scale(1.46) !important;
  }
}

@media (max-width: 380px) {
  .hero-content .hero-title,
  .hero-content.is-stat-mode .hero-title {
    font-size: 1.92rem !important;
  }

  .hero-ascii-wrap {
    top: 2.2rem !important;
    right: -15.9rem !important;
    width: 630px !important;
    height: 630px !important;
  }

  .hero-ascii {
    font-size: 2.52px !important;
  }
}

/* ===================================================
   V20 — final ASCII placement + mobile text-only hero
   =================================================== */
@media (min-width: 881px) {
  .hero-ascii-wrap {
    width: min(70vw, 1300px) !important;
    height: clamp(720px, 76vh, 940px) !important;
    top: clamp(7.4rem, 13.4vh, 10.2rem) !important;
    right: calc((100vw - var(--container-max)) / 2 + 1.6rem) !important;
    opacity: 1 !important;
  }

  .hero-ascii {
    font-size: clamp(5.65px, .335vw, 7.9px) !important;
    line-height: .815 !important;
    letter-spacing: -.118em !important;
    color: rgba(82, 74, 66, .36) !important;
    transform: translate(-4.8%, -8.5%) scale(1.28) !important;
    filter: none !important;
  }
}

@media (min-width: 1800px) {
  .hero-ascii-wrap {
    width: 1300px !important;
    height: 940px !important;
    top: clamp(7.5rem, 13.2vh, 10rem) !important;
    right: calc((100vw - var(--container-max)) / 2 + 2.6rem) !important;
  }

  .hero-ascii {
    font-size: 6.95px !important;
    transform: translate(-4.8%, -8.5%) scale(1.28) !important;
  }
}

@media (max-width: 880px) {
  .hero {
    height: 430vh !important;
    min-height: 430vh !important;
  }

  .hero-sticky {
    min-height: 100svh !important;
    height: 100svh !important;
    overflow: hidden !important;
  }

  .hero-split-inner {
    min-height: 100svh !important;
    height: 100svh !important;
    padding-top: calc(var(--nav-h, 64px) + .95rem) !important;
    padding-bottom: 1.25rem !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
  }

  .hero-content {
    width: 100% !important;
    min-height: calc(100svh - var(--nav-h, 64px) - 2.2rem) !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    z-index: 4 !important;
  }

  .hero-content .hero-badge {
    align-self: flex-start !important;
    margin-top: .35rem !important;
    margin-bottom: clamp(1.9rem, 8svh, 4.2rem) !important;
  }

  .hero-content .hero-title,
  .hero-content.is-stat-mode .hero-title {
    font-size: clamp(3.05rem, 14.2vw, 5.15rem) !important;
    line-height: .88 !important;
    max-width: 7.4em !important;
    letter-spacing: -.062em !important;
    margin: 0 0 .95rem 0 !important;
  }

  .hero-content.is-stat-mode .hero-title {
    font-size: clamp(3.35rem, 15vw, 5.25rem) !important;
    max-width: 8.1em !important;
  }

  .hero-content .hero-sub,
  .hero-content.is-stat-mode .hero-sub {
    font-size: clamp(.94rem, 3.9vw, 1.1rem) !important;
    line-height: 1.36 !important;
    max-width: 94vw !important;
    margin: .65rem 0 1.15rem 0 !important;
  }

  .hero-content.is-stat-mode .hero-sub {
    font-size: clamp(1rem, 4.1vw, 1.16rem) !important;
    max-width: 92vw !important;
  }

  .hero-content .hero-cta {
    margin-top: auto !important;
    padding-bottom: clamp(.35rem, 2.4svh, 1.4rem) !important;
    width: 100% !important;
    gap: .78rem !important;
  }

  .hero-content .hero-cta .btn {
    min-height: 3.15rem !important;
  }

  .hero-ascii-wrap,
  .hero-ascii,
  .hero-ascii-globe,
  .hero-ascii-logo {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

@media (max-width: 430px) {
  .hero-content .hero-badge {
    margin-bottom: clamp(1.65rem, 7svh, 3.45rem) !important;
  }

  .hero-content .hero-title,
  .hero-content.is-stat-mode .hero-title {
    font-size: clamp(2.82rem, 13vw, 4.1rem) !important;
  }

  .hero-content .hero-sub,
  .hero-content.is-stat-mode .hero-sub {
    font-size: .98rem !important;
  }
}

@media (max-width: 380px) {
  .hero-content .hero-title,
  .hero-content.is-stat-mode .hero-title {
    font-size: clamp(2.55rem, 12.5vw, 3.75rem) !important;
  }

  .hero-content .hero-sub,
  .hero-content.is-stat-mode .hero-sub {
    font-size: .91rem !important;
  }
}

/* ===================================================
   V21 — mobile globe restored + desktop globe closer
   =================================================== */
@media (min-width: 881px) {
  .hero-ascii-wrap {
    /* Plus proche du texte : on augmente le right pour ramener le bloc vers la gauche */
    right: calc((100vw - var(--container-max)) / 2 + 12.5rem) !important;
    top: clamp(6.6rem, 12.2vh, 9.25rem) !important;
    width: min(72vw, 1320px) !important;
    height: clamp(735px, 78vh, 960px) !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: clamp(5.75px, .34vw, 8.05px) !important;
    transform: translate(-4.5%, -10.5%) scale(1.28) !important;
  }
}

@media (min-width: 1800px) {
  .hero-ascii-wrap {
    right: calc((100vw - var(--container-max)) / 2 + 13.6rem) !important;
    top: clamp(6.7rem, 12vh, 9.1rem) !important;
    width: 1320px !important;
    height: 960px !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 7.05px !important;
    transform: translate(-4.5%, -10.5%) scale(1.28) !important;
  }
}

@media (max-width: 880px) {
  /* On réactive le globe uniquement dans l’espace entre le sous-titre et les boutons. */
  .hero-ascii-wrap {
    display: flex !important;
    visibility: visible !important;
    opacity: .62 !important;
    position: absolute !important;
    z-index: 2 !important;
    pointer-events: none !important;
    top: 44.5svh !important;
    right: -10.6rem !important;
    width: 550px !important;
    height: 330px !important;
    overflow: visible !important;
    align-items: center !important;
    justify-content: center !important;
    mix-blend-mode: multiply !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    display: block !important;
    visibility: visible !important;
    opacity: .74 !important;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
    font-size: 2.22px !important;
    line-height: .80 !important;
    letter-spacing: -.133em !important;
    color: rgba(65, 58, 52, .31) !important;
    transform: translate(2%, -7%) scale(1.28) !important;
    transform-origin: center center !important;
    filter: none !important;
    max-width: none !important;
    white-space: pre !important;
  }

  .hero-content {
    z-index: 4 !important;
  }
}

@media (max-width: 430px) {
  .hero-ascii-wrap {
    top: 44.8svh !important;
    right: -11.8rem !important;
    width: 540px !important;
    height: 330px !important;
    opacity: .66 !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 2.12px !important;
    transform: translate(2%, -6%) scale(1.3) !important;
  }
}

@media (max-width: 380px) {
  .hero-ascii-wrap {
    top: 45.4svh !important;
    right: -12.4rem !important;
    width: 520px !important;
    height: 320px !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 2.02px !important;
  }
}

/* ===================================================
   V22 — placement final ASCII : desktop + mobile
   =================================================== */
@media (min-width: 881px) {
  .hero-ascii-wrap {
    /* On ramène visuellement le globe vers le bloc texte sans toucher au hero. */
    right: calc((100vw - var(--container-max)) / 2 + 20.5rem) !important;
    top: clamp(6.15rem, 11.4vh, 8.75rem) !important;
    width: min(74vw, 1340px) !important;
    height: clamp(735px, 78vh, 970px) !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: clamp(5.85px, .35vw, 8.15px) !important;
    transform: translate(-16%, -10.5%) scale(1.28) !important;
  }
}

@media (min-width: 1800px) {
  .hero-ascii-wrap {
    right: calc((100vw - var(--container-max)) / 2 + 22rem) !important;
    top: clamp(6.25rem, 11.2vh, 8.65rem) !important;
    width: 1340px !important;
    height: 970px !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 7.15px !important;
    transform: translate(-16%, -10.5%) scale(1.28) !important;
  }
}

@media (max-width: 880px) {
  .hero-ascii-wrap {
    left: 50% !important;
    right: auto !important;
    top: 45.5svh !important;
    width: min(650px, 150vw) !important;
    height: 330px !important;
    transform: translateX(-50%) !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 2.18px !important;
    transform: translate(-12%, -7%) scale(1.32) !important;
    transform-origin: center center !important;
  }
}

@media (max-width: 430px) {
  .hero-ascii-wrap {
    left: 50% !important;
    right: auto !important;
    top: 45.2svh !important;
    width: 620px !important;
    height: 330px !important;
    transform: translateX(-50%) !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 2.08px !important;
    transform: translate(-12%, -6%) scale(1.34) !important;
  }
}

@media (max-width: 380px) {
  .hero-ascii-wrap {
    top: 45.6svh !important;
    width: 590px !important;
    height: 320px !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 1.98px !important;
    transform: translate(-12%, -6%) scale(1.34) !important;
  }
}

/* ===================================================
   V23 — desktop globe only + stronger left placement
   =================================================== */
.hero-ascii-logo {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

@media (min-width: 881px) {
  .hero-ascii-wrap {
    right: calc((100vw - var(--container-max)) / 2 + 34rem) !important;
    top: clamp(6.05rem, 10.7vh, 8.35rem) !important;
    width: min(76vw, 1380px) !important;
    height: clamp(735px, 78vh, 980px) !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: clamp(5.95px, .365vw, 8.35px) !important;
    transform: translate(-30%, -9.5%) scale(1.30) !important;
  }
}

@media (min-width: 1800px) {
  .hero-ascii-wrap {
    right: calc((100vw - var(--container-max)) / 2 + 37rem) !important;
    top: clamp(6rem, 10.4vh, 8.25rem) !important;
    width: 1380px !important;
    height: 980px !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 7.35px !important;
    transform: translate(-31%, -9.5%) scale(1.30) !important;
  }
}

@media (max-width: 880px) {
  .hero-ascii-wrap,
  .hero-ascii,
  .hero-ascii-globe,
  .hero-ascii-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* ===================================================
   V24 — ASCII responsive final: desktop contained + mobile globe stable
   =================================================== */
@media (min-width: 881px) {
  .hero-ascii-wrap {
    /* plus contenu dans un écran 1920x1080 : moins large, moins haut, plus proche du texte */
    right: calc((100vw - var(--container-max)) / 2 + 18rem) !important;
    top: clamp(6.15rem, 10.8vh, 8.7rem) !important;
    width: min(58vw, 1040px) !important;
    height: clamp(600px, 66vh, 780px) !important;
    overflow: visible !important;
    opacity: 1 !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: clamp(4.85px, .295vw, 6.45px) !important;
    line-height: .815 !important;
    letter-spacing: -.118em !important;
    transform: translate(-44%, -8%) scale(1.06) !important;
    transform-origin: center center !important;
  }
}

@media (min-width: 1800px) {
  .hero-ascii-wrap {
    right: calc((100vw - var(--container-max)) / 2 + 20rem) !important;
    top: clamp(6.15rem, 10.6vh, 8.5rem) !important;
    width: 1040px !important;
    height: 780px !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 5.95px !important;
    transform: translate(-45%, -8%) scale(1.06) !important;
  }
}

@media (max-width: 880px) {
  /* Mobile : on remet le globe, mais plus bas, plus grand, et stable dans l'espace entre texte et boutons. */
  .hero-ascii-wrap {
    display: flex !important;
    visibility: visible !important;
    opacity: .58 !important;
    position: absolute !important;
    z-index: 1 !important;
    pointer-events: none !important;
    left: 50% !important;
    right: auto !important;
    top: 54svh !important;
    width: min(720px, 170vw) !important;
    height: 350px !important;
    transform: translateX(-50%) !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: visible !important;
    mix-blend-mode: multiply !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    display: block !important;
    visibility: visible !important;
    opacity: .72 !important;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
    font-size: 2.28px !important;
    line-height: .80 !important;
    letter-spacing: -.133em !important;
    color: rgba(65, 58, 52, .30) !important;
    transform: translate(-14%, -4%) scale(1.48) !important;
    transform-origin: center center !important;
    filter: none !important;
    max-width: none !important;
    white-space: pre !important;
  }

  /* Anti-saut : les textes gardent un espace fixe pendant les changements de slide. */
  .hero-content .hero-title,
  .hero-content.is-stat-mode .hero-title {
    min-height: 7.8rem !important;
  }

  .hero-content .hero-sub,
  .hero-content.is-stat-mode .hero-sub {
    min-height: 5.3rem !important;
  }

  .hero-content .hero-cta {
    position: relative !important;
    z-index: 5 !important;
  }
}

@media (max-width: 430px) {
  .hero-ascii-wrap {
    top: 54.5svh !important;
    width: 690px !important;
    height: 350px !important;
    opacity: .60 !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 2.18px !important;
    transform: translate(-14%, -4%) scale(1.52) !important;
  }

  .hero-content .hero-title,
  .hero-content.is-stat-mode .hero-title {
    min-height: 7.25rem !important;
  }

  .hero-content .hero-sub,
  .hero-content.is-stat-mode .hero-sub {
    min-height: 5.55rem !important;
  }
}

@media (max-width: 380px) {
  .hero-ascii-wrap {
    top: 55svh !important;
    width: 650px !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 2.08px !important;
    transform: translate(-14%, -4%) scale(1.52) !important;
  }
}

/* build: V24 ascii responsive */

/* ===================================================
   V25 — AI stack + fixed social dock
   =================================================== */
.ai-stack {
  position: relative;
  z-index: 4;
  padding: clamp(2.8rem, 5vw, 5.2rem) 0 clamp(1.6rem, 3.2vw, 3.2rem);
  background: var(--bg);
}

.ai-stack-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .72fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  border-top: 1px solid rgba(12, 12, 12, .075);
  border-bottom: 1px solid rgba(12, 12, 12, .075);
  padding: clamp(1.45rem, 3vw, 2.2rem) 0;
}

.ai-stack .eyebrow {
  margin-bottom: .82rem;
}

.ai-stack-title {
  margin: 0;
  max-width: 660px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 4.2rem);
  line-height: .96;
  letter-spacing: -.055em;
  color: var(--text);
}

.ai-stack-text {
  max-width: 590px;
  margin: 1.05rem 0 0;
  color: rgba(14, 14, 14, .66);
  font-size: clamp(.98rem, 1.15vw, 1.13rem);
  line-height: 1.58;
}

.ai-models {
  display: grid;
  gap: .85rem;
}

.ai-model-card {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .95rem 1.1rem;
  border: 1px solid rgba(12, 12, 12, .075);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .50);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .035);
  backdrop-filter: blur(12px);
}

.ai-model-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: #0b0b0b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.ai-model-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: invert(1) grayscale(1) contrast(1.05);
  opacity: .92;
}

.ai-model-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -.02em;
  margin-bottom: .16rem;
}

.ai-model-card span:not(.ai-model-icon) {
  display: block;
  color: rgba(14, 14, 14, .56);
  font-size: .88rem;
  line-height: 1.35;
}

.social-dock {
  position: fixed;
  left: max(1rem, calc((100vw - var(--container)) / 2));
  bottom: 1.05rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  border: 1px solid rgba(12, 12, 12, .08);
  border-radius: 999px;
  background: rgba(247, 246, 243, .76);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: .28rem;
}

.social-dock-toggle {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  height: 2.25rem;
  padding: 0 .9rem;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: -.015em;
  white-space: nowrap;
}

.social-dock-links {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-.25rem);
  transition: max-width .42s cubic-bezier(.2,.8,.2,1), opacity .28s ease, transform .42s cubic-bezier(.2,.8,.2,1);
}

.social-dock.is-open .social-dock-links {
  max-width: 9.5rem;
  opacity: 1;
  transform: translateX(0);
}

.social-dock-links a,
.social-dock-links button {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #0b0b0b;
  box-shadow: inset 0 0 0 1px rgba(12, 12, 12, .075);
  transition: transform .2s ease, background .2s ease;
}

.social-dock-links a:hover,
.social-dock-links button:hover {
  transform: translateY(-1px);
  background: #fff;
}

.social-dock-links img,
.social-dock-links svg {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  color: currentColor;
}

@media (max-width: 880px) {
  .ai-stack {
    padding: 2rem 0 1.25rem;
  }

  .ai-stack-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.2rem 0;
  }

  .ai-stack-title {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .ai-stack-text {
    margin-top: .85rem;
    font-size: .96rem;
  }

  .ai-model-card {
    min-height: 74px;
    border-radius: 1.05rem;
    padding: .8rem .85rem;
  }

  .ai-model-icon {
    width: 42px;
    height: 42px;
    border-radius: .85rem;
  }

  .ai-model-icon img {
    width: 22px;
    height: 22px;
  }

  .social-dock {
    left: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    max-width: calc(100vw - 2rem);
  }

  .social-dock-toggle {
    max-width: 10.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* build: V25 social + ai stack */

/* build: V26 social preview + Claude color + IA wording */
.ai-model-icon.is-color {
  background: rgba(217, 119, 87, .10);
  box-shadow: inset 0 0 0 1px rgba(217, 119, 87, .18), 0 10px 24px rgba(217, 119, 87, .08);
}

.ai-model-icon.is-color img {
  filter: none !important;
  opacity: 1;
  width: 27px;
  height: 27px;
}

.social-dock {
  gap: .22rem;
  padding: .32rem;
  border-color: rgba(12, 12, 12, .10);
  background: rgba(247, 246, 243, .82);
}

.social-dock-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .64rem;
  min-width: 12.75rem;
  height: 2.55rem;
  padding: 0 .58rem 0 1rem;
  background: #0a0a0a;
  overflow: hidden;
  transition: min-width .34s cubic-bezier(.2,.8,.2,1), background .2s ease, transform .2s ease;
}

.social-dock-toggle:hover {
  transform: translateY(-1px);
}

.social-dock-label {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  text-align: left;
}

.social-dock-preview {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding-right: .16rem;
}

.social-dock-preview span {
  width: 1.82rem;
  height: 1.82rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 0 0 1px rgba(255,255,255,.24), 0 8px 18px rgba(0,0,0,.18);
}

.social-dock-preview span + span {
  margin-left: -.54rem;
}

.social-dock-preview img {
  width: .88rem;
  height: .88rem;
  object-fit: contain;
}

.social-dock.is-open .social-dock-toggle {
  min-width: 10.85rem;
}

.social-dock.is-open .social-dock-preview {
  opacity: .26;
  transform: translateX(.18rem) scale(.96);
  transition: opacity .2s ease, transform .2s ease;
}

.social-dock-links {
  gap: .34rem;
}

.social-dock.is-open .social-dock-links {
  max-width: 10.8rem;
}

.social-dock-links a,
.social-dock-links button {
  width: 2.46rem;
  height: 2.46rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(12, 12, 12, .075), 0 9px 22px rgba(0,0,0,.08);
}

.social-dock-links img,
.social-dock-links svg {
  width: 1.08rem;
  height: 1.08rem;
}

@media (max-width: 880px) {
  .social-dock {
    left: .9rem;
    bottom: calc(.9rem + env(safe-area-inset-bottom));
  }

  .social-dock-toggle {
    min-width: 11.9rem;
    height: 2.45rem;
    padding-left: .9rem;
    gap: .48rem;
  }

  .social-dock-label {
    font-size: .75rem;
  }

  .social-dock-preview span {
    width: 1.65rem;
    height: 1.65rem;
  }

  .social-dock-preview span + span {
    margin-left: -.48rem;
  }

  .social-dock.is-open .social-dock-toggle {
    min-width: 9.8rem;
  }
}

/* build: V27 social dock black-only + facebook */
.social-dock {
  position: fixed;
  left: max(1.35rem, calc((100vw - var(--container)) / 2));
  bottom: calc(1.15rem + env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #050505;
  box-shadow: 0 18px 44px rgba(0,0,0,.20), inset 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
  isolation: isolate;
  transition: width .46s cubic-bezier(.16,1,.3,1), transform .22s ease, box-shadow .22s ease;
  width: 16.6rem;
  max-width: calc(100vw - 2rem);
}

.social-dock:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.10);
}

.social-dock.is-open {
  width: 23.8rem;
}

.social-dock-toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .64rem;
  height: 2.78rem;
  min-width: 16.6rem;
  width: 16.6rem;
  padding: 0 .72rem 0 1.05rem;
  border: 0;
  border-radius: 999px;
  background: transparent !important;
  color: #fff;
  cursor: pointer;
  overflow: visible;
  transition: width .46s cubic-bezier(.16,1,.3,1), min-width .46s cubic-bezier(.16,1,.3,1), padding .32s ease, transform .2s ease;
}

.social-dock.is-open .social-dock-toggle {
  width: 12.25rem;
  min-width: 12.25rem;
  padding-right: .25rem;
}

.social-dock-label {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  color: #fff;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.social-dock-preview {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 4.6rem;
  height: 2rem;
  transition: opacity .24s ease, transform .32s cubic-bezier(.16,1,.3,1);
}

.social-dock-preview span {
  position: relative;
  width: 1.76rem;
  height: 1.76rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 18px rgba(0,0,0,.20), inset 0 0 0 1px rgba(0,0,0,.07);
  transition: transform .34s cubic-bezier(.16,1,.3,1), opacity .22s ease;
}

.social-dock-preview span + span { margin-left: -.72rem; }
.social-dock-preview span:nth-child(1) { z-index: 4; }
.social-dock-preview span:nth-child(2) { z-index: 3; }
.social-dock-preview span:nth-child(3) { z-index: 2; }
.social-dock-preview span:nth-child(4) { z-index: 1; }
.social-dock-preview img { width: .88rem; height: .88rem; object-fit: contain; }

.social-dock.is-open .social-dock-preview {
  opacity: 0;
  transform: translateX(.6rem) scale(.9);
  pointer-events: none;
}

.social-dock-links {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .52rem;
  width: 0;
  max-width: none;
  opacity: 0;
  transform: translateX(-.5rem);
  padding-right: .62rem;
  overflow: hidden;
  transition: width .46s cubic-bezier(.16,1,.3,1), opacity .24s ease, transform .46s cubic-bezier(.16,1,.3,1);
}

.social-dock.is-open .social-dock-links {
  width: 11.05rem;
  opacity: 1;
  transform: translateX(0);
}

.social-dock-links a,
.social-dock-links button {
  flex: 0 0 auto;
  width: 2.05rem;
  height: 2.05rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.075), 0 10px 22px rgba(0,0,0,.18);
  cursor: pointer;
  transform: translateX(-.35rem) scale(.92);
  opacity: .2;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .22s ease, background .2s ease;
}

.social-dock.is-open .social-dock-links a,
.social-dock.is-open .social-dock-links button {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.social-dock.is-open .social-dock-links a:nth-child(1) { transition-delay: .04s; }
.social-dock.is-open .social-dock-links a:nth-child(2) { transition-delay: .08s; }
.social-dock.is-open .social-dock-links a:nth-child(3) { transition-delay: .12s; }
.social-dock.is-open .social-dock-links button:nth-child(4) { transition-delay: .16s; }

.social-dock-links a:hover,
.social-dock-links button:hover {
  background: #fff;
  transform: translateY(-1px) scale(1.04) !important;
}

.social-dock-links img,
.social-dock-links svg {
  width: 1.02rem;
  height: 1.02rem;
  object-fit: contain;
}

@media (max-width: 880px) {
  .social-dock {
    left: .9rem;
    bottom: calc(.9rem + env(safe-area-inset-bottom));
    width: 14.85rem;
  }

  .social-dock.is-open {
    width: min(22.2rem, calc(100vw - 1.8rem));
  }

  .social-dock-toggle {
    height: 2.62rem;
    width: 14.85rem;
    min-width: 14.85rem;
    padding-left: .92rem;
  }

  .social-dock.is-open .social-dock-toggle {
    width: 10.9rem;
    min-width: 10.9rem;
  }

  .social-dock-label {
    font-size: .72rem;
  }

  .social-dock-preview {
    width: 4.15rem;
  }

  .social-dock-preview span {
    width: 1.58rem;
    height: 1.58rem;
  }

  .social-dock-preview span + span {
    margin-left: -.65rem;
  }

  .social-dock.is-open .social-dock-links {
    width: 10.35rem;
  }

  .social-dock-links {
    gap: .42rem;
    padding-right: .5rem;
  }

  .social-dock-links a,
  .social-dock-links button {
    width: 1.92rem;
    height: 1.92rem;
  }
}


/* build: V28 social dock — label + fluid icon spread */
.social-dock {
  width: 13.85rem !important;
  min-height: 2.74rem;
  display: inline-flex;
  align-items: center;
  background: #050505 !important;
  border-radius: 999px;
  overflow: hidden;
  transition:
    width .72s cubic-bezier(.19, 1, .22, 1),
    transform .24s ease,
    box-shadow .24s ease !important;
}

.social-dock.is-open {
  width: 24.2rem !important;
}

.social-dock-toggle {
  width: 8.8rem !important;
  min-width: 8.8rem !important;
  height: 2.74rem !important;
  padding: 0 0 0 1.08rem !important;
  gap: 0 !important;
  transition:
    width .72s cubic-bezier(.19, 1, .22, 1),
    min-width .72s cubic-bezier(.19, 1, .22, 1),
    padding .42s ease !important;
}

.social-dock.is-open .social-dock-toggle {
  width: 8.15rem !important;
  min-width: 8.15rem !important;
  padding-left: 1.08rem !important;
  padding-right: 0 !important;
}

.social-dock-label {
  font-size: .76rem !important;
  font-weight: 450 !important;
  letter-spacing: .01em !important;
  opacity: .96;
}

/* The old duplicated preview is no longer used: the real icons act as the preview. */
.social-dock-preview {
  display: none !important;
}

.social-dock-links {
  position: relative !important;
  z-index: 4;
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: 0 !important;
  width: 4.45rem !important;
  min-width: 4.45rem !important;
  max-width: none !important;
  opacity: 1 !important;
  transform: translateX(0) !important;
  padding: 0 .78rem 0 0 !important;
  overflow: visible !important;
  pointer-events: none;
  transition:
    width .72s cubic-bezier(.19, 1, .22, 1),
    min-width .72s cubic-bezier(.19, 1, .22, 1),
    gap .72s cubic-bezier(.19, 1, .22, 1),
    padding .72s cubic-bezier(.19, 1, .22, 1) !important;
}

.social-dock.is-open .social-dock-links {
  width: 15.6rem !important;
  min-width: 15.6rem !important;
  gap: .72rem !important;
  padding-right: .72rem !important;
  pointer-events: auto;
}

.social-dock-links a,
.social-dock-links button {
  width: 2.08rem !important;
  height: 2.08rem !important;
  min-width: 2.08rem;
  background: #fff !important;
  opacity: 1 !important;
  transform: translateX(0) scale(1) !important;
  box-shadow: 0 9px 22px rgba(0,0,0,.22), inset 0 0 0 1px rgba(0,0,0,.08) !important;
  margin-left: -1.24rem;
  transition:
    margin-left .72s cubic-bezier(.19, 1, .22, 1),
    transform .34s cubic-bezier(.19, 1, .22, 1),
    box-shadow .24s ease,
    background .24s ease !important;
}

.social-dock-links a:first-child,
.social-dock-links button:first-child {
  margin-left: 0;
}

.social-dock.is-open .social-dock-links a,
.social-dock.is-open .social-dock-links button {
  margin-left: 0 !important;
}

.social-dock-links a:nth-child(1),
.social-dock-links button:nth-child(1) { z-index: 4; }
.social-dock-links a:nth-child(2),
.social-dock-links button:nth-child(2) { z-index: 3; }
.social-dock-links a:nth-child(3),
.social-dock-links button:nth-child(3) { z-index: 2; }
.social-dock-links a:nth-child(4),
.social-dock-links button:nth-child(4) { z-index: 1; }

.social-dock.is-open .social-dock-links a:hover,
.social-dock.is-open .social-dock-links button:hover {
  transform: translateY(-2px) scale(1.045) !important;
  box-shadow: 0 12px 26px rgba(0,0,0,.28), inset 0 0 0 1px rgba(0,0,0,.08) !important;
}

.social-dock:not(.is-open) .social-dock-links a,
.social-dock:not(.is-open) .social-dock-links button {
  cursor: default;
}

@media (max-width: 880px) {
  .social-dock {
    width: 12.8rem !important;
    min-height: 2.6rem;
  }

  .social-dock.is-open {
    width: min(22.4rem, calc(100vw - 1.8rem)) !important;
  }

  .social-dock-toggle {
    width: 7.75rem !important;
    min-width: 7.75rem !important;
    height: 2.6rem !important;
    padding-left: .92rem !important;
  }

  .social-dock.is-open .social-dock-toggle {
    width: 7.2rem !important;
    min-width: 7.2rem !important;
  }

  .social-dock-label {
    font-size: .7rem !important;
  }

  .social-dock-links {
    width: 4.25rem !important;
    min-width: 4.25rem !important;
    padding-right: .62rem !important;
  }

  .social-dock.is-open .social-dock-links {
    width: 14.2rem !important;
    min-width: 14.2rem !important;
    gap: .54rem !important;
  }

  .social-dock-links a,
  .social-dock-links button {
    width: 1.95rem !important;
    height: 1.95rem !important;
    min-width: 1.95rem;
    margin-left: -1.13rem;
  }
}


/* ===================================================
   V29 — ASCII responsive correction
   - desktop: globe contained in 1920x1080
   - mobile: globe preserved, larger and lower
   - mobile: stable pinned text animation
   =================================================== */
@media (min-width: 881px) {
  .hero-ascii-wrap {
    position: absolute !important;
    left: min(61vw, calc((100vw - var(--container-max)) / 2 + 720px)) !important;
    right: auto !important;
    top: clamp(7.2rem, 15.2vh, 10.4rem) !important;
    width: min(40vw, 760px) !important;
    height: min(58vh, 620px) !important;
    overflow: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: clamp(3.85px, .235vw, 4.75px) !important;
    line-height: .805 !important;
    letter-spacing: -.124em !important;
    transform: translate(-18%, -6%) scale(1) !important;
    transform-origin: center center !important;
    opacity: .92 !important;
    color: rgba(49,45,40,.38) !important;
  }
}

@media (min-width: 1800px) {
  .hero-ascii-wrap {
    left: calc((100vw - var(--container-max)) / 2 + 720px) !important;
    top: clamp(7.4rem, 15.5vh, 10.8rem) !important;
    width: 760px !important;
    height: 620px !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 4.45px !important;
    transform: translate(-18%, -6%) scale(1) !important;
  }
}

@media (min-width: 2200px) {
  .hero-ascii-wrap {
    left: calc((100vw - var(--container-max)) / 2 + 760px) !important;
    width: 800px !important;
  }
}

@media (max-width: 880px) {
  .hero {
    min-height: 260svh !important;
  }

  .hero-sticky {
    min-height: 100svh !important;
  }

  .hero-split-inner {
    min-height: calc(100svh - var(--nav-height-mobile, 64px)) !important;
  }

  .hero-ascii-wrap {
    display: flex !important;
    visibility: visible !important;
    opacity: .62 !important;
    position: absolute !important;
    z-index: 1 !important;
    pointer-events: none !important;
    left: 50% !important;
    right: auto !important;
    top: 59svh !important;
    width: min(820px, 205vw) !important;
    height: 380px !important;
    transform: translateX(-50%) !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: visible !important;
    mix-blend-mode: multiply !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    display: block !important;
    visibility: visible !important;
    opacity: .70 !important;
    font-size: 2.34px !important;
    line-height: .79 !important;
    letter-spacing: -.135em !important;
    color: rgba(58, 52, 47, .30) !important;
    transform: translate(-8%, 2%) scale(1.68) !important;
    transform-origin: center center !important;
    filter: none !important;
    max-width: none !important;
    white-space: pre !important;
  }

  .hero-content .hero-title,
  .hero-content.is-stat-mode .hero-title {
    min-height: 7.3rem !important;
  }

  .hero-content .hero-sub,
  .hero-content.is-stat-mode .hero-sub {
    min-height: 5.9rem !important;
  }
}

@media (max-width: 430px) {
  .hero-ascii-wrap {
    top: 60svh !important;
    width: 820px !important;
    height: 390px !important;
    opacity: .64 !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 2.30px !important;
    transform: translate(-8%, 3%) scale(1.75) !important;
  }
}

@media (max-width: 380px) {
  .hero-ascii-wrap {
    top: 60.5svh !important;
    width: 780px !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 2.22px !important;
    transform: translate(-8%, 3%) scale(1.73) !important;
  }
}

/* build: V29 ascii responsive fix */

/* ===================================================
   V30 — Mobile: suppression complète du globe ASCII
   - desktop inchangé
   - mobile: aucun globe, aucune animation du globe
   =================================================== */
@media (max-width: 880px) {
  .hero-ascii-wrap,
  .hero-ascii,
  .hero-ascii-globe {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .hero-content,
  .hero-content.is-stat-mode {
    z-index: 4 !important;
  }
}

/* build: V30 mobile no ascii globe */

/* ===================================================
   V31 — Desktop globe restored, contained and centered
   - mobile keeps no globe
   - desktop globe larger than V30 without overflowing 1920x1080
   =================================================== */
@media (min-width: 881px) {
  .hero-ascii-wrap {
    left: calc((100vw - min(1180px, calc(100vw - 48px))) / 2 + min(620px, 52vw)) !important;
    top: clamp(7.2rem, 14.2vh, 9.7rem) !important;
    width: min(46vw, 880px) !important;
    height: min(63vh, 680px) !important;
    transform: none !important;
    overflow: visible !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: clamp(4.65px, .285vw, 5.35px) !important;
    line-height: .805 !important;
    letter-spacing: -.124em !important;
    transform: translate(-24%, -4%) scale(1.08) !important;
    transform-origin: center center !important;
    opacity: .92 !important;
  }
}

@media (min-width: 1800px) and (max-width: 2099px) {
  .hero-ascii-wrap {
    left: calc((100vw - 1180px) / 2 + 610px) !important;
    top: clamp(7.4rem, 14.5vh, 9.9rem) !important;
    width: 880px !important;
    height: 680px !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 5.20px !important;
    transform: translate(-24%, -4%) scale(1.08) !important;
  }
}

@media (min-width: 2100px) {
  .hero-ascii-wrap {
    left: calc((100vw - 1180px) / 2 + 650px) !important;
    width: 920px !important;
  }

  .hero-ascii,
  .hero-ascii-globe {
    font-size: 5.35px !important;
  }
}

@media (max-width: 880px) {
  .hero-ascii-wrap,
  .hero-ascii,
  .hero-ascii-globe {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* build: V31 desktop ascii restored */

/* ===================================================
   V32 — Benefits slider below solutions heading
   =================================================== */
.benefit-slider {
  position: relative;
  margin: clamp(2rem, 4vw, 3.5rem) auto clamp(2.2rem, 4vw, 4rem);
  padding: clamp(1rem, 2vw, 1.25rem) 0 0;
  width: 100%;
}

.benefit-slider-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.benefit-slider-head .eyebrow {
  margin-bottom: .55rem;
}

.benefit-slider-head h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.1vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
  color: var(--black);
}

.benefit-slider-controls {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

.benefit-arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(12,12,12,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.62);
  color: rgba(10,10,10,.84);
  font-size: 1.05rem;
  line-height: 1;
  box-shadow: 0 14px 38px rgba(0,0,0,.045);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .35s ease, border-color .35s ease, opacity .35s ease;
}

.benefit-arrow:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(12,12,12,.2);
}

.benefit-arrow:active {
  transform: translateY(0) scale(.97);
}

.benefit-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.benefit-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
  transform: translate3d(0,0,0);
  transition: transform .72s cubic-bezier(.19,1,.22,1);
}

.benefit-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: 230px;
  padding: clamp(1.2rem, 2.2vw, 1.85rem);
  border: 1px solid rgba(12,12,12,.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.42));
  box-shadow: 0 22px 70px rgba(0,0,0,.045);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefit-value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .82;
  color: var(--black);
  margin-bottom: 1.6rem;
}

.benefit-title {
  margin: 0 0 .5rem;
  font-size: .95rem;
  font-weight: 650;
  letter-spacing: -.02em;
  color: var(--black);
}

.benefit-copy {
  margin: 0;
  max-width: 24rem;
  font-size: .88rem;
  line-height: 1.48;
  color: rgba(25,25,25,.58);
}

.benefit-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin-top: 1.15rem;
}

.benefit-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(10,10,10,.18);
  cursor: pointer;
  transition: width .35s cubic-bezier(.22,1,.36,1), background .35s ease, transform .35s ease;
}

.benefit-dot.active {
  width: 22px;
  background: rgba(10,10,10,.78);
}

.benefit-dot:hover {
  transform: scale(1.12);
}

@media (max-width: 980px) {
  .benefit-card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 680px) {
  .benefit-slider {
    margin-top: 2rem;
  }

  .benefit-slider-head {
    align-items: flex-start;
    gap: 1rem;
  }

  .benefit-slider-controls {
    position: absolute;
    right: 0;
    top: .25rem;
  }

  .benefit-arrow {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: rgba(255,255,255,.78);
  }

  .benefit-slider-head h3 {
    max-width: 14rem;
  }

  .benefit-viewport {
    overflow: visible;
  }

  .benefit-track {
    gap: .85rem;
  }

  .benefit-card {
    flex-basis: min(82vw, 330px);
    min-height: 220px;
    border-radius: 24px;
  }

  .benefit-value {
    font-size: clamp(3.35rem, 17vw, 4.8rem);
  }
}

/* build: V32 benefits slider */


/* ===================================================
   BENEFITS CAROUSEL
   =================================================== */
.benefits-section {
  padding-top: 2rem;
}

.benefits-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.benefits-head {
  margin-bottom: 0;
}

.benefits-intro {
  margin: 0;
}

.benefits-nav {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.benefits-arrow {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.76);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), border-color 0.22s var(--ease-out), background 0.22s var(--ease-out);
}

.benefits-arrow:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10,10,10,0.18);
  background: #fff;
}

.benefits-arrow:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: var(--shadow-sm);
}

.benefits-slider {
  position: relative;
  overflow: hidden;
}

.benefits-track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  transition: transform 0.55s var(--ease-out);
}

.benefit-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-height: 320px;
  padding: 1.75rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.benefit-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.benefit-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.benefit-value {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ink);
  flex-shrink: 0;
}

.benefit-card h3 {
  font-size: 1.3rem;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.benefit-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.58;
}

.benefits-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.benefits-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(10,10,10,0.15);
  cursor: pointer;
  transition: width 0.25s var(--ease-out), background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.benefits-dot.is-active {
  width: 24px;
  background: var(--ink);
}

.benefits-note {
  max-width: 70ch;
  margin: 1.25rem auto 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .benefits-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .benefit-card {
    flex-basis: calc((100% - 1.25rem) / 2);
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .benefits-section {
    padding-top: 1rem;
  }

  .benefits-header {
    margin-bottom: 1.25rem;
    gap: 1rem;
  }

  .benefits-nav {
    width: 100%;
    justify-content: space-between;
  }

  .benefits-arrow {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .benefit-card {
    flex-basis: 100%;
    min-height: auto;
    padding: 1.35rem;
    border-radius: 24px;
    gap: 1.1rem;
  }

  .benefit-card h3 {
    font-size: 1.12rem;
  }

  .benefit-card p {
    font-size: 0.94rem;
  }

  .benefit-value {
    font-size: 3rem;
  }

  .benefits-note {
    font-size: 0.8125rem;
    margin-top: 1rem;
  }
}


/* ===================================================
   V33 — Benefit slider repositioned under solution cards
   =================================================== */
#solutions .section-head {
  margin-bottom: clamp(2rem, 3vw, 2.75rem);
}

#solutions .solutions-grid {
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

#solutions .benefit-slider {
  margin: 0 auto 0;
  padding-top: clamp(1.1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(10,10,10,.08);
}

#solutions .benefit-slider-head {
  margin-bottom: 1.35rem;
  align-items: flex-end;
}

#solutions .benefit-slider-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}

#solutions .benefit-viewport {
  overflow: hidden;
  border-radius: 28px;
}

#solutions .benefit-track {
  gap: 1.1rem;
}

#solutions .benefit-card {
  flex: 0 0 calc((100% - 2.2rem) / 3);
  min-height: 240px;
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.64));
  border: 1px solid rgba(10,10,10,.07);
  box-shadow: 0 12px 30px rgba(10,10,10,.045);
  gap: 1rem;
}

#solutions .benefit-value {
  display: inline-block;
  margin-bottom: .8rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: .92;
  letter-spacing: -.04em;
}

#solutions .benefit-title {
  margin: 0 0 .45rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.015em;
}

#solutions .benefit-copy {
  margin: 0;
  font-family: var(--font-sans);
  font-size: .93rem;
  line-height: 1.55;
  color: rgba(12,12,12,.62);
  max-width: none;
}

#solutions .benefit-arrow {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  font-size: 1rem;
}

#solutions .benefit-dots {
  margin-top: 1.2rem;
}

#solutions .benefit-dot {
  width: 7px;
  height: 7px;
}

#solutions .benefit-dot.active {
  width: 18px;
}

@media (max-width: 980px) {
  #solutions .benefit-card {
    flex-basis: calc((100% - 1.1rem) / 2);
  }
}

@media (max-width: 680px) {
  #solutions .solutions-grid {
    margin-bottom: 2rem;
  }

  #solutions .benefit-slider {
    padding-top: 1rem;
  }

  #solutions .benefit-slider-head {
    align-items: flex-start;
    gap: .85rem;
  }

  #solutions .benefit-slider-head h3 {
    max-width: 14rem;
    font-size: 1.28rem;
  }

  #solutions .benefit-slider-controls {
    position: static;
  }

  #solutions .benefit-arrow {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  #solutions .benefit-card {
    flex-basis: min(86vw, 320px);
    min-height: 210px;
    padding: 1.15rem 1.1rem;
    border-radius: 22px;
  }

  #solutions .benefit-value {
    font-size: clamp(1.8rem, 10vw, 2.35rem);
    margin-bottom: .65rem;
  }

  #solutions .benefit-title {
    font-size: .96rem;
  }

  #solutions .benefit-copy {
    font-size: .9rem;
  }
}


/* ===================================================
   V34 — Benefits single section + solution card height fix
   =================================================== */

/* Les cartes solutions reprennent leur hauteur naturelle */
#solutions .solutions-grid {
  align-items: start;
}

#solutions .solution-card {
  align-self: start;
  height: auto;
  min-height: 0;
}

/* Une seule section bénéfices, sous les 3 cards métier */
#solutions .benefit-slider {
  margin: clamp(2.25rem, 4.5vw, 4rem) auto 0;
  padding-top: clamp(1.15rem, 2.2vw, 1.65rem);
  border-top: 1px solid rgba(10,10,10,.08);
}

/* Nettoyage des anciens styles dupliqués */
#solutions .benefits-section {
  display: none !important;
}

#solutions .benefit-slider-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

#solutions .benefit-slider-head h3 {
  margin: 0;
  max-width: 34rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.05vw, 2rem);
  line-height: 1.03;
  letter-spacing: -.03em;
  font-weight: 400;
}

#solutions .benefit-viewport {
  overflow: hidden;
  border-radius: 26px;
}

#solutions .benefit-track {
  display: flex;
  gap: 1rem;
  transition: transform .68s cubic-bezier(.19,1,.22,1);
}

#solutions .benefit-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: 218px;
  padding: 1.2rem 1.2rem 1.15rem;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(10,10,10,.075);
  box-shadow: 0 14px 40px rgba(10,10,10,.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .55rem;
}

#solutions .benefit-value {
  display: block;
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3vw, 2.75rem);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 400;
}

#solutions .benefit-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: .98rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -.015em;
}

#solutions .benefit-copy {
  margin: 0;
  font-family: var(--font-sans);
  font-size: .9rem;
  line-height: 1.52;
  color: rgba(12,12,12,.62);
}

#solutions .benefit-slider-controls {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

#solutions .benefit-arrow {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  border: 1px solid rgba(10,10,10,.12);
  background: rgba(255,255,255,.78);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(10,10,10,.04);
}

#solutions .benefit-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1rem;
}

#solutions .benefit-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(10,10,10,.18);
}

#solutions .benefit-dot.active {
  width: 18px;
  background: rgba(10,10,10,.78);
}

@media (max-width: 980px) {
  #solutions .benefit-card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 680px) {
  #solutions .benefit-slider {
    margin-top: 2rem;
    padding-top: 1rem;
  }

  #solutions .benefit-slider-head {
    align-items: flex-start;
    gap: 1rem;
  }

  #solutions .benefit-slider-head h3 {
    max-width: 15rem;
    font-size: 1.28rem;
  }

  #solutions .benefit-slider-controls {
    position: static;
  }

  #solutions .benefit-arrow {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  #solutions .benefit-card {
    flex-basis: min(86vw, 320px);
    min-height: 200px;
    padding: 1.05rem;
    border-radius: 21px;
  }

  #solutions .benefit-value {
    font-size: clamp(1.85rem, 9.5vw, 2.35rem);
  }

  #solutions .benefit-title {
    font-size: .95rem;
  }

  #solutions .benefit-copy {
    font-size: .88rem;
  }
}

/* ===================================================
   V35 — FINAL benefits under cards / no duplicate / no stretched cards
   =================================================== */

/* Suppression visuelle de tout ancien bloc éventuel */
.benefits-section,
section.benefits-section,
.benefits-carousel,
.benefits-slider,
.benefits-header,
.benefits-track,
.benefits-dots {
  display: none !important;
}

/* Les cards solutions restent naturelles, pas étirées par le slider */
#solutions .solutions-grid {
  display: grid;
  align-items: start !important;
  margin-bottom: clamp(2.8rem, 5vw, 4.5rem) !important;
}

#solutions .solution-card {
  height: auto !important;
  min-height: 0 !important;
  align-self: start !important;
}

/* Section bénéfices unique sous les 3 cards */
#solutions .benefit-slider {
  display: block !important;
  position: relative;
  width: 100%;
  margin: 0 auto !important;
  padding-top: clamp(1.15rem, 2.2vw, 1.65rem) !important;
  border-top: 1px solid rgba(10,10,10,.08);
}

#solutions .benefit-slider-head {
  display: flex !important;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

#solutions .benefit-slider-head h3 {
  margin: 0;
  max-width: 34rem;
  font-family: var(--font-display) !important;
  font-size: clamp(1.35rem, 2.05vw, 2rem) !important;
  line-height: 1.03;
  letter-spacing: -.03em;
  font-weight: 400;
}

#solutions .benefit-viewport {
  display: block !important;
  width: 100%;
  overflow: hidden !important;
  border-radius: 26px;
}

#solutions .benefit-track {
  display: flex !important;
  gap: 1rem;
  align-items: stretch;
  will-change: transform;
  transition: transform .68s cubic-bezier(.19,1,.22,1);
}

#solutions .benefit-card {
  display: flex !important;
  flex: 0 0 calc((100% - 2rem) / 3) !important;
  min-width: 0;
  min-height: 218px !important;
  height: auto !important;
  padding: 1.2rem 1.2rem 1.15rem !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(10,10,10,.075) !important;
  box-shadow: 0 14px 40px rgba(10,10,10,.04) !important;
  flex-direction: column;
  justify-content: flex-start;
  gap: .55rem;
}

#solutions .benefit-value {
  display: block;
  margin: 0 0 .55rem !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.95rem, 3vw, 2.75rem) !important;
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 400;
  color: var(--ink);
}

#solutions .benefit-title {
  margin: 0 !important;
  font-family: var(--font-sans) !important;
  font-size: .98rem !important;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -.015em;
}

#solutions .benefit-copy {
  margin: 0 !important;
  font-family: var(--font-sans) !important;
  font-size: .9rem !important;
  line-height: 1.52;
  color: rgba(12,12,12,.62);
  max-width: none;
}

#solutions .benefit-slider-controls {
  display: flex !important;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

#solutions .benefit-arrow {
  width: 48px !important;
  height: 48px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(10,10,10,.12) !important;
  background: rgba(255,255,255,.78) !important;
  color: var(--ink) !important;
  box-shadow: 0 10px 28px rgba(10,10,10,.04) !important;
  cursor: pointer;
}

#solutions .benefit-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: .45rem;
  margin-top: 1rem;
}

#solutions .benefit-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(10,10,10,.18);
}

#solutions .benefit-dot.active {
  width: 18px;
  background: rgba(10,10,10,.78);
}

@media (max-width: 980px) {
  #solutions .benefit-card {
    flex-basis: calc((100% - 1rem) / 2) !important;
  }
}

@media (max-width: 680px) {
  #solutions .solutions-grid {
    margin-bottom: 2rem !important;
  }

  #solutions .benefit-slider {
    padding-top: 1rem !important;
  }

  #solutions .benefit-slider-head {
    align-items: flex-start;
    gap: 1rem;
  }

  #solutions .benefit-slider-head h3 {
    max-width: 15rem;
    font-size: 1.28rem !important;
  }

  #solutions .benefit-slider-controls {
    position: static !important;
  }

  #solutions .benefit-arrow {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
  }

  #solutions .benefit-card {
    flex-basis: min(86vw, 320px) !important;
    min-height: 200px !important;
    padding: 1.05rem !important;
    border-radius: 21px !important;
  }

  #solutions .benefit-value {
    font-size: clamp(1.85rem, 9.5vw, 2.35rem) !important;
  }

  #solutions .benefit-title {
    font-size: .95rem !important;
  }

  #solutions .benefit-copy {
    font-size: .88rem !important;
  }
}

/* build: V35 benefits fixed final */

/* ===================================================
   V36 — Architecture WebFactory
   =================================================== */

.wf-architecture-section .section-head {
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.wf-architecture-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(320px, 368px);
  gap: 1.5rem;
  align-items: start;
}

.wf-architecture-board {
  position: relative;
  min-height: 980px;
  padding: 1.75rem;
  border-radius: 34px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.82), rgba(255,255,255,.62) 44%, rgba(247,246,243,.92) 100%),
    linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.45));
  box-shadow: 0 24px 64px rgba(10,10,10,.045);
  overflow: hidden;
  isolation: isolate;
}

.wf-architecture-board::before,
.wf-architecture-board::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wf-architecture-board::before {
  background-image: radial-gradient(circle, rgba(10,10,10,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.05) 35%, transparent 100%);
  opacity: .55;
}

.wf-architecture-board::after {
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.9), transparent 38%),
    radial-gradient(circle at 82% 14%, rgba(255,255,255,.55), transparent 34%),
    radial-gradient(circle at 48% 68%, rgba(255,255,255,.6), transparent 28%);
  opacity: .82;
}

.wf-board-kicker {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .48rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(10,10,10,.08);
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(10,10,10,.04);
  font-size: .76rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(10,10,10,.62);
}

.wf-board-kicker--left { top: 1.35rem; left: 1.35rem; }
.wf-board-kicker--center { top: 1.35rem; left: 50%; transform: translateX(-50%); }
.wf-board-kicker--right { top: 1.35rem; right: 1.35rem; }

.wf-board-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(10,10,10,.1);
  background: rgba(247,246,243,.96);
  color: var(--ink);
  font-size: .82rem;
  letter-spacing: 0;
  font-weight: 600;
  flex-shrink: 0;
}

.wf-arch-node {
  position: absolute;
  z-index: 2;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  animation: wfArchFloat 9s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.wf-arch-node--left {
  left: var(--x);
  top: var(--y);
}

.wf-arch-node--right {
  right: var(--x);
  top: var(--y);
}

.wf-arch-chip,
.wf-arch-capability,
.wf-arch-mini {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(10,10,10,.09);
  background: rgba(255,255,255,.84);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(10,10,10,.04);
  font-family: var(--font-sans);
  font-size: .94rem;
  line-height: 1.25;
  letter-spacing: -.01em;
  text-align: center;
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.wf-arch-chip {
  max-width: 15rem;
}

.wf-arch-node:hover .wf-arch-chip,
.wf-arch-capability:hover,
.wf-arch-mini:hover,
.wf-arch-node.is-active .wf-arch-chip,
.wf-arch-capability.is-active,
.wf-arch-mini.is-active,
.wf-arch-pill.is-active {
  border-color: rgba(10,10,10,.18);
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 38px rgba(10,10,10,.07);
  transform: translateY(-1px);
}

.wf-arch-connector {
  position: absolute;
  top: 50%;
  height: 1px;
  background: rgba(10,10,10,.14);
  pointer-events: none;
}

.wf-arch-connector::before,
.wf-arch-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10,10,10,.12);
  transform: translateY(-50%);
}

.wf-arch-node--left .wf-arch-connector {
  left: calc(100% - 2px);
  width: var(--line);
  transform-origin: left center;
  transform: rotate(var(--angle));
}

.wf-arch-node--left .wf-arch-connector::before { left: -1px; }
.wf-arch-node--left .wf-arch-connector::after { right: -1px; }

.wf-arch-node--right .wf-arch-connector {
  right: calc(100% - 2px);
  width: var(--line);
  transform-origin: right center;
  transform: rotate(calc(var(--angle) * -1));
}

.wf-arch-node--right .wf-arch-connector::before { left: -1px; }
.wf-arch-node--right .wf-arch-connector::after { right: -1px; }

.wf-arch-hub {
  position: absolute;
  top: 6.75rem;
  left: 50%;
  z-index: 4;
  width: min(420px, 36%);
  transform: translateX(-50%);
  padding: 1.35rem;
  border-radius: 28px;
  border: 1px solid rgba(10,10,10,.085);
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 62px rgba(10,10,10,.055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wf-arch-hub::before,
.wf-arch-hub::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,.11);
}

.wf-arch-hub::before {
  top: calc(100% + 6px);
  width: 1px;
  height: 70px;
}

.wf-arch-hub::after {
  top: calc(100% + 67px);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(10,10,10,.12);
}

.wf-arch-hub-head {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: 1rem;
}

.wf-arch-hub-kicker {
  margin: 0 0 .24rem;
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(10,10,10,.58);
}

.wf-arch-hub h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 500;
}

.wf-arch-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}

.wf-arch-capability {
  width: 100%;
  min-height: 4.25rem;
  padding: .95rem .8rem;
  font-size: .91rem;
}

.wf-arch-hub-note {
  margin-top: 1rem;
  color: rgba(10,10,10,.62);
  font-size: .91rem;
  line-height: 1.5;
}

.wf-arch-implementation {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  z-index: 4;
  width: min(500px, 48%);
  transform: translateX(-50%);
  padding: 1.15rem;
  border-radius: 26px;
  border: 1px solid rgba(10,10,10,.08);
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 52px rgba(10,10,10,.048);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wf-arch-implementation::before,
.wf-arch-implementation::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.wf-arch-implementation::before {
  bottom: calc(100% + 6px);
  width: 1px;
  height: 72px;
  background: rgba(10,10,10,.11);
}

.wf-arch-implementation::after {
  bottom: calc(100% + 68px);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(10,10,10,.12);
}

.wf-arch-implementation-head {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .95rem;
}

.wf-arch-implementation-head strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.wf-arch-implementation-head span:last-child {
  display: block;
  margin-top: .24rem;
  color: rgba(10,10,10,.58);
  font-size: .89rem;
  line-height: 1.45;
}

.wf-arch-implementation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}

.wf-arch-mini {
  width: 100%;
  min-height: 3.5rem;
  padding: .75rem .8rem;
  font-size: .89rem;
}

.wf-architecture-panel {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.2rem;
  border-radius: 28px;
  border: 1px solid rgba(10,10,10,.08);
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 56px rgba(10,10,10,.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wf-architecture-panel-top {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(10,10,10,.08);
}

.wf-architecture-panel-label {
  display: inline-flex;
  align-self: flex-start;
  padding: .44rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(10,10,10,.08);
  background: rgba(247,246,243,.95);
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(10,10,10,.58);
}

.wf-architecture-panel-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.wf-arch-pill {
  appearance: none;
  border: 1px solid rgba(10,10,10,.08);
  background: rgba(247,246,243,.72);
  color: var(--ink);
  min-height: 2.4rem;
  padding: .55rem .78rem;
  border-radius: 999px;
  font-size: .84rem;
  line-height: 1;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out), background .3s var(--ease-out), box-shadow .3s var(--ease-out);
}

.wf-architecture-panel-kicker {
  margin: 0 0 .45rem;
  color: rgba(10,10,10,.48);
  font-size: .8rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wf-architecture-panel h3 {
  margin: 0 0 .75rem;
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 500;
}

.wf-architecture-panel p[data-arch-body-output] {
  color: rgba(10,10,10,.66);
  font-size: .96rem;
  line-height: 1.58;
}

.wf-architecture-panel ul {
  display: grid;
  gap: .7rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10,10,10,.08);
  list-style: none;
}

.wf-architecture-panel li {
  position: relative;
  padding-left: 1rem;
  color: rgba(10,10,10,.74);
  font-size: .92rem;
  line-height: 1.45;
}

.wf-architecture-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(10,10,10,.34);
}

.wf-architecture-mobile {
  display: none;
}

@keyframes wfArchFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@media (max-width: 1220px) {
  .wf-architecture-board {
    min-height: 1020px;
  }

  .wf-arch-hub {
    width: min(390px, 38%);
  }

  .wf-arch-implementation {
    width: min(470px, 54%);
  }
}

@media (max-width: 1080px) {
  .wf-architecture-shell {
    grid-template-columns: 1fr;
  }

  .wf-architecture-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 980px) {
  .wf-architecture-shell {
    display: none;
  }

  .wf-architecture-mobile {
    display: grid;
    gap: .85rem;
  }

  .wf-mobile-step {
    border: 1px solid rgba(10,10,10,.08);
    border-radius: 24px;
    background: rgba(255,255,255,.76);
    box-shadow: 0 16px 42px rgba(10,10,10,.045);
    overflow: hidden;
  }

  .wf-mobile-step-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1rem 1rem 1.05rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 500;
    cursor: pointer;
  }

  .wf-mobile-step-toggle::after {
    content: "+";
    margin-left: auto;
    font-size: 1.2rem;
    line-height: 1;
    color: rgba(10,10,10,.55);
    transition: transform .28s var(--ease-out);
  }

  .wf-mobile-step.is-open .wf-mobile-step-toggle::after {
    transform: rotate(45deg);
  }

  .wf-mobile-step-panel {
    display: none;
    padding: 0 1rem 1rem 1rem;
  }

  .wf-mobile-step.is-open .wf-mobile-step-panel {
    display: block;
  }

  .wf-mobile-step-panel p {
    color: rgba(10,10,10,.68);
    font-size: .95rem;
    line-height: 1.58;
    margin-bottom: .95rem;
  }

  .wf-mobile-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
  }

  .wf-mobile-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    padding: .6rem .82rem;
    border-radius: 16px;
    border: 1px solid rgba(10,10,10,.08);
    background: rgba(247,246,243,.85);
    font-size: .88rem;
    line-height: 1.25;
    color: rgba(10,10,10,.84);
  }
}

/* ===================================================
   V37 — Architecture WebFactory diagram
   =================================================== */

.wf-architecture-v2-section .section-head {
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.wf-architecture-v2 {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(1.4rem, 2.2vw, 2rem);
  align-items: start;
}

.wf-architecture-v2-copy {
  display: grid;
  gap: 1rem;
}

.wf-architecture-note,
.wf-mobile-stack-card {
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(10,10,10,.08);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 36px rgba(10,10,10,.04);
}

.wf-architecture-note-top,
.wf-mobile-stack-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .8rem;
}

.wf-architecture-note h3,
.wf-mobile-stack-head h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 500;
}

.wf-architecture-note p,
.wf-mobile-stack-card p {
  color: rgba(10,10,10,.66);
  font-size: .95rem;
  line-height: 1.58;
}

.wf-architecture-map {
  position: relative;
  min-height: 760px;
  border-radius: 34px;
  border: 1px solid rgba(10,10,10,.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.9), rgba(247,246,243,.92) 34%, rgba(247,246,243,.98) 100%),
    linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,.1));
  overflow: hidden;
  box-shadow: 0 24px 62px rgba(10,10,10,.05);
}

.wf-architecture-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,10,10,.04) .85px, transparent .85px);
  background-size: 24px 24px;
  opacity: .35;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.05) 30%, transparent 100%);
}

.wf-architecture-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--ink);
  z-index: 2;
}

.wf-architecture-core::before {
  content: "✳";
  position: absolute;
  left: -1.55rem;
  top: 46%;
  transform: translateY(-50%);
  font-size: 1.15rem;
  color: rgba(10,10,10,.32);
}

.wf-map-group {
  position: absolute;
  z-index: 2;
}

.wf-map-group h3 {
  position: absolute;
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 500;
  white-space: nowrap;
}

.wf-map-label {
  position: absolute;
  color: rgba(10,10,10,.58);
  font-size: .87rem;
  line-height: 1.15;
  white-space: nowrap;
}

.wf-map-group--data {
  left: 3.5%;
  top: 6%;
  width: 32%;
  height: 88%;
}

.wf-map-group--data h3 { left: 27%; top: 39%; }
.wf-map-label--data-1 { left: 4%; top: 6%; }
.wf-map-label--data-2 { left: 18%; top: 17%; }
.wf-map-label--data-3 { left: 2%; top: 28%; }
.wf-map-label--data-4 { left: 24%; top: 33%; }
.wf-map-label--data-5 { left: 0%; top: 50%; }
.wf-map-label--data-6 { left: 25%; top: 58%; }
.wf-map-label--data-7 { left: 6%; top: 70%; }
.wf-map-label--data-8 { left: 18%; top: 82%; }

.wf-map-group--implementation {
  left: 34%;
  top: 5%;
  width: 32%;
  height: 36%;
}

.wf-map-group--implementation h3 { left: 13%; top: 12%; }
.wf-map-label--impl-1 { left: 2%; top: 0%; }
.wf-map-label--impl-2 { left: 51%; top: 3%; }
.wf-map-label--impl-3 { left: 0%; top: 42%; }
.wf-map-label--impl-4 { left: 50%; top: 46%; }
.wf-map-label--impl-5 { left: 10%; top: 72%; }
.wf-map-label--impl-6 { left: 55%; top: 84%; }

.wf-map-group--engine {
  right: 6%;
  top: 11%;
  width: 25%;
  height: 73%;
}

.wf-map-group--engine h3 { left: 16%; top: 31%; }
.wf-map-label--engine-1 { left: 8%; top: 0%; }
.wf-map-label--engine-2 { left: 46%; top: 11%; }
.wf-map-label--engine-3 { left: 0%; top: 41%; }
.wf-map-label--engine-4 { left: 44%; top: 51%; }
.wf-map-label--engine-5 { left: 8%; top: 72%; }
.wf-map-label--engine-6 { left: 47%; top: 86%; }

.wf-map-group--results {
  left: 36%;
  bottom: 4%;
  width: 34%;
  height: 28%;
}

.wf-map-group--results h3 { left: 33%; top: 44%; }
.wf-map-label--result-1 { left: 16%; top: 0%; }
.wf-map-label--result-2 { left: 61%; top: 4%; }
.wf-map-label--result-3 { left: 3%; top: 30%; }
.wf-map-label--result-4 { left: 70%; top: 34%; }
.wf-map-label--result-5 { left: 9%; top: 68%; }
.wf-map-label--result-6 { left: 60%; top: 78%; }

.wf-map-link {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: rgba(10,10,10,.09);
  transform-origin: left center;
}

.wf-map-link::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(10,10,10,.11);
  transform: translateY(-50%);
}

.wf-map-link--data {
  left: 30.5%;
  top: 41.2%;
  width: 21%;
  transform: rotate(12deg);
}

.wf-map-link--implementation {
  left: 49.8%;
  top: 26.5%;
  width: 15%;
  transform: rotate(90deg);
}

.wf-map-link--engine {
  left: 50.6%;
  top: 49.9%;
  width: 24%;
  transform: rotate(-11deg);
}

.wf-map-link--results {
  left: 49.7%;
  top: 58.5%;
  width: 18.5%;
  transform: rotate(74deg);
}

.wf-architecture-v2-mobile {
  display: none;
}

.wf-mobile-stack-card {
  margin-top: 1rem;
}

@media (max-width: 1180px) {
  .wf-architecture-v2 {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .wf-architecture-map {
    min-height: 700px;
  }

  .wf-map-group h3 {
    font-size: 1.18rem;
  }

  .wf-map-label {
    font-size: .81rem;
  }
}

@media (max-width: 980px) {
  .wf-architecture-v2 {
    display: none;
  }

  .wf-architecture-v2-mobile {
    display: grid;
    gap: 1rem;
  }
}

/* ===================================================
   V38 — Architecture WebFactory refined map
   =================================================== */

.wf-architecture-v38-section .section-head {
  margin-bottom: clamp(2.2rem, 4vw, 3.1rem);
}

.wf-architecture-v38-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(1.8rem, 3vw, 2.6rem);
  align-items: start;
}

.wf-architecture-v38-copy {
  display: grid;
  gap: 1.35rem;
}

.wf-architecture-v38-item,
.wf-architecture-v38-mobile-item {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(10,10,10,.1);
}

.wf-architecture-v38-item-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .8rem;
}

.wf-architecture-v38-item-top h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 500;
}

.wf-architecture-v38-item p,
.wf-architecture-v38-mobile-item p {
  color: rgba(10,10,10,.66);
  font-size: .95rem;
  line-height: 1.58;
}

.wf-architecture-v38-item p + p,
.wf-architecture-v38-mobile-item p + p {
  margin-top: .8rem;
}

.wf-architecture-v38-map {
  position: relative;
  min-height: 760px;
  border-radius: 0;
}

.wf-architecture-v38-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wf-architecture-v38-lines g {
  fill: none;
  stroke: rgba(10,10,10,.085);
  stroke-width: 1;
  stroke-linecap: round;
}

.wf-arch-v38-center {
  position: absolute;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.4vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.05em;
  color: var(--ink);
}

.wf-arch-v38-center::before {
  content: "✳";
  position: absolute;
  left: -1.6rem;
  top: 48%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: rgba(10,10,10,.32);
}

.wf-arch-v38-group {
  position: absolute;
  inset: 0;
}

.wf-arch-v38-group h3 {
  position: absolute;
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 500;
  white-space: nowrap;
}

.wf-arch-v38-group--data h3 { left: 24%; top: 36%; }
.wf-arch-v38-group--implementation h3 { left: 45%; top: 18%; }
.wf-arch-v38-group--engine h3 { left: 76%; top: 34%; }
.wf-arch-v38-group--results h3 { left: 50%; top: 70%; }

.wf-arch-v38-label {
  position: absolute;
  color: rgba(10,10,10,.58);
  font-size: .87rem;
  line-height: 1.18;
  white-space: nowrap;
}

.wf-arch-v38-label.is-underlined {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.wf-architecture-v38-mobile {
  display: none;
}

@media (max-width: 1180px) {
  .wf-architecture-v38-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 1.6rem;
  }

  .wf-architecture-v38-map {
    min-height: 700px;
  }

  .wf-arch-v38-group h3 {
    font-size: 1.14rem;
  }

  .wf-arch-v38-label {
    font-size: .79rem;
  }
}

@media (max-width: 980px) {
  .wf-architecture-v38-layout {
    display: none;
  }

  .wf-architecture-v38-mobile {
    display: grid;
    gap: 1.1rem;
  }
}

/* ===================================================
   V39 — Architecture WebFactory transparent connected cards
   =================================================== */

.wf-architecture-v39-section .section-head {
  margin-bottom: clamp(2.2rem, 4vw, 3rem);
}

.wf-architecture-v39-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(1.8rem, 3vw, 2.8rem);
  align-items: start;
}

.wf-architecture-v39-copy {
  display: grid;
  gap: 1.2rem;
}

.wf-architecture-v39-text-item,
.wf-architecture-v39-mobile-card {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(10,10,10,.1);
}

.wf-architecture-v39-text-top {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .8rem;
}

.wf-architecture-v39-text-top h3,
.wf-architecture-v39-card-head h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 500;
}

.wf-architecture-v39-text-item p {
  color: rgba(10,10,10,.66);
  font-size: .94rem;
  line-height: 1.58;
}

.wf-architecture-v39-map {
  position: relative;
  min-height: 760px;
}

.wf-architecture-v39-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wf-architecture-v39-lines line {
  stroke: rgba(10,10,10,.11);
  stroke-width: 1;
  stroke-linecap: round;
}

.wf-architecture-v39-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  z-index: 2;
}

.wf-architecture-v39-center img {
  width: min(190px, 20vw);
  height: auto;
  display: block;
}

.wf-architecture-v39-center p {
  font-size: .82rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(10,10,10,.56);
  white-space: nowrap;
}

.wf-architecture-v39-card {
  position: absolute;
  z-index: 2;
  padding: .9rem;
  border-radius: 22px;
  border: 1px solid rgba(10,10,10,.1);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.wf-architecture-v39-card--data {
  left: 2.5%;
  top: 6%;
  width: 31%;
}

.wf-architecture-v39-card--implementation {
  left: 34.5%;
  top: 3%;
  width: 31%;
}

.wf-architecture-v39-card--engine {
  right: 2.5%;
  top: 18%;
  width: 29.5%;
}

.wf-architecture-v39-card--results {
  left: 34.5%;
  bottom: 4%;
  width: 31%;
}

.wf-architecture-v39-card-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .8rem;
}

.wf-architecture-v39-list,
.wf-architecture-v39-grid {
  display: grid;
  gap: .55rem;
}

.wf-architecture-v39-list span,
.wf-architecture-v39-grid span {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 2.65rem;
  padding: .7rem .82rem;
  border-radius: 14px;
  border: 1px solid rgba(10,10,10,.085);
  background: transparent;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.2;
  letter-spacing: -.015em;
}

.wf-architecture-v39-list svg,
.wf-architecture-v39-grid svg {
  flex-shrink: 0;
  color: rgba(10,10,10,.88);
}

.wf-architecture-v39-grid--six {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wf-architecture-v39-mobile {
  display: none;
}

.wf-architecture-v39-mobile-card + .wf-architecture-v39-mobile-card {
  margin-top: 1.1rem;
}

@media (max-width: 1220px) {
  .wf-architecture-v39-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1.5rem;
  }

  .wf-architecture-v39-map {
    min-height: 710px;
  }

  .wf-architecture-v39-list span,
  .wf-architecture-v39-grid span {
    font-size: .84rem;
    min-height: 2.5rem;
    padding: .62rem .72rem;
  }

  .wf-architecture-v39-center img {
    width: min(170px, 20vw);
  }
}

@media (max-width: 980px) {
  .wf-architecture-v39-layout {
    display: none;
  }

  .wf-architecture-v39-mobile {
    display: grid;
    gap: 0;
  }

  .wf-architecture-v39-mobile-card .wf-architecture-v39-card-head {
    margin-bottom: .8rem;
  }

  .wf-architecture-v39-mobile-card .wf-architecture-v39-list,
  .wf-architecture-v39-mobile-card .wf-architecture-v39-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   V40 — Architecture WebFactory clean static schema
   =================================================== */

.wf-architecture-v40-section .section-head {
  margin-bottom: clamp(2.2rem, 4vw, 3rem);
}

.wf-architecture-v40-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(1.8rem, 3vw, 2.8rem);
  align-items: start;
}

.wf-architecture-v40-copy {
  display: grid;
  gap: 1.15rem;
}

.wf-architecture-v40-copy-item,
.wf-architecture-v40-mobile-card {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(10,10,10,.1);
}

.wf-architecture-v40-copy-top,
.wf-architecture-v40-card-head {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .85rem;
}

.wf-architecture-v40-copy-top h3,
.wf-architecture-v40-card-head h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 500;
}

.wf-architecture-v40-copy-item p {
  color: rgba(10,10,10,.66);
  font-size: .94rem;
  line-height: 1.6;
}

.wf-architecture-v40-map {
  position: relative;
  min-height: 720px;
}

.wf-architecture-v40-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wf-architecture-v40-lines line {
  stroke: rgba(10,10,10,.11);
  stroke-width: 1;
  stroke-linecap: round;
}

.wf-architecture-v40-lines circle {
  fill: rgba(10,10,10,.14);
}

.wf-architecture-v40-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  z-index: 2;
}

.wf-architecture-v40-center img {
  width: min(178px, 18vw);
  height: auto;
  display: block;
}

.wf-architecture-v40-center p {
  margin: 0;
  font-size: .8rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(10,10,10,.56);
  white-space: nowrap;
}

.wf-architecture-v40-card,
.wf-architecture-v40-mobile-card {
  border: 1px solid rgba(10,10,10,.09);
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
}

.wf-architecture-v40-card {
  position: absolute;
  z-index: 2;
  padding: .9rem;
}

.wf-architecture-v40-card--data {
  left: 1.5%;
  top: 9%;
  width: 31%;
}

.wf-architecture-v40-card--implementation {
  left: 36.5%;
  top: 1%;
  width: 28%;
}

.wf-architecture-v40-card--engine {
  right: 1.5%;
  top: 20%;
  width: 29%;
}

.wf-architecture-v40-card--results {
  left: 36.5%;
  bottom: 1.5%;
  width: 28%;
}

.wf-architecture-v40-list,
.wf-architecture-v40-grid {
  display: grid;
  gap: .6rem;
}

.wf-architecture-v40-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wf-architecture-v40-list span,
.wf-architecture-v40-grid span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 2.85rem;
  padding: .72rem .88rem;
  border-radius: 14px;
  border: 1px solid rgba(10,10,10,.08);
  background: transparent;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.22;
  letter-spacing: -.012em;
}

.wf-architecture-v40-mobile {
  display: none;
}

.wf-architecture-v40-mobile-card + .wf-architecture-v40-mobile-card {
  margin-top: 1.15rem;
}

.wf-architecture-v40-mobile-card {
  padding: .95rem;
}

@media (max-width: 1220px) {
  .wf-architecture-v40-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1.45rem;
  }

  .wf-architecture-v40-map {
    min-height: 680px;
  }

  .wf-architecture-v40-list span,
  .wf-architecture-v40-grid span {
    min-height: 2.65rem;
    padding: .64rem .72rem;
    font-size: .84rem;
  }

  .wf-architecture-v40-center img {
    width: min(158px, 17vw);
  }
}

@media (max-width: 980px) {
  .wf-architecture-v40-layout {
    display: none;
  }

  .wf-architecture-v40-mobile {
    display: grid;
    gap: 0;
  }

  .wf-architecture-v40-mobile .wf-architecture-v40-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   V41 — Architecture WebFactory simplified tickets map
   =================================================== */

.wf-architecture-v41-section .section-head {
  margin-bottom: clamp(2.2rem, 4vw, 3rem);
}

.wf-architecture-v41-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(1.8rem, 3vw, 2.8rem);
  align-items: start;
}

.wf-architecture-v41-copy {
  display: grid;
  gap: 1.15rem;
}

.wf-architecture-v41-copy-item,
.wf-architecture-v41-mobile-item {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(10,10,10,.1);
}

.wf-architecture-v41-copy-top {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .85rem;
}

.wf-architecture-v41-copy-top h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 500;
}

.wf-architecture-v41-copy-item p,
.wf-architecture-v41-mobile-item p {
  color: rgba(10,10,10,.66);
  font-size: .94rem;
  line-height: 1.6;
}

.wf-architecture-v41-map {
  position: relative;
  min-height: 700px;
}

.wf-architecture-v41-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wf-architecture-v41-lines line {
  stroke: rgba(10,10,10,.11);
  stroke-width: 1.2;
  stroke-linecap: round;
}

.wf-architecture-v41-lines circle {
  fill: rgba(10,10,10,.16);
}

.wf-architecture-v41-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.wf-architecture-v41-center img {
  width: min(180px, 18vw);
  height: auto;
  display: block;
}

.wf-architecture-v41-ticket {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .82rem 1rem;
  border: 1px solid rgba(10,10,10,.09);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.15;
  letter-spacing: -.015em;
  text-align: center;
  max-width: 15rem;
}

.wf-architecture-v41-ticket--data {
  left: 3.5%;
  top: 34%;
}

.wf-architecture-v41-ticket--implementation {
  left: 38.5%;
  top: 9%;
}

.wf-architecture-v41-ticket--engine {
  right: 5.5%;
  top: 39%;
}

.wf-architecture-v41-ticket--results {
  left: 43%;
  bottom: 12%;
}

.wf-architecture-v41-mobile {
  display: none;
}

.wf-architecture-v41-mobile-item + .wf-architecture-v41-mobile-item {
  margin-top: 1rem;
}

@media (max-width: 1220px) {
  .wf-architecture-v41-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1.45rem;
  }

  .wf-architecture-v41-map {
    min-height: 640px;
  }

  .wf-architecture-v41-ticket {
    font-size: .88rem;
    min-height: 2.8rem;
    padding: .75rem .9rem;
  }

  .wf-architecture-v41-center img {
    width: min(158px, 17vw);
  }
}

@media (max-width: 980px) {
  .wf-architecture-v41-layout {
    display: none;
  }

  .wf-architecture-v41-mobile {
    display: grid;
    gap: 0;
  }
}

/* ===================================================
   V42 — Architecture WebFactory horizontal rows + tags
   =================================================== */

.wf-architecture-v42-head {
  margin-bottom: clamp(2rem, 3.5vw, 2.8rem);
}

.wf-architecture-v42-head .eyebrow {
  display: none;
}

.wf-architecture-v42-list {
  display: grid;
}

.wf-architecture-v42-row {
  display: grid;
  grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.2vw, 2.25rem);
  align-items: start;
  padding: 1.35rem 0 1.5rem;
  border-top: 1px solid rgba(10,10,10,.1);
}

.wf-architecture-v42-row-main {
  max-width: 330px;
}

.wf-architecture-v42-row-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .8rem;
}

.wf-architecture-v42-row-top h3 {
  margin: 0;
  font-size: clamp(1.28rem, 1.7vw, 1.55rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 500;
}

.wf-architecture-v42-row-main p {
  color: rgba(10,10,10,.66);
  font-size: .97rem;
  line-height: 1.62;
}

.wf-architecture-v42-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-content: flex-start;
  padding-top: .05rem;
}

.wf-architecture-v42-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: .72rem .98rem;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 14px;
  background: transparent;
  color: var(--ink);
  font-size: .93rem;
  line-height: 1.2;
  letter-spacing: -.012em;
}

@media (max-width: 980px) {
  .wf-architecture-v42-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.2rem 0 1.3rem;
  }

  .wf-architecture-v42-row-main {
    max-width: none;
  }

  .wf-architecture-v42-tag {
    min-height: 2.65rem;
    padding: .66rem .9rem;
    font-size: .9rem;
  }
}
