/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #003145;
  --navy-light: #0d4d68;
  --navy-soft: #0a4258;
  --orange: #F69240;
  --orange-dark: #e87f26;
  --bg: #ffffff;
  --bg-soft: #F5F8FA;
  --bg-navy-soft: #eef3f5;
  --text: #14262E;
  --text-soft: #4B6270;
  --border: #E3EAEE;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 45px -20px rgba(0, 49, 69, 0.25);
  --shadow-sm: 0 8px 20px -10px rgba(0, 49, 69, 0.18);
  --container: 1160px;
  --ease: cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  display: inline-block;
}

.section {
  padding: 110px 0;
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--text-soft); font-size: 1.08rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 14px 30px -12px rgba(246, 146, 64, 0.55);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(246, 146, 64, 0.65); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { background: var(--orange); color: var(--navy); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px -14px rgba(0,49,69,0.25);
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 62px; width: auto; transition: height .3s var(--ease); }
.site-header.is-scrolled .brand-logo { height: 52px; }
@media (max-width: 480px) {
  .brand-logo { height: 46px; }
  .site-header.is-scrolled .brand-logo { height: 40px; }
}

.brand-logo--color { display: none; }
.site-header.is-scrolled .brand-logo--white { display: none; }
.site-header.is-scrolled .brand-logo--color { display: block; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-desktop a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s var(--ease);
}
.nav-desktop a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled .nav-toggle span { background: var(--navy); }
.site-header .nav-toggle.active span { background: #fff; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .45s var(--ease), opacity .35s var(--ease), visibility 0s linear .45s;
}
.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .45s var(--ease), opacity .35s var(--ease);
}
.mobile-nav a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.mobile-nav .btn-primary { margin-top: 10px; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 190px 0 140px;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  z-index: 0;
}
.hero-blob.b1 {
  width: 520px; height: 520px;
  background: var(--orange);
  opacity: 0.16;
  top: -180px; right: -140px;
}
.hero-blob.b2 {
  width: 320px; height: 320px;
  background: #ffffff;
  opacity: 0.05;
  bottom: -160px; left: -100px;
}
.hero-icon-deco {
  position: absolute;
  right: 5%;
  top: 14%;
  width: 190px;
  opacity: 1;
  z-index: 3;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 26px;
}
.hero-eyebrow span.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}
.hero-stats div span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 34px;
  backdrop-filter: blur(6px);
}
.hero-card ul { display: flex; flex-direction: column; gap: 18px; }
.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.98rem;
}
.hero-card .ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-icon-deco { display: none; }
  .hero { padding: 150px 0 90px; }
}

/* ===== Marquee / trust strip ===== */
.trust-strip {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--text-soft);
}
.trust-strip p {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
.trust-tags { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.trust-tags span {
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--bg-soft);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: #fff;
}
.service-card .num {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--border);
}
.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  transition: background .3s var(--ease);
}
.service-card:hover .service-icon { background: var(--orange); color: var(--navy); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { color: var(--text-soft); margin-bottom: 22px; }
.service-card .tags { display: flex; flex-direction: column; gap: 10px; }
.service-card .tags li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 600; color: var(--navy);
}
.service-card .tags li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange-dark);
}
.service-link svg { transition: transform .25s var(--ease); }
.service-link:hover svg { transform: translateX(4px); }

/* ===== Approche / Why ===== */
.approach {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.approach .hero-blob.b1 { top: -220px; left: -160px; right: auto; }
.approach .section-head h2, .approach .section-head p { color: #fff; }
.approach .section-head p { color: rgba(255,255,255,0.7); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .approach-grid { grid-template-columns: 1fr; }
}
.approach-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.approach-card .n {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.approach-card h4 { color: #fff; font-size: 1.08rem; margin-bottom: 10px; }
.approach-card p { color: rgba(255,255,255,0.68); font-size: 0.95rem; }

/* ===== Certifications ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
@media (max-width: 760px) {
  .cert-grid { grid-template-columns: 1fr; }
}
.cert-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: #fff;
}
.cert-card img {
  width: 128px;
  height: 128px;
  flex-shrink: 0;
  border-radius: 50%;
}
.cert-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.cert-card p { color: var(--text-soft); font-size: 0.95rem; }
@media (max-width: 520px) {
  .cert-card { flex-direction: column; text-align: center; }
}

.cert-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cert-partners > span {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
.cert-partners-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.cert-partners-logos img {
  height: 34px;
  width: auto;
  opacity: 0.85;
}

.emcc-head {
  text-align: center;
  max-width: 560px;
  margin: 64px auto 36px;
}
.emcc-head h3 { font-size: 1.4rem; margin-bottom: 10px; }
.emcc-head p { color: var(--text-soft); }

.emcc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 760px) {
  .emcc-grid { grid-template-columns: 1fr; }
}

.emcc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.emcc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: #fff;
}
.emcc-thumb {
  display: block;
  width: 100%;
  max-width: 190px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 14px 30px -16px rgba(0,49,69,0.35);
  border: 1px solid var(--border);
}
.emcc-thumb img { width: 100%; display: block; }
.emcc-card-text h4 { font-size: 1.05rem; margin-bottom: 6px; }
.emcc-card-text p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 8px; }
.emcc-meta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-dark);
  letter-spacing: 0.01em;
}

.btn-sm { padding: 11px 22px; font-size: 0.88rem; }

.cv-banner {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 50px;
  padding: 34px 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}
.cv-banner-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.cv-banner-text { flex: 1; }
.cv-banner-text h3 { font-size: 1.15rem; margin-bottom: 6px; }
.cv-banner-text p { color: var(--text-soft); font-size: 0.95rem; }
.cv-banner .btn { flex-shrink: 0; }
@media (max-width: 760px) {
  .cv-banner { flex-direction: column; text-align: center; padding: 32px 26px; }
}

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 24px;
  max-width: calc(var(--container) - 48px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--navy); font-size: clamp(1.6rem, 2.8vw, 2.2rem); max-width: 520px; }
.cta-banner p { color: rgba(0,49,69,0.75); margin-top: 10px; font-weight: 600; }
.cta-banner .btn-primary { background: var(--navy); color: #fff; box-shadow: 0 14px 30px -12px rgba(0,49,69,0.45); }
.cta-banner .btn-primary:hover { background: #012638; }

/* ===== Contact ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-info {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.contact-info h3 { color: #fff; font-size: 1.5rem; margin-bottom: 14px; }
.contact-info > p { color: rgba(255,255,255,0.7); margin-bottom: 34px; }
.contact-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-list .ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255,255,255,0.1);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list a, .contact-list span.txt { font-weight: 700; }
.contact-list small { display: block; color: rgba(255,255,255,0.55); font-weight: 500; font-size: 0.82rem; margin-bottom: 2px; }

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.social-row a:hover { background: var(--orange); color: var(--navy); transform: translateY(-3px); }

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.field input, .field textarea, .field select {
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(246,146,64,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--text-soft); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #EAF7EF;
  color: #1E7A44;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 16px;
}
.form-success.show { display: flex; }

/* ===== Footer ===== */
.site-footer {
  background: #012332;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 26px;
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { max-width: 320px; font-size: 0.95rem; line-height: 1.7; }
.footer-col h5 {
  color: #fff; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
}
.footer-bottom .social-row a { width: 36px; height: 36px; }

/* ===== Reveal animation ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===== Sub-page hero (compact) ===== */
.hero-sub {
  padding: 170px 0 90px;
}
.hero-sub .container { display: block; max-width: 760px; }
.hero-sub h1 { max-width: 680px; }
.hero-sub p.lead { max-width: 620px; }
.breadcrumb-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  transition: color .2s;
}
.breadcrumb-back:hover { color: #fff; }

/* ===== Stat cards ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
@media (max-width: 860px) {
  .stat-grid { grid-template-columns: 1fr; }
}
.stat-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.stat-card strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange-dark);
  line-height: 1;
  margin-bottom: 14px;
}
.stat-card p { color: var(--text); font-size: 0.96rem; }
.stat-source {
  font-size: 0.76rem;
  color: var(--text-soft);
  margin-top: 28px;
  line-height: 1.6;
}
.stat-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 22px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 30px;
}
.stat-callout svg { color: var(--orange); flex-shrink: 0; }

/* ===== Explainer (DISC / Forces Motrices) ===== */
.explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 860px) {
  .explainer-grid { grid-template-columns: 1fr; }
}
.explainer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.explainer-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.explainer-card > p { color: var(--text-soft); margin-bottom: 20px; }
.explainer-card ul { display: flex; flex-direction: column; gap: 10px; }
.explainer-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--text);
}
.explainer-card li::before {
  content: '';
  width: 6px; height: 6px; margin-top: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ===== Offers grid (Nos offres) ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .offer-grid { grid-template-columns: 1fr; }
}
.offer-card {
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; }
.offer-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.offer-card .offer-meta { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 18px; }
.offer-public {
  display: inline-block;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 100px;
}
.offer-note {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.88rem;
  margin-top: 30px;
}
.offer-note strong { color: var(--navy); }

/* ===== Offer detail cards ===== */
.offer-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.offer-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 860px) {
  .offer-detail-card { grid-template-columns: 1fr; }
}
.offer-detail-side {
  background: var(--navy);
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer-detail-side .offer-public {
  align-self: flex-start;
  margin-bottom: 18px;
}
.offer-detail-side h3 { color: #fff; font-size: 1.4rem; margin-bottom: 14px; }
.offer-detail-side p { color: rgba(255,255,255,0.7); font-style: italic; font-size: 0.94rem; line-height: 1.7; }
.offer-detail-main { padding: 40px; }
.offer-detail-block { margin-bottom: 22px; }
.offer-detail-block:last-child { margin-bottom: 0; }
.offer-detail-block h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-dark);
  margin-bottom: 12px;
}
.offer-detail-block ul { display: flex; flex-direction: column; gap: 10px; }
.offer-detail-block li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.93rem; color: var(--text);
}
.offer-detail-block li::before {
  content: '';
  width: 6px; height: 6px; margin-top: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
