:root {
  --slate: #1a2332;
  --slate-light: #232d3f;
  --orange: #ff6b35;
  --orange-dim: #e85a25;
  --cream: #f5f0e8;
  --cream-dark: #ede8df;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --white: #ffffff;
  --green: #22c55e;
  --warn: #f59e0b;
  --border: rgba(255,255,255,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 35, 50, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.nav-logo {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}
.lang-active { color: var(--orange); }
.lang-sep { color: rgba(255,255,255,0.3); }
.lang-link { color: rgba(255,255,255,0.5); text-decoration: none; }
.lang-link:hover { color: var(--white); }

/* HERO */
.hero {
  padding: 120px 24px 80px;
  background: var(--slate);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle at 70% 30%, rgba(255,107,53,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--slate));
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-text { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.65;
}

/* WIDGET CARD */
.hero-widget { position: relative; z-index: 1; }
.widget-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.widget-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.widget-dot.green { background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.widget-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
}
.widget-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.widget-stat { text-align: center; }
.widget-stat-val {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.widget-stat-val.orange { color: var(--orange); }
.widget-stat-val.green { color: var(--green); font-size: 20px; }
.widget-stat-label {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.widget-alerts { display: flex; flex-direction: column; gap: 10px; }
.widget-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.widget-alert.warn { border-left: 3px solid var(--warn); }
.widget-alert.ok { border-left: 3px solid var(--green); }
.alert-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.warn .alert-dot { background: var(--warn); }
.ok .alert-dot { background: var(--green); }
.alert-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.alert-cert {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.alert-exp { font-size: 11px; color: var(--warn); font-weight: 500; }
.alert-ok { font-size: 11px; color: var(--green); font-weight: 500; }

/* STATSBAR */
.statsbar {
  background: var(--slate-light);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 24px;
}
.statsbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* SECTION COMMON */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.section-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* PROBLEME */
.probleme { padding: 96px 24px; background: var(--cream); }
.probleme-inner { max-width: 1200px; margin: 0 auto; }
.probleme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.probleme-card {
  background: var(--white);
  border: 1px solid rgba(26,35,50,0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(26,35,50,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.probleme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,35,50,0.1);
}
.probleme-icon { margin-bottom: 20px; }
.probleme-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.probleme-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FONCTIONNALITES */
.fonctionnalites { padding: 96px 24px; background: var(--slate); color: var(--white); }
.fonctionnalites-inner { max-width: 1200px; margin: 0 auto; }
.fonctionnalites .section-eyebrow { color: var(--orange); }
.fonctionnalites .section-headline { color: var(--white); }
.fonctionnalites .section-body { color: rgba(255,255,255,0.55); }
.feat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.feat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: background 0.2s ease;
}
.feat-card:hover { background: rgba(255,255,255,0.07); }
.feat-main { grid-row: span 2; }
.feat-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,53,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}
.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feat-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* TEMOIGNAGE */
.temoignage {
  padding: 96px 24px;
  background: var(--cream-dark);
  border-top: 1px solid rgba(26,35,50,0.08);
}
.temoignage-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.temoignage-content { position: relative; }
.temoignage-quote-mark {
  font-family: 'Outfit', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.2;
  line-height: 0.5;
  margin-bottom: 32px;
}
.temoignage blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.temoignage-meta { display: flex; flex-direction: column; gap: 4px; }
.temoignage-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.temoignage-role {
  font-size: 14px;
  color: var(--text-muted);
}

/* CLOSING */
.closing { padding: 96px 24px; background: var(--orange); color: var(--white); }
.closing-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 40px;
}
.closing-offer { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.offer-tag {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 100px;
}
.offer-note {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

/* FOOTER */
.footer { background: var(--slate); color: rgba(255,255,255,0.6); padding: 64px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.footer-logo {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}
.footer-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-widget { max-width: 480px; }
  .hero { padding-top: 100px; }
  .statsbar-inner { gap: 24px; }
  .stat-sep { display: none; }
  .probleme-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-main { grid-row: auto; grid-column: span 2; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 36px; }
  .widget-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .widget-stat-val { font-size: 20px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-main { grid-column: auto; }
  .footer-links { grid-template-columns: 1fr; gap: 32px; }
  .statsbar-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
}