/* ============================================================
   Elqano - page-home.css
   CSS specifique a la page Home uniquement
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--dark);
  padding: 120px 56px 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center top, rgba(251,109,38,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-top {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: blink 2.2s ease-in-out infinite;
}

.hero-headline {
  font-family: 'Crimson Text', serif;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 36px;
}

.hero-headline em { font-style: italic; color: var(--orange); }

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 680px;
  margin: 0 auto 48px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-cta .btn-primary { width: 220px; justify-content: center; height: 52px; padding-top: 0; padding-bottom: 0; }
.hero-cta .btn-primary-cta:hover { background: #8535f0 !important; }

.hero-proof {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.01em;
}

/* HERO SCREEN */
.hero-screen {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
}

.screen-frame {
  background: #111114;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 -8px 40px rgba(0,0,0,0.5), 0 40px 100px rgba(0,0,0,0.6);
  overflow: hidden;
}

.screen-chrome {
  height: 38px;
  background: #1A1A1E;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}

.s-dot { width: 10px; height: 10px; border-radius: 50%; }
.s-dot:nth-child(1) { background: #FF5F57; }
.s-dot:nth-child(2) { background: #FEBC2E; }
.s-dot:nth-child(3) { background: #28C840; }

.s-bar {
  margin-left: 12px;
  flex: 1;
  max-width: 200px;
  height: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-family: 'Roboto Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.2);
}

/* FAKE UI CHAT */
.fake-ui {
  display: grid;
  grid-template-columns: 192px 1fr;
  height: 480px;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

.fake-sidebar {
  background: #FFFFFF;
  border-right: 1px solid #E3E2F0;
  padding: 14px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}

.fake-sidebar-header { display: flex; align-items: center; gap: 8px; padding: 2px 4px 18px; }
.fake-sidebar-name { font-size: 14px; font-weight: 600; color: #1C1A37; letter-spacing: -0.01em; }

.fake-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 6px;
  border-radius: 6px;
  font-size: 11.5px;
  color: #1C1A37;
  cursor: pointer;
  overflow: hidden;
}

.fake-nav-item span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fake-nav-item svg { color: #1C1A37; flex-shrink: 0; }

.fake-cta-group { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 14px 0 0; }

.fake-cta-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 28px;
  border-radius: 9999px;
  background: #1C1A37;
  color: white;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
}

.fake-sidebar-divider { height: 1px; background: #E3E2F0; margin: 8px 0; }

.fake-user-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: hsl(240,62%,99%);
  border-radius: 8px;
  padding: 8px 6px;
}

.fake-user-icon { color: #1C1A37; flex-shrink: 0; }
.fake-user-email { font-size: 9.5px; color: #1C1A37; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.fake-main {
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
}

.fake-chat-thread {
  flex: 1;
  padding: 18px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.fake-user-msg {
  align-self: flex-end;
  background: hsl(240,100%,98%);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 11px;
  color: #1C1A37;
  max-width: 82%;
  line-height: 1.5;
}

.fake-ai-msg { display: flex; gap: 9px; }

.fake-ai-avatar {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: #1C1A37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.fake-ai-label { font-size: 10px; font-weight: 700; color: #1C1A37; margin-bottom: 5px; }
.fake-ai-text { font-size: 11px; color: #1C1A37; line-height: 1.6; }
.fake-highlight { background: rgba(251,109,38,0.2); border-radius: 2px; padding: 0 2px; }

.fake-source-chips { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 9px; }

.fake-source-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  background: hsl(240,62%,96%);
  border: 1px solid #E3E2F0;
  border-radius: 9999px;
  font-size: 9.5px;
  color: #1C1A37;
  cursor: pointer;
}

.fake-source-chip-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.fake-chat-input-area { padding: 8px 12px 12px; }

.fake-chat-input {
  background: white;
  border: 1px solid #E3E2F0;
  border-radius: 20px;
  padding: 12px 14px 10px;
  box-shadow: 0 2px 6px rgba(26,28,56,0.08);
}

.fake-chat-input-top { display: flex; align-items: flex-start; gap: 8px; }
.fake-chat-placeholder { flex: 1; font-size: 11px; color: #9ca3af; padding-top: 1px; }

.fake-chat-send {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #1C1A37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fake-chat-divider { height: 1px; background: #E3E2F0; margin: 9px 0; }
.fake-chat-icons { display: flex; align-items: center; gap: 5px; }
.fake-chat-icon-btn { color: #9ca3af; display: flex; align-items: center; padding: 3px; }

.fake-chat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid #E3E2F0;
  font-size: 9.5px;
  color: #5d5e78;
  cursor: pointer;
  background: hsl(240,62%,99%);
}

.fake-chat-badge.reasoning { border-radius: 6px; padding: 4px 8px; }

/* Fake UI interactive - suggestions */
.fake-suggestions {
  padding: 6px 12px 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  border-top: 1px solid #E3E2F0;
  background: hsl(240,62%,99%);
}

.sugg-label { font-size: 9px; color: #9ca3af; font-weight: 500; white-space: nowrap; margin-right: 2px; flex-shrink: 0; }

.sugg-pill {
  padding: 4px 10px;
  background: white;
  border: 1px solid #E3E2F0;
  border-radius: 9999px;
  font-size: 9.5px;
  color: #1C1A37;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
  user-select: none;
}

.sugg-pill:hover { background: hsl(240,62%,94%); border-color: #b8b6d0; }
.sugg-pill.active { background: #1C1A37; color: white; border-color: #1C1A37; }

.fake-thinking { display: flex; gap: 3px; align-items: center; }

.fake-thinking span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #9ca3af;
  animation: think 1.2s ease-in-out infinite;
}

.fake-thinking span:nth-child(2) { animation-delay: 0.2s; }
.fake-thinking span:nth-child(3) { animation-delay: 0.4s; }

@keyframes think {
  0%,60%,100% { opacity: 0.3; transform: scale(0.8); }
  30% { opacity: 1; transform: scale(1.1); }
}

/* SLIDES FAKE UI */
.slide-topbar {
  height: 34px;
  border-bottom: 1px solid #E3E2F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: hsl(240,62%,99%);
  flex-shrink: 0;
}

.stb-left { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; color: #1C1A37; }
.stb-agent-dot { width: 6px; height: 6px; border-radius: 50%; background: #9747FF; animation: blink 2.2s ease-in-out infinite; }
.stb-status { font-family: 'Roboto Mono', monospace; font-size: 9px; color: #9A9A9A; transition: color 0.3s; }
.stb-status.gen { color: #9747FF; }
.stb-status.done { color: #22C55E; }

.gen-area { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; }
.gen-placeholder { text-align: center; }
.gen-ph-title { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: rgba(28,26,55,0.25); letter-spacing: -0.01em; }
.gen-ph-sub { font-family: 'DM Sans', sans-serif; font-size: 10px; color: rgba(154,154,154,0.5); margin-top: 5px; }
.gen-inner { width: 100%; }
.gen-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.gen-spinner { width: 26px; height: 26px; border-radius: 7px; background: #1C1A37; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gen-ring { width: 13px; height: 13px; border: 2px solid rgba(255,255,255,0.2); border-top-color: white; border-radius: 50%; animation: gspin 0.75s linear infinite; }
@keyframes gspin { to { transform: rotate(360deg); } }
.gen-info-title { font-size: 11px; font-weight: 600; color: #1C1A37; }
.gen-info-src { font-family: 'DM Sans', sans-serif; font-size: 9.5px; color: #9A9A9A; margin-top: 4px; display: flex; align-items: center; gap: 5px; transition: opacity 0.25s; }
.gen-src-tag { font-family: 'Roboto Mono', monospace; font-size: 8px; font-weight: 500; padding: 2px 5px; border-radius: 3px; color: white; flex-shrink: 0; }
.gen-src-tag.pptx { background: #C43E1C; }
.gen-src-tag.xlsx { background: #1D6F42; }
.gen-src-tag.pdf { background: #E8391C; }
.gen-src-tag.docx { background: #2B579A; }
.gen-bar-wrap { height: 3px; background: #E3E2F0; border-radius: 9px; overflow: hidden; margin-bottom: 7px; }
.gen-bar { height: 100%; width: 0%; background: #9747FF; border-radius: 9px; transition: width 0.25s ease; }
.gen-counter { font-family: 'Roboto Mono', monospace; font-size: 9px; color: #9A9A9A; }
.slides-area { flex: 1; display: flex; flex-direction: column; overflow: hidden; }

.fake-ui { transform-origin: right top; transition: transform 0.9s cubic-bezier(0.4,0,0.2,1); }
.fake-ui.zoomed { transform: scale(2.4); }

.smb-dl { transition: transform 0.12s ease, background 0.3s ease; }
.smb-dl.clicked { transform: scale(0.9); }
.smb-dl.downloading { background: #5A5A5A; pointer-events: none; }
.smb-dl.done { background: #9747FF; pointer-events: none; }

.slides-meta {
  height: 28px;
  border-bottom: 1px solid #E3E2F0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
  font-family: 'Roboto Mono', monospace;
  font-size: 9px;
  color: #9A9A9A;
  flex-shrink: 0;
}

.smdot { color: #D0CDE8; }

.smb-dl {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  background: #1C1A37;
  color: white;
  border-radius: 6px;
  font-size: 8.5px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.slides-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  padding: 10px 14px;
  align-content: start;
}

.mob-ui-header {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  height: 40px;
  background: #1A1A1E;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mob-ui-header-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: -0.01em; }
.mob-ui-agent-tag { margin-left: auto; font-family: 'Roboto Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

.mob-chat-thread { display: none; flex-direction: column; gap: 10px; padding: 12px 14px 8px; flex-shrink: 0; }
.mob-user-bubble { align-self: flex-end; background: #F5F4FF; border: 1px solid #E3E2F0; border-radius: 10px 10px 2px 10px; padding: 9px 12px; font-size: 12px; color: #1C1A37; max-width: 90%; line-height: 1.45; }
.mob-agent-row { display: flex; align-items: flex-start; gap: 8px; }
.mob-agent-icon { width: 20px; height: 20px; border-radius: 5px; background: #1C1A37; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.mob-agent-text { font-size: 11px; color: #5A5A5A; line-height: 1.45; padding-top: 2px; }
.mob-cta-bar { display: none; gap: 6px; padding: 8px 14px 14px; opacity: 0; transition: opacity 0.4s ease; }
.mob-scroll-area { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.mob-cta-btn { display: flex; align-items: center; justify-content: center; gap: 5px; padding: 8px 6px; border-radius: 8px; font-size: 10px; font-weight: 500; font-family: 'DM Sans', sans-serif; border: 1px solid #E3E2F0; background: white; color: #374151; cursor: pointer; flex: 1; white-space: nowrap; }
.mob-cta-btn.dl { background: #1C1A37; color: white; border-color: #1C1A37; }

.sthumb {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #E3E2F0;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  opacity: 0;
  aspect-ratio: 16/9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.sthumb:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.12); transform: translateY(-2px) scale(1.01); }

/* Slide designs */
.sth-cover { height: 100%; background: linear-gradient(135deg,#1C1A37 0%,#2D1B69 100%); padding: 8px 10px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.sth-cover::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,#9747FF,#FB6D26); }
.sth-cover::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 70px; height: 70px; border-radius: 50%; background: rgba(151,71,255,0.12); }
.sth-conf { font-family: 'DM Sans', sans-serif; font-size: 5.5px; font-weight: 500; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; text-transform: uppercase; }
.sth-cv-main { flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.sth-cv-label { font-family: 'DM Sans', sans-serif; font-size: 6px; font-weight: 600; color: rgba(151,71,255,0.9); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.sth-cv-title { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: white; }
.sth-cv-sub { font-family: 'DM Sans', sans-serif; font-size: 7px; font-weight: 400; color: rgba(255,255,255,0.45); margin-top: 5px; }
.sth-cv-foot { display: flex; align-items: center; justify-content: space-between; }
.sth-cv-logo { width: 18px; height: 10px; background: rgba(255,255,255,0.12); border-radius: 2px; }
.sth-cv-date { font-family: 'DM Sans', sans-serif; font-size: 6px; color: rgba(255,255,255,0.25); }
.sth-std { height: 100%; background: white; display: flex; flex-direction: column; font-family: 'DM Sans', sans-serif; }
.sth-hd { height: 22px; background: #1C1A37; display: flex; align-items: center; padding: 0 9px; flex-shrink: 0; position: relative; }
.sth-hd::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 3px; background: #9747FF; }
.sth-hd-label { font-family: 'DM Sans', sans-serif; font-size: 7px; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.02em; text-transform: uppercase; }
.sth-hd-n { margin-left: auto; font-family: 'DM Sans', sans-serif; font-size: 6.5px; font-weight: 400; color: rgba(255,255,255,0.25); padding-right: 6px; }
.sth-bd { flex: 1; padding: 8px 9px; overflow: hidden; }
.sth-ft { height: 12px; border-top: 1px solid #F0EFF8; display: flex; align-items: center; padding: 0 9px; flex-shrink: 0; }
.sth-pg { font-family: 'DM Sans', sans-serif; font-size: 6px; color: #C8C5E0; margin-left: auto; }
.sth-sec { margin-bottom: 7px; }
.sth-sec:last-child { margin-bottom: 0; }
.sth-sec-lbl { font-family: 'DM Sans', sans-serif; font-size: 7px; font-weight: 700; color: #1C1A37; border-left: 2px solid #9747FF; padding-left: 4px; margin-bottom: 3px; }
.sth-ln { height: 4px; background: #EEECf8; border-radius: 2px; margin-bottom: 2px; }
.sth-ln-f { width: 100%; }
.sth-ln-3q { width: 75%; }
.sth-ln-h { width: 52%; }
.sth-ln-2q { width: 63%; }
.sth-chart-wrap { display: flex; flex-direction: column; height: 100%; }
.sth-chart-ttl { font-family: 'DM Sans', sans-serif; font-size: 7px; font-weight: 600; color: #1C1A37; margin-bottom: 6px; }
.sth-chart { display: flex; align-items: flex-end; gap: 4px; flex: 1; padding-bottom: 14px; position: relative; }
.sth-chart::after { content: ''; position: absolute; bottom: 14px; left: 0; right: 0; height: 1px; background: #E8E6F5; }
.sth-bwrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.sth-bar { width: 100%; border-radius: 2px 2px 0 0; }
.sth-blbl { font-family: 'DM Sans', sans-serif; font-size: 5.5px; color: #9A9A9A; text-align: center; }
.sth-kgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; height: 100%; }
.sth-kpi { background: #F7F5FD; border-radius: 4px; padding: 6px 7px; display: flex; flex-direction: column; justify-content: space-between; }
.sth-kpi-n { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; line-height: 1; color: #1C1A37; letter-spacing: -0.03em; }
.sth-kpi-n span { font-size: 10px; font-weight: 500; }
.sth-kpi-d { font-family: 'DM Sans', sans-serif; font-size: 6px; font-weight: 600; color: #22C55E; }
.sth-kpi-l { font-family: 'DM Sans', sans-serif; font-size: 5.5px; color: #9A9A9A; line-height: 1.3; margin-top: 2px; }
.sth-rgrid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; height: 100%; }
.sth-rcol { border-left: 2px solid #EEECf8; padding-left: 5px; }
.sth-rnum { font-family: 'DM Sans', sans-serif; font-size: 7px; font-weight: 700; color: #9747FF; margin-bottom: 2px; }
.sth-rtitle { font-family: 'DM Sans', sans-serif; font-size: 6.5px; font-weight: 600; color: #1C1A37; margin-bottom: 4px; line-height: 1.3; }
.sth-rline { height: 1px; background: #EEECf8; margin-bottom: 4px; }
.sth-gantt { display: flex; flex-direction: column; gap: 5px; }
.sth-ghd { display: grid; grid-template-columns: 46px repeat(4,1fr); margin-bottom: 2px; }
.sth-gq { font-family: 'DM Sans', sans-serif; font-size: 6px; font-weight: 500; color: #9A9A9A; text-align: center; }
.sth-grow { display: grid; grid-template-columns: 46px repeat(4,1fr); gap: 2px; align-items: center; }
.sth-glbl { font-family: 'DM Sans', sans-serif; font-size: 6.5px; font-weight: 500; color: #1C1A37; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sth-gcell { height: 10px; border-radius: 2px; }
.sth-gcell.on { background: #9747FF; }
.sth-gcell.lt { background: rgba(151,71,255,0.18); }
.sth-gcell.off { background: #F5F4FB; }

/* Slides input */
.fake-sli-area { padding: 7px 12px 10px; border-top: 1px solid #E3E2F0; flex-shrink: 0; background: white; }
.fake-sli { background: white; border: 1px solid #E3E2F0; border-radius: 10px; padding: 7px 12px 7px; box-shadow: 0 2px 5px rgba(26,28,56,0.06); }
.fsi-top { display: flex; align-items: center; gap: 8px; min-height: 20px; }
.fsi-txt { flex: 1; font-size: 10.5px; color: #1C1A37; line-height: 1.4; }
.fsi-cursor { display: inline-block; width: 1.5px; height: 11px; background: #9747FF; margin-left: 1px; animation: fcblink 1s step-end infinite; vertical-align: text-bottom; }
@keyframes fcblink { 0%,100%{opacity:1;} 50%{opacity:0;} }
.fsi-snd { width: 24px; height: 24px; border-radius: 50%; background: #1C1A37; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fsi-div { height: 1px; background: #E3E2F0; margin: 5px 0; }
.fsi-bs { display: flex; align-items: center; gap: 4px; }
.fsi-b { display: inline-flex; align-items: center; gap: 3px; padding: 3px 8px; border-radius: 9px; border: 1px solid #E3E2F0; font-size: 8.5px; color: #9A9A9A; cursor: pointer; }
.fsi-b.on { background: rgba(151,71,255,0.07); border-color: rgba(151,71,255,0.25); color: #9747FF; font-weight: 500; }
.fsi-b.ml { margin-left: auto; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--div);
  padding-top: 48px;
}

.sbar-item {
  padding: 40px 56px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.sbar-item + .sbar-item { border-left: 1px solid var(--div); }

.sbar-n {
  font-family: 'Crimson Text', serif;
  font-size: clamp(44px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--black);
  white-space: nowrap;
}

.sbar-l {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: -0.01em;
  line-height: 1.5;
  max-width: 110px;
}

/* ============================================================
   CLIENTS CAROUSEL
   ============================================================ */
.clients {
  background: var(--white);
  border-bottom: 1px solid var(--div);
  padding: 40px 56px 52px;
}

.clients-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: rgba(0,0,0,0.25);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}

.clients-wrap { overflow: hidden; position: relative; }

.clients-wrap::before,
.clients-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.clients-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
.clients-wrap::after { right: 0; background: linear-gradient(to left, white, transparent); }

.clients-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: scrollx 36s linear infinite;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes scrollx {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-33.333%, 0, 0); }
}

.clients-track img {
  height: 20px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.3s;
  cursor: pointer;
  display: block;
}

.clients-track img:hover { filter: grayscale(0) opacity(1); }
.clients-track img.inv { filter: grayscale(1) invert(1) opacity(0.45); }
.clients-track img.inv:hover { filter: grayscale(1) invert(1) opacity(0.9); }

/* ============================================================
   AGENTS SECTION (sticky scroll)
   ============================================================ */
.agents-section { background: var(--white); }

.agents-intro {
  padding: 120px 56px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  border-bottom: 1px solid var(--div);
}

.a-eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--purple);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.a-title {
  font-family: 'Crimson Text', serif;
  font-size: clamp(44px, 4.5vw, 66px);
  line-height: 0.91;
  letter-spacing: -0.025em;
  color: var(--black);
}

.a-title em { font-style: italic; color: var(--purple); }

.a-sub { font-size: 16px; color: var(--gray); line-height: 1.65; max-width: 400px; align-self: end; }

.a-custom-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(151,71,255,0.2);
  border-radius: 100px;
  background: rgba(151,71,255,0.04);
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--purple);
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.a-custom-note:hover {
  background: rgba(151,71,255,0.12);
  border-color: rgba(151,71,255,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(151,71,255,0.2);
}

.agents-scroll-wrap { position: relative; height: calc(4 * 100vh); }
.agents-sticky { position: sticky; top: 64px; height: calc(100vh - 64px); display: grid; grid-template-columns: 340px 1fr; overflow: hidden; }
.agents-tabs { border-right: 1px solid var(--div); background: var(--cream); display: flex; flex-direction: column; justify-content: center; }
.agent-tab { display: flex; align-items: stretch; cursor: pointer; position: relative; border-bottom: 1px solid var(--div); transition: background 0.2s; }
.agent-tab:first-child { border-top: 1px solid var(--div); }
.agent-tab.active { background: rgba(151,71,255,0.025); }
.tab-bar { width: 3px; flex-shrink: 0; position: relative; background: var(--div); }
.tab-prog { position: absolute; left: 0; top: 0; right: 0; height: 0%; background: var(--purple); transition: height 0.05s linear; }
.agent-tab.done .tab-prog { height: 100%; }
.tab-body { padding: 26px 28px; flex: 1; }
.tab-head { display: flex; align-items: center; gap: 10px; }
.tab-num { font-family: 'Roboto Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: -0.01em; flex-shrink: 0; }
.agent-tab.active .tab-num { color: var(--purple); }
.tab-ico { width: 28px; height: 28px; flex-shrink: 0; }
.tab-ico img { width: 28px; height: 28px; object-fit: contain; }
.tab-name { font-family: 'Crimson Text', serif; font-size: 17px; font-weight: 600; letter-spacing: -0.02em; color: var(--black); line-height: 1.1; transition: color 0.2s; }
.agent-tab.active .tab-name { color: var(--purple); }
.tab-desc { font-size: 13px; color: var(--gray); line-height: 1.45; margin-top: 8px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.agent-tab.active .tab-desc { max-height: 52px; }
.agents-panels { position: relative; overflow: hidden; height: 100%; background: var(--white); }
.agent-panel { position: absolute; inset: 0; display: grid; grid-template-columns: 55fr 45fr; opacity: 0; visibility: hidden; }
.agent-panel.active { opacity: 1; visibility: visible; }
.panel-img { background: var(--cream); border-right: 1px solid var(--div); display: flex; align-items: center; justify-content: center; padding: 40px 32px; overflow: hidden; }
.panel-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; mix-blend-mode: multiply; }
.panel-detail { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; overflow-y: auto; }
.panel-agent-icon { display: none; }
.panel-num { display: none; }
.panel-tag { font-family: 'Roboto Mono', monospace; font-size: 10px; color: var(--purple); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 18px; }
.panel-title { font-family: 'Crimson Text', serif; font-size: clamp(28px, 2.5vw, 38px); line-height: 0.95; letter-spacing: -0.02em; color: var(--black); margin-bottom: 14px; }
.panel-title em { font-style: italic; color: var(--purple); }
.panel-body { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 28px; }
.panel-feats { list-style: none; border-top: 1px solid var(--div); margin-bottom: 28px; }
.panel-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--black); padding: 9px 0; border-bottom: 1px solid var(--div); line-height: 1.35; }
.fdot { width: 4px; height: 4px; border-radius: 50%; background: var(--purple); flex-shrink: 0; margin-top: 5px; }
.panel-stat { display: flex; align-items: baseline; gap: 10px; }
.stat-n { font-family: 'Crimson Text', serif; font-size: 44px; line-height: 1; letter-spacing: -0.04em; color: var(--black); }
.stat-n span { color: var(--purple); font-size: 0.65em; }
.stat-l { font-family: 'Roboto Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: -0.01em; line-height: 1.45; max-width: 140px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--cream); overflow: hidden; border-top: 1px solid var(--div); }

.testi-head {
  text-align: center;
  padding: 48px 56px 36px;
  border-bottom: 1px solid var(--div);
}

.te-eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.te-title {
  font-family: 'Crimson Text', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--black);
}

.te-title em { font-style: italic; }

.testi-carousel { position: relative; height: 520px; overflow: hidden; }
.testi-slide { position: absolute; inset: 0; display: none; grid-template-columns: 45fr 55fr; height: 520px; overflow: hidden; }
.testi-slide.active { display: grid; }
.testi-photo { position: relative; overflow: hidden; }
.testi-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.testi-usecase-pill {
  position: absolute;
  bottom: 24px; left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s;
}

.testi-usecase-pill:hover { background: rgba(255,255,255,0.98); }

.testi-content {
  padding: 36px 52px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 1px solid var(--div);
  background: var(--white);
  overflow-y: auto;
}

.testi-quote-mark { font-family: 'Crimson Text', serif; font-size: 64px; line-height: 0.5; color: var(--div); margin-bottom: 16px; font-style: italic; }
.testi-quote { font-family: 'Crimson Text', serif; font-size: clamp(19px, 1.8vw, 26px); line-height: 1.5; letter-spacing: -0.01em; color: var(--black); margin-bottom: 36px; }

.testi-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--div);
}

.testi-metric-n { font-family: 'Crimson Text', serif; font-size: 56px; line-height: 1; letter-spacing: -0.03em; color: var(--black); }
.testi-metric-n span { color: var(--purple); font-size: 0.6em; }
.testi-metric-l { font-family: 'Roboto Mono', monospace; font-size: 11px; color: var(--muted); line-height: 1.5; letter-spacing: -0.01em; }

.testi-author { display: flex; align-items: center; gap: 14px; margin-bottom: 0; flex: 1; align-items: flex-end; }
.testi-author-name { font-size: 15px; font-weight: 600; color: var(--black); letter-spacing: -0.02em; }
.testi-author-role { font-family: 'Roboto Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: -0.01em; margin-top: 3px; line-height: 1.5; }

.testi-content-nav { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 24px; margin-left: auto; }
.testi-counter { font-family: 'Roboto Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: -0.01em; min-width: 40px; }

.testi-nav-mini {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--div);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.testi-nav-mini:hover { border-color: var(--black); background: var(--black); color: white; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { padding: 120px 56px; background: var(--white); border-top: 1px solid var(--div); }

.ind-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.ind-eyebrow { font-family: 'Roboto Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 18px; }
.ind-title { font-family: 'Crimson Text', serif; font-size: clamp(40px, 4vw, 58px); line-height: 0.92; letter-spacing: -0.025em; color: var(--black); }
.ind-title em { font-style: italic; }
.ind-sub { font-size: 16px; color: var(--gray); line-height: 1.65; max-width: 380px; align-self: end; }

.ind-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--div); margin-bottom: 56px; }

.ind-tab {
  padding: 12px 28px 11px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.ind-tab.active { color: var(--black); border-bottom-color: var(--black); }
.ind-tab:hover { color: var(--black); }

.ind-panel { display: none; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ind-panel.active { display: grid; }
.ind-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.ind-card {
  background: var(--cream);
  border: 1px solid var(--div);
  border-radius: 12px;
  padding: 28px 24px;
  cursor: default;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ind-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
.ind-card-ico { width: 40px; height: 40px; margin-bottom: 16px; }
.ind-card-ico img { width: 40px; height: 40px; object-fit: contain; }
.ind-card-title { font-family: 'Crimson Text', serif; font-size: 17px; font-weight: 500; color: var(--black); letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.15; }
.ind-card-body { font-size: 13px; color: var(--gray); line-height: 1.6; }
.ind-visual { position: relative; }
.ind-visual img { width: 100%; border-radius: 12px; border: 1px solid var(--div); box-shadow: 0 8px 32px rgba(0,0,0,0.07); display: block; }

.ind-badge {
  position: absolute;
  top: -14px; right: -14px;
  padding: 7px 16px;
  border-radius: 100px;
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.ind-badge.badge-1 { background: #FDBF4F; color: #7A5000; }
.ind-badge.badge-2 { background: #3700FF; color: #fff; }
.ind-badge.badge-3 { background: var(--black); color: #fff; }

/* ============================================================
   SECURITY SECTION (home version - dark background)
   ============================================================ */
.security { padding: 120px 56px; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.04); }

.sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.se-eyebrow { font-family: 'Roboto Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 18px; }
.se-title { font-family: 'Crimson Text', serif; font-size: clamp(40px, 4vw, 56px); line-height: 0.92; letter-spacing: -0.025em; color: var(--white); }
.se-title em { font-style: italic; color: rgba(255,255,255,0.3); }
.se-tagline { font-size: 15px; color: rgba(255,255,255,0.25); line-height: 1.7; max-width: 360px; align-self: end; }

.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.04); border-radius: 14px; overflow: hidden; }
.sec-card { background: var(--dark); padding: 36px 28px; transition: background 0.2s; cursor: default; }
.sec-card:hover { background: #0e0e12; }
.se-val { font-family: 'Crimson Text', serif; font-size: 48px; line-height: 1; letter-spacing: -0.04em; color: var(--white); margin-bottom: 8px; }
.se-val em { font-style: italic; color: rgba(255,255,255,0.28); }
.se-lbl { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 500; margin-bottom: 8px; letter-spacing: -0.015em; }
.se-sub { font-size: 12px; color: rgba(255,255,255,0.18); line-height: 1.65; }

/* ============================================================
   CTA SECTION - HOME SPECIFIC (cream background)
   ============================================================ */
.home-cta {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 400px;
  min-height: 440px;
  overflow: hidden;
  border-top: 1px solid var(--div);
}

.home-cta .cta-l { border-right: 1px solid var(--div); }
.home-cta .ct-eyebrow { color: var(--muted); }
.home-cta .ct-title { color: var(--black); }
.home-cta .ct-sub { color: var(--gray); }
.btn-cta:hover { box-shadow: 0 14px 36px rgba(0,0,0,0.15); }
.home-cta .ct-proof { color: var(--muted); }

/* ============================================================
   HOME RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero { padding: 100px 32px 0; }
  .stats-bar .sbar-item { padding: 32px; }
  .clients { padding: 32px; }
  .versus-section { padding: 80px 32px; }
  .versus-col { padding: 0 32px; }
  .agents-intro { padding: 80px 32px 60px; gap: 40px; }
  .industries { padding: 80px 32px; }
  .security { padding: 80px 32px; }
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-headline { font-size: clamp(40px, 10vw, 72px); }
  .stats-bar { grid-template-columns: 1fr; }
  .sbar-item + .sbar-item { border-left: none; border-top: 1px solid var(--div); }
  .ind-panel.active { grid-template-columns: 1fr; }
  .ind-visual { display: none; }
  .sec-grid { grid-template-columns: 1fr 1fr; }

  /* Hero mobile */
  .hero { padding: 88px 20px 48px; }
  .hero-sub { font-size: 15px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn-primary { width: 100% !important; }
  .hero-cta .btn-ghost-dark { justify-content: center; }

  /* Fake UI mobile */
  .screen-chrome { display: none; }
  .hero-screen { display: block; overflow: hidden; }
  .screen-frame { border-radius: 12px; }
  .fake-main { background: transparent; }
  .mob-scroll-area { background: white; }
  .fake-sli-area { background: white; }
  .fake-ui { grid-template-columns: 1fr; height: 520px; }
  .fake-ui.zoomed { transform: none !important; }
  .fake-sidebar { display: none; }
  .slide-topbar { display: none; }
  .mob-ui-header { display: flex; }
  .fake-main { height: 100%; overflow: hidden; }
  .fake-sli-area { margin-top: auto; }
  .gen-area { flex: none; padding: 0 14px 10px; }
  .gen-area.mob-idle { flex: 1; display: flex; align-items: center; justify-content: center; padding: 0; }
  .gen-info-title { font-size: 13px; }
  .gen-info-src { font-size: 11px; }
  .gen-counter { font-size: 12px; }
  .slides-area { overflow: visible; flex: none; }
  .slides-meta { display: none; }
  .slides-grid { flex: none; display: block; position: relative; height: 200px; margin: 0 14px; padding: 0; }
  .sthumb { position: absolute; width: 100%; top: 0; left: 0; aspect-ratio: 16/9; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.18); z-index: 2; }
  .sthumb:nth-child(2) { top: 6px; left: 6px; width: calc(100% - 6px); z-index: 1; }
  .sthumb:nth-child(3) { top: 12px; left: 12px; width: calc(100% - 12px); z-index: 0; }
  .sthumb:nth-child(n+4) { display: none; }
  .sthumb:hover { transform: none; }
  .mob-cta-bar { display: flex; }
  .mob-scroll-area { overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .fake-sli-area { margin-top: 0; }
  .sth-conf { font-size: 8px; }
  .sth-cv-label { font-size: 9px; }
  .sth-cv-title { font-size: 22px; }
  .sth-cv-sub { font-size: 10px; }
  .sth-cv-date { font-size: 9px; }

  /* Stats */
  .stats-bar { padding-top: 0; }
  .sbar-item { padding: 28px 20px; }

  /* Clients */
  .clients { padding: 28px 20px; }

  /* Agents intro */
  .agents-intro { grid-template-columns: 1fr; gap: 24px; padding: 60px 20px 32px; }

  /* Agents - 4 cards mobile (empilees, plus de pin/scroll ni de tabs -
     voir "Agents sticky scroll" dans page-home.js, desormais desktop-only) */
  .agents-scroll-wrap { height: auto; }
  .agents-sticky { position: static; height: auto; display: block; overflow: visible; }
  .agents-tabs { display: none; }
  .agents-panels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: auto;
    overflow: visible;
    padding: 20px 20px 48px;
    background: var(--cream);
    position: static;
  }
  .agent-panel {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--div);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transform: translateY(28px);
    transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  }
  .agent-panel.mob-in { transform: translateY(0); }
  .panel-img { display: none; }
  .panel-detail { padding: 20px 20px 24px; }
  .panel-agent-icon { display: flex; align-items: center; width: 36px; height: 36px; margin-bottom: 12px; }
  .panel-agent-icon img { width: 36px; height: 36px; object-fit: contain; }
  .panel-num-tag { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
  .panel-num-tag .panel-tag { margin-bottom: 0; }
  .panel-num { display: block; font-family: 'Roboto Mono', monospace; font-size: 11px; color: var(--purple); letter-spacing: -0.01em; }
  .panel-title { font-size: clamp(28px,7.5vw,36px); line-height: 1.02; margin-bottom: 10px; }
  .panel-title br { display: none; }
  .panel-feats { margin-bottom: 8px; }
  .panel-feats li { padding: 6px 0; font-size: 12px; }
  [data-panel="1"] .panel-feats li:last-child { border-bottom: none; }
  .panel-stat { margin-top: 12px; }

  /* Testimonials */
  .testi-head { padding: 36px 20px 24px; }
  .testi-carousel { height: auto; }
  .testi-slide { position: static; display: none; height: auto; grid-template-columns: 1fr; }
  .testi-slide.active { display: flex; flex-direction: column; }
  .testi-photo { height: 240px; }
  .testi-content { border-left: none; border-top: 1px solid var(--div); padding: 28px 20px; }
  .testi-metric-n { font-size: 40px; }
  .testi-quote { font-size: 18px; }

  /* Industries */
  .industries { padding: 60px 20px; }
  .ind-header { grid-template-columns: 1fr; gap: 24px; }
  .ind-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 20px;
    position: sticky;
    top: 64px;
    z-index: 10;
    background: var(--white);
    transition: top 0.35s ease;
  }
  nav.nav-hidden ~ .industries .ind-tabs { top: 0; }
  .ind-tabs::-webkit-scrollbar { display: none; }
  .ind-tab { white-space: nowrap; flex-shrink: 0; padding: 12px 20px 11px; }
  .ind-cards { grid-template-columns: 1fr; gap: 10px; }

  /* Security */
  .security { padding: 60px 20px; }
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
  .sec-grid { grid-template-columns: 1fr !important; }
  .sec-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(34px,9.5vw,52px); }
  .testi-quote { font-size: 16px; }
  .testi-metric-n { font-size: 36px; }
  .ind-card { padding: 20px 18px; }
}

/* Connecteurs : CSS partagee dans main.css (section "SHARED INTEGRATIONS
   SECTION"), utilisee a l'identique par Home et Product - rien a dupliquer ici. */

/* ============================================================
   MULTI-MODELES
   ============================================================ */
.models-section { background: var(--dark); padding: 100px 56px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.models-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.mo-eyebrow { font-family: 'Roboto Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 18px; }
.mo-title { font-family: 'Crimson Text', serif; font-size: clamp(40px, 4vw, 58px); line-height: 0.92; letter-spacing: -0.025em; color: var(--white); }
.mo-title em { font-style: italic; color: rgba(255,255,255,0.3); }
.mo-sub { font-size: 15px; color: rgba(255,255,255,0.3); line-height: 1.75; align-self: end; max-width: 400px; }

.models-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; overflow: hidden; }
.model-card { background: var(--dark); padding: 36px 32px; transition: background 0.2s; cursor: default; }
.model-card:hover { background: #0e0e12; }
.model-logo { width: 40px; height: 40px; margin-bottom: 20px; flex-shrink: 0; }
.model-logo img { width: 40px; height: 40px; object-fit: contain; }
.model-name { font-family: 'Crimson Text', serif; font-size: 24px; letter-spacing: -0.02em; color: var(--white); margin-bottom: 6px; }
.model-maker { font-family: 'Roboto Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: -0.01em; margin-bottom: 16px; }
.model-use { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; }
.models-note { margin-top: 32px; font-family: 'Roboto Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.15); text-align: center; letter-spacing: -0.01em; }

@media (max-width: 1100px) {
  .models-section { padding: 60px 20px; }
  .models-head { grid-template-columns: 1fr; gap: 24px; }
  .models-grid { grid-template-columns: repeat(2,1fr); }
}

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