.oz-herosecteur-section {
  --oz-ink: #0F141E;
  --oz-ink-muted: #5A6070;
  --oz-cream: #F5F0EB;
  --oz-yellow: #FAC828;
  --oz-violet: #5F2DFF;
  --oz-line: rgba(15, 20, 30, 0.10);
  background: var(--oz-cream);
  padding: 64px 0 80px;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--oz-ink);
}
@media (min-width: 1024px) { .oz-herosecteur-section { padding: 96px 0 112px; } }
.oz-herosecteur-section *, .oz-herosecteur-section *::before, .oz-herosecteur-section *::after { box-sizing: border-box; }
.oz-herosecteur-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .oz-herosecteur-wrap { padding: 0 40px; } }

.oz-herosecteur-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .oz-herosecteur-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}

.oz-herosecteur-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--oz-line);
  padding: 8px 16px; border-radius: 100px;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--oz-ink); margin-bottom: 28px;
}
.oz-herosecteur-emoji { font-size: 14px; }

.oz-herosecteur-title {
  font-weight: 500; font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05; letter-spacing: -0.035em;
  max-width: 18ch; margin: 0 0 24px;
}
.oz-herosecteur-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--oz-ink-muted); max-width: 50ch; margin: 0 0 32px;
}

.oz-herosecteur-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.oz-herosecteur-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--oz-ink); color: var(--oz-cream);
  padding: 14px 24px; border-radius: 100px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: transform 0.15s ease;
}
.oz-herosecteur-btn-primary:hover { transform: translateY(-1px); }

.oz-herosecteur-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--oz-ink);
  padding: 13px 24px; border: 1.5px solid var(--oz-line);
  border-radius: 100px; font-weight: 600; font-size: 14px; text-decoration: none;
  transition: border-color 0.15s ease;
}
.oz-herosecteur-btn-ghost:hover { border-color: var(--oz-ink); }

.oz-herosecteur-mockup {
  background: white;
  border: 1px solid var(--oz-line);
  border-radius: 16px;
  box-shadow: 0 24px 48px -16px rgba(15, 20, 30, 0.18);
  overflow: hidden;
}

.oz-herosecteur-mockup-header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--oz-cream);
  border-bottom: 1px solid var(--oz-line);
}
.oz-herosecteur-mockup-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.oz-mockup-dot-r { background: #FF6058; }
.oz-mockup-dot-y { background: #FFBD2E; }
.oz-mockup-dot-g { background: #28C940; }
.oz-herosecteur-mockup-title {
  margin-left: 12px;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px; color: var(--oz-ink-muted);
}

.oz-herosecteur-mockup-body {
  padding: 28px;
  display: grid; grid-template-columns: 1fr; gap: 18px;
}

.oz-herosecteur-stat {
  display: flex; flex-direction: column;
  gap: 4px; padding: 18px 0;
  border-bottom: 1px solid var(--oz-line);
}
.oz-herosecteur-stat:last-child { border-bottom: none; padding-bottom: 0; }
.oz-herosecteur-stat:first-child { padding-top: 0; }

.oz-herosecteur-stat-value {
  font-weight: 700; font-size: 32px;
  letter-spacing: -0.03em; color: var(--oz-violet);
  line-height: 1;
}
.oz-herosecteur-stat-label {
  font-size: 13px; color: var(--oz-ink-muted);
}
