:root {
  --bg: #f3f6f8;
  --bg-soft: #ffffff;
  --text: #142132;
  --muted: #5f6c7b;
  --primary: #ce3826;
  --primary-dark: #a62b1d;
  --primary-soft: #f9e5e2;
  --secondary: #0b1726;
  --border: #d8e0e8;
  --success: #0d8a64;
  --warning: #c97a10;
  --danger: #b42318;
  --shadow: 0 20px 50px rgba(10, 29, 51, .10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 248, 251, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, .8);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 1.35rem;
  min-height: 42px;
}
.logo-image {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}
.site-footer .logo-image {
  height: 32px;
}
.logo-text { display: inline-flex; align-items: baseline; gap: 3px; }
.logo span { color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .95rem;
  color: var(--muted);
}
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}
.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--muted);
}
.lang-link.is-active {
  background: var(--secondary);
  color: white;
}
.lang-link:hover {
  color: var(--text);
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  color: var(--secondary);
  cursor: pointer;
}
.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 12px 30px rgba(206, 56, 38, .24); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary { background: white; border-color: var(--border); color: var(--text); }
.btn-secondary:hover { border-color: var(--primary); transform: translateY(-1px); }
.btn-dark { background: var(--secondary); color: white; }
.btn-dark:hover { transform: translateY(-1px); }

.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 20% 10%, rgba(206, 56, 38, .15), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(166, 43, 29, .09), transparent 28%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
}
.hero-intro {
  grid-column: 1 / -1;
  max-width: 920px;
}
.badge {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: .9rem;
}
h1 {
  margin: 18px 0;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 650px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }
.trust-list { display: grid; gap: 10px; margin-top: 26px; color: var(--muted); }
.trust-list span:before { content: "✓"; color: var(--success); font-weight: 900; margin-right: 8px; }
.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
.metric {
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--border);
}
.metric strong { display: block; font-size: 1.6rem; letter-spacing: -.04em; }
.metric span { color: var(--muted); font-size: .92rem; }

section { padding: 76px 0; }
.section-title { max-width: 760px; margin-bottom: 34px; }
.kicker { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
h2 { margin: 8px 0 14px; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.05; letter-spacing: -.045em; }
h3 { margin: 0 0 10px; font-size: 1.25rem; letter-spacing: -.02em; }
p { margin: 0 0 16px; }
.muted { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15,35,70,.05);
}
.card .icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}
.problem { background: white; }
.solution { background: #0b1220; color: white; }
.solution .muted, .solution .section-title p { color: #cbd5e1; }
.solution .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: white; }
.solution .card .icon { background: rgba(255,255,255,.1); color: white; }
.refs { background: white; }
.reference-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.reference-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 18px;
}
.reference-logos img {
  width: 100%;
  max-width: 220px;
  height: 96px;
  object-fit: contain;
}
.testimonial-band {
  background: #fff7f5;
  border-top: 1px solid #f0d7d2;
  border-bottom: 1px solid #f0d7d2;
}
.testimonial-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  letter-spacing: -.02em;
}
.testimonial-source {
  margin-top: 18px;
  color: var(--primary-dark);
  font-weight: 800;
}
.tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  color: var(--primary-dark);
  background: var(--primary-soft);
  margin-bottom: 18px;
}
.reference-card .result { margin-top: auto; font-weight: 800; color: var(--success); }
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 30px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-band p { color: rgba(255,255,255,.82); }
.cta-band .btn { justify-self: end; }
.form-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
label { display: block; font-weight: 700; margin-bottom: 8px; }
input, textarea, select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
  background: white;
  margin-bottom: 16px;
}
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .9rem; color: var(--muted); }
.site-footer {
  background: #0b1220;
  color: white;
  padding: 46px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
}
.site-footer a, .site-footer p { color: #cbd5e1; }
.site-footer h4 { margin: 0 0 12px; }
.footer-links { display: grid; gap: 8px; }
.page-hero { padding: 72px 0 46px; background: white; border-bottom: 1px solid var(--border); }
.content-page { background: white; }
.article { max-width: 850px; }
.article h2 { font-size: 2rem; margin-top: 36px; }
.article ul { padding-left: 22px; }

@media (max-width: 900px) {
  .nav {
    align-items: center;
    padding: 16px 0;
    position: relative;
    flex-wrap: wrap;
  }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    padding: 18px 0 8px;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.nav-open .nav-links { display: flex; }
  .lang-switcher {
    justify-content: center;
  }
  .nav-links .btn { width: 100%; }
  .hero-grid, .grid-3, .grid-2, .cta-band, .form-wrap, .footer-grid, .contact-grid, .field-row { grid-template-columns: 1fr; }
  .reference-logos img {
    max-width: 180px;
    height: 72px;
  }
  .cta-band .btn { justify-self: start; }
  section { padding: 56px 0; }
  .hero { padding: 64px 0; }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}


.align-center { align-items: center; }
.accompagnement { background: #f8fafc; }
.checklist-card { box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--muted); }
.check-list li:before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 900; }
.check-list.compact { margin-top: 18px; }
.highlight-card { background: linear-gradient(135deg, #ffffff, var(--primary-soft)); }
.big-result { font-size: 1.45rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 0; }
.calendly-container { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 760px; }
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.contact-card {
  display: grid;
  gap: 22px;
}
.contact-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-methods,
.contact-facts { display: grid; gap: 14px; }
.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-method strong,
.contact-facts strong {
  display: block;
  margin-bottom: 4px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
}
.contact-form-shell {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-form-shell form {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}
.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-status {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: rgba(13, 138, 100, .08);
  border-color: rgba(13, 138, 100, .18);
  color: #0d5c43;
}
.form-status.is-error {
  background: rgba(180, 35, 24, .08);
  border-color: rgba(180, 35, 24, .18);
  color: #7a271a;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.form-actions .form-note { margin: 0; }
.contact-alt {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.contact-alt-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.embed-note {
  margin-top: 14px;
  font-size: .92rem;
}
.legal-list { padding-left: 20px; }
.legal-list li {
  margin-bottom: 10px;
  color: var(--muted);
}
.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(460px, calc(100% - 24px));
  z-index: 30;
  background: rgba(11, 23, 38, .96);
  color: white;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(6, 17, 31, .28);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.cookie-banner .btn-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: white;
}
.cookie-link {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--secondary);
  color: white;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}


.blog-preview { background: #ffffff; }
.post-card { display: flex; flex-direction: column; min-height: 260px; }
.post-card .tag, .tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.text-link { color: var(--primary); font-weight: 800; margin-top: auto; }
.center-actions { display: flex; justify-content: center; margin-top: 30px; }
.article-cta {
  margin-top: 46px;
  padding: 34px;
  border-radius: var(--radius);
  background: #fcf3f1;
  border: 1px solid var(--border);
}
.article p { color: var(--muted); }
.article h1 { font-size: clamp(2.1rem, 4vw, 3.8rem); }
