/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0C0E18;
  color: #E8EAF8;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

:root {
  --ink: #0C0E18;
  --ink-soft: #111320;
  --ink-border: #1E2235;
  --stone: #6C7FD8;
  --stone-light: #A0AEFF;
  --cream: #E8EAF8;
  --cream-soft: #D4D8F0;
  --muted: #5A5F7A;
  --muted-light: #8890B8;
  --accent: #5B6DD4;
  --green: #5BC8A8;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
p { max-width: 68ch; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
.site-header.scrolled .inner {
  border-bottom-color: var(--ink-border);
  background: rgba(13,13,11,0.94);
  backdrop-filter: blur(20px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream) !important;
}
.logo span:not(.logo-text) { color: var(--stone); }
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-list a {
  font-size: 0.875rem;
  color: var(--muted-light);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-list a:hover { color: var(--cream); }
.btn-nav {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--stone) !important;
  border: 1.5px solid var(--stone);
  padding: 7px 18px;
  border-radius: 7px;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-nav:hover { background: var(--stone); color: var(--ink) !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--stone);
  color: var(--ink);
  border: 1.5px solid var(--stone);
}
.btn-primary:hover {
  background: var(--stone-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108,127,216,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--ink-border);
}
.btn-outline:hover { border-color: var(--stone); color: var(--stone); }
.btn-ghost {
  background: none;
  border: none;
  padding: 0;
  color: var(--stone);
  font-size: 0.9rem;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: gap 0.2s;
}
.btn-ghost:hover { gap: 12px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 68% 50%, rgba(108,127,216,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(108,127,216,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--stone);
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 400;
  line-height: 1.04;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero-title strong {
  font-weight: 600;
  font-style: normal;
  color: var(--stone);
  display: block;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--muted-light);
  line-height: 1.78;
  margin-bottom: 40px;
  max-width: 48ch;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* App Window */
.hero-visual { position: relative; }
.app-window {
  background: var(--ink-soft);
  border: 1px solid var(--ink-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(108,127,216,0.07);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.7s ease;
  min-width: 680px;
  max-width: 95%;
}
.app-window:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
}
.app-body {
  display: flex;
  min-height: 0;
}
.app-main {
  flex: 1;
  min-width: 0;
}
.app-sidepanel {
  width: 152px;
  flex-shrink: 0;
  border-left: 1px solid var(--ink-border);
  padding: 12px 10px;
  background: rgba(10,12,22,0.5);
  overflow-y: auto;
}
.sidepanel-title {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink-border);
}
.sidepanel-section {
  margin-bottom: 12px;
}
.sidepanel-section:last-child {
  margin-bottom: 0;
}
.sidepanel-label {
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 6px;
}
.sidepanel-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--cream-soft);
  cursor: default;
  margin-bottom: 4px;
  padding: 2px 0;
}
.sidepanel-check input[type="checkbox"] {
  width: 12px;
  height: 12px;
  accent-color: var(--stone);
  flex-shrink: 0;
}
.sidepanel-select {
  width: 100%;
  font-size: 0.7rem;
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid var(--ink-border);
  background: var(--ink-soft);
  color: var(--cream-soft);
  cursor: pointer;
}
.sidepanel-select:focus {
  outline: none;
  border-color: rgba(108,127,216,0.4);
}
.app-bar {
  background: #141626;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF6059; }
.dot-y { background: #FEBC2E; }
.dot-g { background: #28C840; }
.app-bar-title {
  margin-left: 8px;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
}
.app-toolbar {
  padding: 9px 16px;
  border-bottom: 1px solid var(--ink-border);
  display: flex;
  gap: 8px;
}
.badge {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}
.badge-stone {
  background: rgba(108,127,216,0.14);
  color: var(--stone);
  border: 1px solid rgba(108,127,216,0.22);
}
.badge-gray {
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  border: 1px solid var(--ink-border);
}
.app-table { width: 100%; min-width: 420px; }
.table-head {
  display: grid;
  grid-template-columns: 2.2fr 0.9fr 1fr 1.15fr 0.8fr 72px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--ink-border);
}
.table-head span {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.table-head-actions { min-width: 0; }
.table-row {
  display: grid;
  grid-template-columns: 2.2fr 0.9fr 1fr 1.15fr 0.8fr 72px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(30,34,53,0.7);
  transition: background 0.2s;
  align-items: center;
  gap: 4px;
}
.table-row:hover { background: rgba(108,127,216,0.04); }
.table-row span {
  font-size: 0.78rem;
  color: var(--cream-soft);
  display: flex;
  align-items: center;
  min-width: 0;
}
.row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.row-btn {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid var(--ink-border);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.7rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.row-btn:hover {
  color: var(--stone);
  background: rgba(108,127,216,0.12);
  border-color: rgba(108,127,216,0.25);
}
.row-btn--danger:hover {
  color: #e86a6a;
  background: rgba(232,106,106,0.1);
  border-color: rgba(232,106,106,0.25);
}
.chip {
  font-size: 0.62rem;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(108,127,216,0.12);
  color: var(--stone-light);
  margin-left: 6px;
}
.table-total {
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 2.2fr 0.9fr 1fr 1.15fr 0.8fr 72px;
  align-items: center;
}
.table-total .total-label { font-size: 0.75rem; color: var(--muted); }
.table-total .total-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--stone);
  white-space: nowrap;
}
.total-marge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}
.app-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--ink-border);
}
.app-stat {
  padding: 12px 14px;
  border-right: 1px solid var(--ink-border);
}
.app-stat:last-child { border-right: none; }
.stat-lbl { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
}
.stat-delta { font-size: 0.67rem; color: var(--green); margin-top: 1px; }

/* Badges sous le visuel (flottantes) */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.float-badge {
  background: var(--ink-soft);
  border: 1px solid var(--ink-border);
  border-radius: 12px;
  padding: 11px 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-badge-1 {
  animation: floaty 4s ease-in-out infinite;
}
.float-badge-2 {
  animation: floaty 4s ease-in-out infinite 2s;
}
.fb-text { font-size: 0.72rem; color: var(--muted-light); line-height: 1.35; }
.fb-text strong { color: var(--cream); display: block; font-weight: 500; font-size: 0.78rem; }
.green-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Stats Banner ── */
.stats-banner {
  border-top: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
  padding: 44px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--ink-border);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; text-align: left; }
.stat-item:last-child { border-right: none; }
.stat-big {
  font-family: 'Syne', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-sub { font-size: 0.84rem; color: var(--muted); line-height: 1.45; }

/* ── Section common ── */
.section { padding: 96px 0; }
.section-alt { background: var(--ink-soft); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--stone);
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title em { font-style: normal; font-weight: 600; color: var(--stone); }
.section-desc { font-size: 0.97rem; color: var(--muted-light); line-height: 1.78; max-width: 54ch; }

/* ── Problem section ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-cards { display: flex; flex-direction: column; gap: 12px; }
.problem-card {
  background: #111320;
  border: 1px solid var(--ink-border);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.25s ease;
}
.problem-card:hover {
  border-color: rgba(108,127,216,0.22);
  transform: translateX(5px);
}
.pc-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(108,127,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pc-text { font-size: 0.875rem; color: var(--muted-light); line-height: 1.5; }
.pc-text strong { color: var(--cream); font-weight: 500; display: block; margin-bottom: 2px; font-size: 0.9rem; }

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-border);
  border: 1px solid var(--ink-border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 56px;
}
.feat {
  background: var(--ink-soft);
  padding: 34px 30px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.feat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 15% 15%, rgba(108,127,216,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feat:hover { background: #0F1124; }
.feat:hover::after { opacity: 1; }
.feat-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  color: var(--stone);
  opacity: 0.55;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.feat-icon { font-size: 1.4rem; margin-bottom: 14px; display: block; }
.feat-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 9px;
  font-family: 'Inter', sans-serif;
}
.feat-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ── Ce qu'il faut savoir (3 petits carrés) ── */
.features-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feat-summary {
  background: var(--ink-soft);
  border: 1px solid var(--ink-border);
  border-radius: 12px;
  padding: 24px 22px;
  transition: background 0.25s, border-color 0.25s;
}
.feat-summary:hover {
  background: #0F1124;
  border-color: rgba(108,127,216,0.2);
}
.feat-summary-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(108,127,216,0.15);
  border: 1px solid rgba(108,127,216,0.35);
  color: var(--stone-light);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.feat-summary-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 8px 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}
.feat-summary-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.features-summary-link {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 0;
}
.features-summary-link .btn-ghost { font-size: 0.875rem; }

@media (max-width: 900px) {
  .features-summary { grid-template-columns: 1fr; }
}

/* ── Workflow ── */
.workflow-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  position: relative;
}
.workflow-row::before {
  content: '';
  position: absolute;
  top: 27px; left: 12.5%;
  width: 75%; height: 1px;
  background: linear-gradient(to right, transparent, var(--ink-border) 20%, var(--stone) 50%, var(--ink-border) 80%, transparent);
}
.wf-step { text-align: center; padding: 0 16px; }
.wf-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink-soft);
  border: 1px solid var(--ink-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--stone);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  transition: all 0.25s;
}
.wf-step:hover .wf-num {
  background: var(--stone);
  color: var(--ink);
  border-color: var(--stone);
  transform: scale(1.08);
}
.wf-title { font-size: 0.88rem; font-weight: 500; color: var(--cream); margin-bottom: 7px; }
.wf-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }

/* ── Integrations ── */
.integ-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.integ-card {
  background: var(--ink);
  border: 1px solid var(--ink-border);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.25s;
}
.integ-card:hover {
  border-color: rgba(108,127,216,0.28);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.integ-card--facturx {
  position: relative;
  padding-bottom: 72px;
}
.integ-card-badge-img {
  position: absolute;
  bottom: 16px;
  right: 16px;
  max-width: 160px;
  height: auto;
  opacity: 0.85;
  border-radius: 6px;
}
.integ-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--stone);
  margin-bottom: 18px;
}
.integ-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}
.integ-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.68; max-width: none; }
.integ-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--stone);
  font-weight: 500;
}
.integ-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ── CTA ── */
.cta-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 0% 0%, #3a2b6a 0%, transparent 45%),
              radial-gradient(140% 160% at 100% 0%, #283a7a 0%, transparent 50%),
              linear-gradient(180deg, #15152a 0%, #0f101f 100%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}
.cta-illustration {
  margin: 16px auto 40px;
  max-width: 560px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.cta-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 120px 20px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.cta-illustration img {
  display: block;
  max-width: 520px;
  width: 100%;
  border-radius: 18px;
}
.cta-section .cta-title { color: #E8EAF8; }
.cta-section .cta-title .hi { color: #A0AEFF; }
.cta-section .cta-sub { color: #C4C8F0; }
.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta-title em { font-style: normal; font-weight: 600; color: var(--stone); }
.cta-sub { font-size: 0.97rem; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: var(--ink-soft);
  border-top: 1px solid var(--ink-border);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand p {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.65;
  max-width: 34ch;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.84rem; color: var(--muted-light); transition: color 0.2s; }
.footer-col a:hover { color: var(--stone); }
.footer-bottom {
  border-top: 1px solid var(--ink-border);
  padding-top: 22px;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}


/* ── Photo section ── */
.photo-section {
  position: relative;
  overflow: hidden;
}
.photo-section-bg {
  position: absolute;
  inset: -20% 0;
  left: -5%;
  right: -5%;
  top: -20%;
  bottom: -20%;
  z-index: 0;
  background-image: url('/images/carriere-probleme.png');
  background-size: cover;
  background-position: center 55%;
  filter: grayscale(15%) brightness(0.45) contrast(1.1) saturate(0.85);
  will-change: transform;
}
.photo-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12,14,24,0.88) 0%,
    rgba(12,14,24,0.65) 45%,
    rgba(17,19,40,0.5) 100%
  );
  z-index: 1;
}
.photo-section .container { position: relative; z-index: 2; }
.photo-credit {
  position: absolute;
  bottom: 16px; right: 24px;
  font-size: 0.62rem;
  color: rgba(136,144,184,0.35);
  z-index: 2;
  letter-spacing: 0.04em;
}

/* ── Scroll reveal ── */
.r {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.r.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-row { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .workflow-row::before { display: none; }
  .integ-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .stats-row { grid-template-columns: 1fr; gap: 24px; }
  .stat-item { padding: 0; border: none; border-bottom: 1px solid var(--ink-border); padding-bottom: 20px; text-align: left; }
  .stat-item:last-child { border: none; }
}
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 96px 0 56px;
  }
  .features-grid { grid-template-columns: 1fr; }
  .workflow-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
  .section { padding: 64px 0; }
}
/* ── Nav toggle (mobile) ── */
.nav-toggle { display: none; color: var(--cream); padding: 4px; background: none; border: none; cursor: pointer; }

/* ── Page hero (produit / tarifs / contact) ── */
.page-hero {
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(108,127,216,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}
.page-hero__label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--stone);
}

/* ── Sage icon ── */
.sage-icon {
  font-size: 0.95rem !important;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--stone);
  margin-bottom: 12px;
  display: block;
  letter-spacing: 0.02em;
}

/* ── Feature list full (produit page) ── */
.feature-list-full { display: flex; flex-direction: column; }
.feature-full-item {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 44px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--ink-border);
  transition: 0.25s ease;
}
.feature-full-item:first-child { padding-top: 0; }
.feature-full-item:last-child { border-bottom: none; }
.feature-full-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--muted);
  opacity: 0.35;
  transition: 0.25s;
  padding-top: 4px;
}
.feature-full-item:hover .feature-full-num { color: var(--stone); opacity: 1; }
.feature-full-main h3 { font-size: 1.15rem; font-weight: 500; color: var(--cream); margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.feature-full-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }
.feature-full-detail { font-size: 0.855rem; color: var(--muted-light); line-height: 1.75; }
.feature-full-detail ul { list-style: none; }
.feature-full-detail li { padding: 5px 0 5px 16px; position: relative; color: var(--muted); }
.feature-full-detail li::before { content: '→'; position: absolute; left: 0; color: var(--stone); font-size: 0.8em; }

/* ── Tarifs grid ── */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.tarifs-grid:has(.tarif-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  column-gap: 4px;
}
.tarif-card {
  background: var(--ink-soft);
  border: 1px solid var(--ink-border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
  max-width: 400px;
  margin-inline: auto;
}
.tarif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ink-border);
  transition: background 0.25s;
}
.tarif-card:hover::before,
.tarif-card--featured::before { background: var(--stone); }
.tarif-card--featured {
  border-color: rgba(108,127,216,0.3);
  background: rgba(108,127,216,0.04);
}
.tarif-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  background: rgba(108,127,216,0.12);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.tarif-name { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 400; color: var(--cream); margin-bottom: 7px; }
.tarif-sub { font-size: 0.83rem; color: var(--muted); margin-bottom: 24px; line-height: 1.55; }
.tarif-price { font-family: 'Syne', sans-serif; font-size: 1.9rem; font-weight: 400; color: var(--stone); margin-bottom: 24px; }
.tarif-price span { font-size: 0.9rem; color: var(--muted); font-family: 'Inter', sans-serif; }
.tarif-divider { height: 1px; background: var(--ink-border); margin-bottom: 20px; }
.tarif-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.tarif-feature { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: var(--muted-light); }
.tarif-feature::before { content: '✓'; color: var(--stone); font-size: 0.78em; flex-shrink: 0; font-weight: 600; }
.tarif-feature--off { color: var(--muted); opacity: 0.45; }
.tarif-feature--off::before { content: '—'; color: var(--muted); }
.tarifs-reassurance {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  border-top: 1px solid var(--ink-border);
  padding-top: 48px;
  margin-top: 56px;
}
.tarifs-reassurance h4 { font-family: 'Inter', sans-serif; font-size: 0.93rem; font-weight: 500; color: var(--cream); margin-bottom: 7px; }
.tarifs-reassurance p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; max-width: none; }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.contact-info { position: sticky; top: 96px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-item__icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(108,127,216,0.1);
  border: 1px solid rgba(108,127,216,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; flex-shrink: 0;
}
.contact-item__label { font-size: 0.72rem; color: var(--muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item__value { font-size: 0.88rem; color: var(--cream-soft); }
.contact-promise {
  margin-top: 24px;
  padding: 18px;
  background: rgba(108,127,216,0.06);
  border: 1px solid rgba(108,127,216,0.15);
  border-radius: 10px;
}
.contact-promise p { font-size: 0.84rem; color: var(--muted-light); margin: 0; line-height: 1.65; max-width: none; }
.contact-promise strong { color: var(--stone); }

.form-card {
  background: var(--ink-soft);
  border: 1px solid var(--ink-border);
  border-radius: 12px;
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 7px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--ink-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--stone);
  box-shadow: 0 0 0 3px rgba(108,127,216,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { margin-top: 6px; }

/* ── Responsive additions ── */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  nav { display: none; position: fixed; inset: 64px 0 0; background: rgba(12,14,24,0.98); padding: 32px 24px; z-index: 99; }
  nav.open { display: block; }
  nav.open .nav-list { display: flex; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 24px; }
  .nav-list a { font-size: 1.1rem; }
  .feature-full-item { grid-template-columns: 48px 1fr; }
  .feature-full-detail { display: none; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .tarifs-reassurance { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
}
