/* =========================================================
   SIDRA DISTRIBUTION SERVICES — Style sheet
   ========================================================= */

:root {
  
 /* Accent principal (vert SDS) */
    --orange: #009A44;
    --orange-light: #1FAE5C;
    --orange-dark: #007A36;

    /* Vert */
    --green: #009A44;
    --green-light: #1FAE5C;

    /* Bleu institutionnel */
    --navy: #152E5C;
    --navy-light: #1F3E7A;

    /* Indigo */
    --indigo: #1800AC;
    --indigo-light: #6E5DE8;

    /* Accent secondaire */
    --amber: #1FAE5C;

    /* Gris */
    --grey: #A2A2A2;
    --steel: #C9C6DE;
    --steel-dark: #8B87A8;

    /* Arrière-plans */
    --paper: #FBF8F0;
    --paper-dark: #F1EBDD;

    /* Blanc */
    --white: #FFFFFF;

    /* Texte */
    --ink: #111827;
    --ink-soft: #4B5563;

    /* Menu / panneaux */
    --panel: #130F29;
    --panel-light: #1B163B;
    --navy-deep: #130F29;
    --navy-panel: #1B163B;
    --navy-line: rgba(190,182,224,.14);

    /* Bordures */
    --line: #D6D0BF;
    --line-soft: rgba(190,182,224,.14);
    --paper-dim: #F1EBDD;
    --steel-dim: #8B87A8;
    --ivory: #FFFFFF;
    --orange-bright: #1FAE5C;
    --indigo-bright: #6E5DE8;

  
  --font-display: "Space Grotesk", "Archivo Black", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --container: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-dark);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--orange);
  display: inline-block;
}

/* ---------- Skip link / a11y ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--orange);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Hazard strip (signature element) ---------- */
.hazard-strip {
  height: 8px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--amber),
    var(--amber) 18px,
    var(--navy-light) 18px,
    var(--navy-light) 36px
  );
}


/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img,
.footer-logo {
  width: min(370px, 58vw);
  max-width: 100%;
  height: auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--orange);
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--white);
}

.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}

nav.main-nav {
  display: flex;
  gap: 2px;
}

nav.main-nav a {
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #C9D1E3;
  border-bottom: 3px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

nav.main-nav a:hover { color: var(--white); }

nav.main-nav a[aria-current="page"] {
  color: var(--white);
  border-color: var(--orange);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid #2C4373;
  color: var(--white);
  padding: 8px 10px;
  font-size: 1rem;
  cursor: pointer;
}

.nav-toggle-icon {
  font-size: 1.15rem;
  line-height: 1;
}

@media (max-width: 820px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--navy-light);
    flex-direction: column;
    padding: 8px 0;
    border-top: 1px solid #2C4373;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 14px 28px; border-bottom: none; border-left: 3px solid transparent; }
  nav.main-nav a[aria-current="page"] { border-left-color: var(--orange); border-bottom: none; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }
  .header-inner { position: relative; padding: 12px 18px; }
  .brand img { width: min(240px, 58vw); }
}

@media (max-width: 480px) {
  .nav-toggle-text { display: none; }
  .brand img { width: min(210px, 62vw); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  transition: background .15s ease, transform .15s ease;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  clip-path: none;
}
.btn-ghost:hover { border-color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-light); }

.btn-whatsapp {
  background: #25D366;
  color: #073B1E;
}

.btn-whatsapp:hover {
  background: #1DB954;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 18px rgba(37, 211, 102, 0.12), 0 14px 30px rgba(17, 24, 39, 0.18);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.whatsapp-float:hover {
  background: #1DB954;
  transform: translateY(-2px);
  box-shadow: 0 0 0 20px rgba(37, 211, 102, 0.16), 0 18px 36px rgba(17, 24, 39, 0.22);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 560px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0.12), 0 12px 26px rgba(17, 24, 39, 0.18);
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 64px 0 36px;
  min-height: 500px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 520px;
  height: 480px;
  background: var(--orange);
  opacity: 0.12;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0% 100%);
}

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

.hero h1,
.hero .hero-title {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  color: var(--white);
  margin: 18px 0 22px;
}

.hero h1 em,
.hero .hero-title em {
  font-style: normal;
  color: var(--amber);
}

.hero p.lead {
  font-size: 1.08rem;
  color: #C9D1E3;
  max-width: 50ch;
  margin-bottom: 30px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.form-note {
  flex-basis: 100%;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.form-note.success {
  color: var(--green);
  font-weight: 700;
}

.form-note.error {
  color: var(--orange-dark);
  font-weight: 700;
}

.hero-panel {
  background: var(--navy-light);
  border: 1px solid #2C4373;
  padding: 30px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.hero-panel .stat-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #2C4373;
}
.hero-panel .stat-row:last-child { border-bottom: none; }

.hero-panel .stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber);
}
.hero-panel .stat-label {
  font-size: 0.78rem;
  color: #AEB8CE;
  max-width: 18ch;
  text-align: right;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
}


/* ---------- Hero-bg ---------- */

/* ---------- hero background images (per activity) ---------- */
.hero-bg{position:absolute; top:0; left:0; right:0; bottom:0; z-index:0;}
.hero-bg-layer{
  position:absolute; top:0; left:0; right:0; bottom:0;
  opacity:0;
  transition:opacity 1s ease;
}
.hero-bg-layer.active{opacity:1;}
.hero-bg-layer svg{
  position:absolute; top:0; left:0; right:0; bottom:0;
  width:100%; height:100%;
  display:block;
}
.hero-bg-layer img{
  position:absolute; top:0; left:0; right:0; bottom:0;
  width:100%; height:100%;
  max-width:none;
  object-fit:cover;
  object-position:center center;
  display:block;
}
.hero-bg-overlay{
  position:absolute; top:0; left:0; right:0; bottom:0; z-index:1;
  background:
    linear-gradient(100deg, var(--navy-deep) 0%, var(--navy-deep) 26%, rgba(19,15,41,0.82) 42%, rgba(19,15,41,0.5) 60%, rgba(19,15,41,0.22) 100%),
    linear-gradient(to top, var(--navy-deep) 0%, transparent 22%);
  pointer-events:none;
}
.hero-inner{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:40px;
  max-width:1320px; margin:0 auto; padding:0 28px;
  align-items:start;
}

/* ---------- hero slider ---------- */
.hero-slider{position:relative;}
.hero-slide{
  display:none;
  animation:slide-in .55s ease both;
}
.hero-slide.active{display:block;}
@keyframes slide-in{
  from{opacity:0; transform:translateY(14px);}
  to{opacity:1; transform:translateY(0);}
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--slide-accent, var(--indigo-bright)); font-size:0.72rem; font-weight:600;
  letter-spacing:0.18em; text-transform:uppercase;
  margin-bottom:26px;
  transition:color .3s;
}
.eyebrow::before{content:""; width:22px; height:1px; background:var(--slide-accent, var(--indigo-bright));}
.hero h1,
.hero .hero-title{
  color:var(--ivory);
  font-size:clamp(2.4rem, 4.6vw, 4.1rem);
  line-height:1.06;
  font-weight:700;
  letter-spacing:-0.01em;
  max-width:13ch;
  min-height:calc(4.1rem * 1.06 * 2);
}
.hero h1 em,
.hero .hero-title em{
  font-style:normal;
  background:linear-gradient(90deg, var(--orange-bright), var(--indigo-bright));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero p.lead{
  color:var(--steel);
  font-size:1.08rem; line-height:1.65;
  max-width:46ch;
  margin:26px 0 36px;
  min-height:3.4em;
}
.hero-ctas{display:flex; gap:16px; flex-wrap:wrap;}

/* slide controls */
.slide-controls{
  display:flex; align-items:center; gap:22px;
  margin-top:52px;
  padding-top:28px;
  border-top:1px solid var(--navy-line);
}
.slide-dots{display:flex; gap:10px;}
.slide-dot{
  width:34px; height:22px;
  background:var(--navy-line);
  border:none; cursor:pointer;
  position:relative; padding:0;
  transition:background .25s;
}
.slide-dot::after{
  content:""; position:absolute; left:0; top:9px; height:3px; width:0%;
  background:var(--slide-accent, var(--indigo-bright));
  transition:width linear;
}
.slide-dot.active{background:var(--navy-line);}
.slide-dot.active::after{width:100%;}
.slide-arrows{display:flex; gap:8px; margin-left:auto;}
.slide-arrow{
  width:36px; height:36px;
  border:1px solid var(--navy-line);
  background:transparent; color:var(--steel);
  cursor:pointer; font-size:0.9rem;
  display:flex; align-items:center; justify-content:center;
  transition:border-color .2s, color .2s;
  clip-path:polygon(6px 0,100% 0,100% calc(100% - 6px),calc(100% - 6px) 100%,0 100%,0 6px);
}
.slide-arrow:hover{border-color:var(--indigo-bright); color:var(--indigo-bright);}
.slide-arrow:focus-visible,
.slide-dot:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
.slide-label{
  font-family:'IBM Plex Mono',monospace; font-size:0.72rem; color:var(--steel-dim);
  letter-spacing:0.05em;
}
.slide-label b{color:var(--ivory); font-weight:500;}
.btn-primary{
  background:var(--orange); color:#fff; font-weight:600; font-size:0.95rem;
  padding:15px 28px;
  clip-path:polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
  display:inline-flex; align-items:center; gap:10px;
  transition:background .2s, transform .15s;
}
.btn-primary:hover{background:var(--orange-bright); transform:translateY(-2px);}
.btn-ghost{
  border:1px solid var(--navy-line); color:var(--ivory); font-weight:500; font-size:0.95rem;
  padding:15px 26px;
  clip-path:polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
  transition:border-color .2s, background .2s;
}
.btn-ghost:hover{border-color:var(--indigo-bright); background:rgba(110,93,232,0.06);}

/* hero side panel: live manifest card */
.manifest-card{
  background:var(--navy-panel);
  border:1px solid var(--navy-line);
  padding:22px;
  margin-top:6px;
}
.manifest-head{
  display:flex; justify-content:space-between; align-items:center;
  padding-bottom:14px; margin-bottom:14px;
  border-bottom:1px dashed var(--navy-line);
}
.manifest-head .mono{color:var(--indigo-bright); font-size:0.7rem; letter-spacing:0.08em;}
.dot-live{width:7px;height:7px;border-radius:50%;background:var(--green); display:inline-block; margin-right:6px; box-shadow:0 0 0 3px rgba(0,154,68,0.25); animation:pulse 2s infinite;}
@keyframes pulse{0%,100%{opacity:1;}50%{opacity:0.4;}}
.manifest-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:11px 0; font-size:0.84rem; color:var(--steel);
  border-bottom:1px solid var(--navy-line);
}
.manifest-row:last-child{border-bottom:none;}
.manifest-row .tag{
  font-family:'IBM Plex Mono',monospace; font-size:0.68rem;
  color:var(--indigo-bright); background:rgba(110,93,232,0.09);
  padding:3px 8px;
}
.manifest-row .qty{color:var(--ivory); font-weight:600;}
.manifest-row{
  transition:background .3s, border-color .3s;
  border-left:2px solid transparent;
  padding-left:10px; margin-left:-10px;
}
.manifest-row.active{
  background:rgba(110,93,232,0.07);
  border-left:2px solid var(--slide-accent, var(--indigo-bright));
}
.manifest-row.active .tag{color:var(--ivory); background:var(--slide-accent, var(--indigo-bright));}
.manifest-row.active .qty{color:var(--slide-accent, var(--indigo-bright));}

/* ticker strip */
.ticker-wrap{
  position:relative; z-index:2;
  margin-top:30px;
  background:#091728;
  border-top:1px solid var(--navy-line);
  border-bottom:1px solid var(--navy-line);
  overflow:hidden;
  height:48px;
  padding:0;
  display:flex;
  align-items:center;
}
.ticker{
  display:flex; gap:0; width:max-content;
  animation:scroll-left 32s linear infinite;
}
@keyframes scroll-left{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.ticker-item{
  display:flex; align-items:center; gap:12px;
  padding:0 34px;
  height:48px;
  flex:0 0 auto;
  color:var(--steel-dim);
  font-family:'IBM Plex Mono',monospace;
  font-size:0.78rem;
  line-height:1;
  letter-spacing:0.05em;
  white-space:nowrap;
  border-right:1px solid var(--navy-line);
}
.ticker-item span,
.ticker-item b{white-space:nowrap;}
.ticker-item b{color:var(--ivory); font-weight:600; font-family:'Space Grotesk',sans-serif; letter-spacing:0;}
.ticker-item .dot{color:var(--orange);}

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .manifest-card { max-width: 680px; }
}

@media (max-width: 560px) {
  .hero { min-height: 520px; padding: 42px 0 30px; }
  .hero h1,
  .hero .hero-title { min-height: auto; }
  .hero p.lead { min-height: auto; }
  .slide-controls { gap: 12px; flex-wrap: wrap; margin-top: 34px; }
  .slide-dots { order: 3; width: 100%; }
  .slide-dot { flex: 1; }
  .ticker-wrap { height:44px; margin-top:26px; }
  .ticker-item { height:44px; padding:0 22px; font-size:0.7rem; }
}


/* ---------- Sections ---------- */
section { padding: 76px 0; }
section.tight { padding: 56px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-top: 14px; }
.section-alt { background: var(--paper-dim); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy p { color: #C9D1E3; }

/* ---------- Activity / service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.activity-grid {
  grid-template-columns: repeat(4, 1fr);
}

.activity-grid .card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 26px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(18,34,68,0.1); }

.card .num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--orange-dark);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 14px;
}

.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.95rem; }

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: var(--paper-dim);
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ---------- Two col layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

.placeholder-media {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid #2C4373;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  color: #6F81A8;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

/* Photo placeholder used until real site photos are dropped in assets/images/ */
.photo-frame {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid #2C4373;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame .photo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #6F81A8;
  text-align: center;
  padding: 24px;
}
.photo-frame .photo-fallback svg { width: 38px; height: 38px; opacity: 0.7; }
.photo-frame .photo-fallback span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.photo-frame .photo-fallback small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #506190;
  letter-spacing: 0.02em;
  text-transform: none;
}
.photo-frame.tall { min-height: 360px; }
.photo-frame.short { min-height: 200px; }

/* ---------- Logo placeholder (header brand-mark variant) ---------- */
.logo-placeholder {
  width: 120px;
  height: 120px;
  background: var(--paper-dim);
  border: 2px dashed var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

/* ---------- Stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #2C4373;
  border: 1px solid #2C4373;
}
.stats-band .stat {
  background: var(--navy);
  padding: 30px 22px;
  text-align: center;
}
.stats-band .stat .n {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--amber);
}
.stats-band .stat .l {
  font-size: 0.78rem;
  color: #AEB8CE;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 760px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Partners ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.partner-head {
  max-width: none;
}

.partner-head h2,
.partner-head p {
  white-space: nowrap;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.partner-media {
  aspect-ratio: 16 / 10;
  background: var(--navy);
  overflow: hidden;
}

.partner-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.partner-content {
  padding: 22px 22px 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.partner-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.partner-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.partner-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
  margin-top: auto;
}

.partner-logo-carousel {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.partner-logo-carousel::before,
.partner-logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 90px;
  height: 100%;
  pointer-events: none;
}

.partner-logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.partner-logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.partner-logo-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 16px;
  animation: partnerLogoSlide 34s linear infinite;
}

.partner-logo-carousel:hover .partner-logo-track {
  animation-play-state: paused;
}

.partner-logo-card {
  flex: 0 0 152px;
  min-height: 92px;
  border: 1px solid var(--line);
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 12px;
  text-align: center;
}

.partner-logo-emblem {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.partner-logo-card span:last-child {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

@keyframes partnerLogoSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

.partner-note {
  margin: 22px 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { min-height: auto; }
  .partner-head h2,
  .partner-head p { white-space: normal; }
  .partner-logo-card { flex-basis: 138px; }
  .partner-logo-carousel::before,
  .partner-logo-carousel::after { width: 42px; }
}

/* ---------- Timeline (values / process) ---------- */
.value-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.value-item { display: flex; gap: 16px; }
.value-item .mark {
  width: 6px;
  background: var(--orange);
  flex-shrink: 0;
}
.value-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.value-item p { margin-bottom: 0; font-size: 0.94rem; }
@media (max-width: 700px) { .value-list { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--orange);
  color: var(--white);
  padding: 56px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: 1.6rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:first-child { padding-top: 0; }
.contact-item .ic {
  width: 38px;
  height: 38px;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}
.contact-item .ic svg { width: 18px; height: 18px; stroke: var(--amber); }
.contact-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-item p { margin-bottom: 0; font-size: 0.92rem; }

.map-placeholder {
  margin-top: 26px;
  width: 100%;
  min-height: 180px;
  background: var(--paper-dim);
  border: 1px dashed var(--line);
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-align: center;
  padding: 16px;
}

/* Wrapper "carte" responsive (Google Maps / iframe) */
.map-embed {
  margin: 12px auto 0;
  width: 80%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(18,34,68,0.18);
  background: #fff;
}
.map-embed::before {
  content: "";
  display: block;
  padding-top: 65%; /* ratio hauteur/largeur */
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 880px) {
  .map-embed { width: 100%; }
}



/* ---------- Footer ---------- */
footer.site-footer {
  background: #152E5C;
  color: #E5E7EB;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #1E2C4D;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 0.9rem; color: #A9B3CC; transition: color .15s ease; }
.footer-grid a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.8rem;
}

/* ---------- Page intro (sub-pages) ---------- */
.page-intro {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-intro::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  background: var(--orange);
  opacity: 0.10;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0% 100%);
}
.page-intro h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.7rem); margin-top: 16px; }
.page-intro p { color: #C9D1E3; max-width: 56ch; margin-top: 14px; margin-bottom: 0; }
.breadcrumb { font-size: 0.8rem; color: #8C9AC0; }
.breadcrumb a:hover { color: var(--white); }

.page-intro-light {
  background: var(--white);
  color: var(--navy);
  padding: 42px 0 48px;
}

.page-intro-light::after {
  display: none;
}

.page-intro-light .breadcrumb {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 14px;
}

.page-intro-light .breadcrumb a:hover {
  color: var(--green);
}

.page-intro-light h1 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 780px;
  margin-top: 0;
}

.page-intro-light p:not(.breadcrumb) {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 62ch;
  margin-top: 16px;
}

.contact-item a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.content-panel {
  max-width: 860px;
}

.content-panel h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  margin: 34px 0 14px;
}

.content-panel h2:first-child {
  margin-top: 0;
}

.content-panel ul {
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--ink-soft);
}

.content-panel li {
  margin-bottom: 8px;
}

.content-panel a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }

/* ---------- Process ---------- */
.process {
  background: var(--navy);
  color: var(--white);
}

.process .section-head h2 {
  color: var(--white);
}

.process .section-head p {
  color: #C9D1E3;
}

.proc-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.proc-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 220px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.proc-step .step-no {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.proc-step h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.proc-step p {
  color: #C9D1E3;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .proc-track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .proc-track { grid-template-columns: 1fr; }
  .proc-step { min-height: auto; }
}
