/* ==========================================================================
   DEVFI Performances — Design System
   Palette dérivée du logo : bleu profond / teal / bleu ciel + accent or
   ========================================================================== */

:root {
  --navy-900: #082a3f;
  --navy-800: #0e3a54;
  --navy-700: #155070;
  --teal-600: #2f7c90;
  --teal-500: #3e8ba0;
  --teal-400: #5aa3b6;
  --sky-300: #8fc9dc;
  --sky-100: #dceef5;
  --ice: #f2f8fb;
  --sand: #f9f6f0;
  --gold-500: #d9a036;
  --gold-400: #e5b45c;
  --ink: #0f2837;
  --gray-700: #3d5563;
  --gray-500: #64798a;
  --gray-300: #a8b8c2;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Pacifico", cursive;

  --shadow-soft: 0 18px 50px -18px rgba(8, 42, 63, 0.22);
  --shadow-card: 0 10px 34px -12px rgba(8, 42, 63, 0.18);
  --shadow-lift: 0 30px 70px -22px rgba(8, 42, 63, 0.35);

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1180px;
}

/* ---------- Reset ---------- */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  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; }

::selection { background: var(--sky-300); color: var(--navy-900); }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ice); }
::-webkit-scrollbar-thumb { background: var(--teal-500); border-radius: 8px; border: 2px solid var(--ice); }

/* ---------- Utilitaires ---------- */

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

.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }

.bg-ice { background: var(--ice); }
.bg-sand { background: var(--sand); }
.bg-navy { background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-800) 55%, #114a68 100%); color: var(--white); }

.center { text-align: center; }

/* ---------- Typographie ---------- */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.center .kicker::after {
  content: "";
  width: 34px; height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.bg-navy .kicker { color: var(--sky-300); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 560; line-height: 1.16; letter-spacing: -0.01em; }

.title-xl { font-size: clamp(38px, 5.6vw, 66px); }
.title-lg { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 22px; }
.title-md { font-size: clamp(22px, 2.4vw, 29px); margin-bottom: 12px; }

.lead {
  font-size: clamp(17px, 1.6vw, 19.5px);
  color: var(--gray-700);
  max-width: 780px;
}
.center .lead { margin-left: auto; margin-right: auto; text-align: center; }
.bg-navy .lead { color: rgba(255, 255, 255, 0.82); }

/* Paragraphes de contenu : justifiés pour une lecture plus soignée
   (les blocs intentionnellement centrés restent centrés ; sur mobile
   étroit on repasse à gauche pour éviter les grands blancs entre mots). */
.lead,
.body-text,
.pillar p,
.photo-card p,
.value-card p,
.audience-card p,
.project-card p,
.pub-body p,
.testimonial p,
.expertise-body > p,
.step3 p,
.big-banner p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.center .body-text { text-align: center; }
@media (max-width: 560px) {
  .lead,
  .body-text,
  .pillar p,
  .photo-card p,
  .value-card p,
  .audience-card p,
  .project-card p,
  .pub-body p,
  .testimonial p,
  .expertise-body > p,
  .step3 p,
  .big-banner p {
    text-align: left;
  }
}

.script-accent {
  font-family: var(--font-script);
  color: var(--gold-500);
  font-size: 0.55em;
  display: block;
  margin-top: 14px;
  letter-spacing: 0.02em;
  transform: rotate(-1.5deg);
}

.section-head { margin-bottom: 56px; }

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.3s;
  will-change: transform;
}
.btn svg { transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(5px); }

.btn-gold {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 12px 30px -10px rgba(217, 160, 54, 0.55);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(217, 160, 54, 0.7); }

.btn-navy {
  background: linear-gradient(120deg, var(--navy-800), var(--teal-600));
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-navy:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-3px); }

.btn-outline {
  border: 1.5px solid var(--teal-500);
  color: var(--teal-600);
}
.btn-outline:hover { background: var(--sky-100); transform: translateY(-3px); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px -12px rgba(8, 42, 63, 0.25);
  padding: 10px 0;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img { height: 46px; width: auto; transition: height 0.4s; }
.site-header.scrolled .brand img { height: 38px; }

/* Sur hero sombre : logo dans une pastille blanche douce */
.brand {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  padding: 6px 14px;
  box-shadow: 0 6px 22px -8px rgba(8, 42, 63, 0.35);
  display: inline-flex;
  align-items: center;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 550;
  color: var(--white);
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.site-header.scrolled .main-nav a { color: var(--navy-800); }
.main-nav a:hover { background: rgba(143, 201, 220, 0.22); }
.main-nav a.active { color: var(--gold-400); }
.site-header.scrolled .main-nav a.active { color: var(--teal-600); background: var(--sky-100); }

.nav-cta {
  margin-left: 10px;
  padding: 11px 22px !important;
  border-radius: 40px;
  background: linear-gradient(120deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900) !important;
  font-weight: 650 !important;
  box-shadow: 0 8px 22px -8px rgba(217, 160, 54, 0.6);
}
.nav-cta:hover { background: linear-gradient(120deg, var(--gold-500), var(--gold-400)) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5.5px;
  padding: 10px;
  z-index: 120;
}
.burger span {
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s, background 0.3s;
}
.site-header.scrolled .burger span { background: var(--navy-800); }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--navy-800); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--navy-800); }

@media (max-width: 1140px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s var(--ease-out), opacity 0.4s;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { color: var(--navy-800) !important; font-size: 19px; padding: 12px 26px; }
  .nav-cta { margin: 14px 0 0; }
  .burger { display: flex; }
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero.hero-short { min-height: 72vh; padding-top: 90px; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  animation: kenburns 22s var(--ease-out) forwards;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(8, 42, 63, 0.92) 8%, rgba(8, 42, 63, 0.62) 45%, rgba(14, 58, 84, 0.28) 100%),
    linear-gradient(to top, rgba(8, 42, 63, 0.85) 0%, transparent 40%);
}

.hero-inner { max-width: var(--wrap); margin: 0 auto; padding: 150px 28px 110px; width: 100%; }

.hero-script {
  font-family: var(--font-script);
  color: var(--sky-300);
  font-size: clamp(20px, 2.4vw, 27px);
  margin-bottom: 20px;
  transform: rotate(-1.5deg);
  display: inline-block;
}

.hero h1 { max-width: 900px; margin-bottom: 26px; }

.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(2) span { animation-delay: 0.15s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.3s; }
@keyframes rise { to { transform: translateY(0); } }

.hero h1 em {
  font-style: normal;
  color: var(--gold-400);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin-bottom: 40px;
  animation: fadeup 1s 0.5s var(--ease-out) both;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeup 1s 0.7s var(--ease-out) both; }

@keyframes fadeup {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeup 1s 1.2s both;
}
.hero-scroll::after {
  content: "";
  width: 1.5px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  animation: scrollpulse 2s infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.55); opacity: 0.5; }
}

/* Bandeau de stats flottant sous le hero */
.hero-stats {
  position: relative;
  z-index: 5;
  margin-top: -74px;
}
.hero-stats-grid {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.hero-stat {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid var(--sky-100);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1;
}
.hero-stat .num small { font-size: 0.55em; color: var(--gold-500); font-weight: 700; }
.hero-stat .label { font-size: 13.5px; color: var(--gray-500); margin-top: 8px; letter-spacing: 0.04em; }

@media (max-width: 860px) {
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--sky-100); }
}

/* ---------- Révélation au scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }
.reveal[data-delay="5"] { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Grilles & cartes ---------- */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

@media (max-width: 1020px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Carte pilier (4 domaines d'excellence) */
.pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(143, 201, 220, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-300), var(--teal-500), var(--navy-800));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.pillar:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.pillar:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sky-100), rgba(143, 201, 220, 0.4));
  color: var(--teal-600);
  margin-bottom: 22px;
  transition: transform 0.45s var(--ease-out), background 0.4s;
}
.pillar:hover .pillar-icon {
  background: linear-gradient(135deg, var(--teal-500), var(--navy-800));
  color: var(--white);
  transform: rotate(-6deg) scale(1.06);
}
.pillar h3 { font-size: 21px; margin-bottom: 10px; }
.pillar p { font-size: 15px; color: var(--gray-700); }
.pillar .pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 650;
  color: var(--teal-600);
}
.pillar .pillar-link svg { transition: transform 0.3s var(--ease-out); }
.pillar:hover .pillar-link svg { transform: translateX(5px); }

/* Carte photo */
.photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.photo-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.photo-card .pc-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease-out);
}
.photo-card:hover .pc-bg { transform: scale(1.07); }
.photo-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(8, 42, 63, 0.88) 8%, rgba(8, 42, 63, 0.25) 55%, rgba(8, 42, 63, 0.05));
}
.photo-card .pc-body { padding: 26px; }
.photo-card .pc-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-400);
  border-radius: 30px;
  padding: 4px 13px;
  margin-bottom: 12px;
}
.photo-card h3 { font-size: 21px; margin-bottom: 6px; }
.photo-card p { font-size: 14px; color: rgba(255, 255, 255, 0.85); }

/* ---------- Parcours / approche (6 étapes) ---------- */

.journey {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  position: relative;
  counter-reset: step;
}
.journey::before {
  content: "";
  position: absolute;
  top: 30px; left: 4%; right: 4%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--sky-300) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.journey-step { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.journey-step .dot {
  counter-increment: step;
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sky-300);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--teal-600);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), background 0.4s, color 0.4s, border-color 0.4s;
}
.journey-step .dot::before { content: counter(step, decimal-leading-zero); }
.journey-step:hover .dot {
  background: linear-gradient(135deg, var(--teal-500), var(--navy-800));
  color: var(--white);
  border-color: transparent;
  transform: scale(1.12);
}
.journey-step h4 { font-family: var(--font-body); font-size: 15.5px; font-weight: 700; color: var(--navy-800); margin-bottom: 5px; }
.journey-step p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

.bg-navy .journey-step .dot { background: rgba(255, 255, 255, 0.06); border-color: rgba(143, 201, 220, 0.4); color: var(--sky-300); }
.bg-navy .journey-step:hover .dot { background: var(--gold-500); color: var(--navy-900); }
.bg-navy .journey-step h4 { color: var(--white); }
.bg-navy .journey-step p { color: rgba(255, 255, 255, 0.65); }
.bg-navy .journey::before { background: repeating-linear-gradient(90deg, rgba(143, 201, 220, 0.4) 0 10px, transparent 10px 18px); }

@media (max-width: 1020px) {
  .journey { grid-template-columns: repeat(3, 1fr); gap: 30px 14px; }
  .journey::before { display: none; }
}
@media (max-width: 560px) { .journey { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Domaines (chips avec photo au survol) ---------- */

.domain-list { display: flex; flex-wrap: wrap; gap: 13px; }
.domain-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(143, 201, 220, 0.5);
  border-radius: 60px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 550;
  color: var(--navy-800);
  box-shadow: 0 4px 14px -6px rgba(8, 42, 63, 0.12);
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
}
.domain-chip svg { color: var(--teal-500); transition: color 0.3s; }
.domain-chip:hover {
  background: linear-gradient(120deg, var(--navy-800), var(--teal-600));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-4px);
}
.domain-chip:hover svg { color: var(--gold-400); }

/* ---------- Bande statistiques sombre ---------- */

.stats-band { position: relative; overflow: hidden; }
.stats-band .deco-squares {
  position: absolute;
  right: -60px; top: -60px;
  opacity: 0.14;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  text-align: center;
}
.stat .icon { margin: 0 auto 14px; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: rgba(143, 201, 220, 0.14); color: var(--sky-300); }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat .num small { font-size: 0.5em; color: var(--gold-400); font-weight: 700; }
.stat .label { margin-top: 10px; font-size: 14px; color: rgba(255, 255, 255, 0.72); }

@media (max-width: 1020px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Bande partenaires ---------- */

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.partner-pill {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid rgba(143, 201, 220, 0.4);
  border-radius: 14px;
  padding: 18px 34px;
  box-shadow: 0 6px 18px -8px rgba(8, 42, 63, 0.12);
  filter: grayscale(1);
  opacity: 0.75;
  transition: all 0.4s var(--ease-out);
}
.partner-pill:hover { filter: grayscale(0); opacity: 1; transform: translateY(-5px); color: var(--navy-800); box-shadow: var(--shadow-card); }
.partner-pill small { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--gray-500); margin-top: 2px; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: 110px 0;
}
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.cta-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(8, 42, 63, 0.94) 20%, rgba(21, 80, 112, 0.75) 70%, rgba(47, 124, 144, 0.55));
}
.cta-band h2 { max-width: 760px; }
.cta-band .lead { color: rgba(255, 255, 255, 0.85); margin: 20px 0 36px; }

/* ---------- Split (texte + image) ---------- */

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.split.flip { grid-template-columns: 0.95fr 1.05fr; }
.split-media { position: relative; }
.split-media .main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.split-media .floating-note {
  position: absolute;
  left: -34px; bottom: 34px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 20px 24px;
  max-width: 260px;
  border-left: 4px solid var(--gold-500);
}
.split-media .floating-note .fn-num { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--navy-800); line-height: 1.1; }
.split-media .floating-note p { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.split-media .deco-squares-sm {
  position: absolute;
  right: -26px; top: -26px;
  z-index: -1;
}
.split-body .lead { margin-bottom: 18px; }
.split-body p + p { margin-top: 14px; }
.split-body .body-text { color: var(--gray-700); }

.checklist { margin-top: 22px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--gray-700); font-size: 15.5px; }
.checklist li::before {
  content: "";
  flex: 0 0 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--sky-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232f7c90' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.bg-navy .checklist li { color: rgba(255, 255, 255, 0.85); }

@media (max-width: 940px) {
  .split, .split.flip { grid-template-columns: 1fr; gap: 40px; }
  .split-media .floating-note { left: 14px; }
  .split-media .main-img { height: 380px; }
}

/* ---------- Valeurs ---------- */

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid transparent;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.value-card:hover { transform: translateY(-8px); border-top-color: var(--gold-500); box-shadow: var(--shadow-lift); }
.value-card .vc-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  display: block;
}
.value-card h3 { font-size: 20px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: var(--gray-700); }

/* ---------- Fondateur ---------- */

.founder {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.founder-visual { position: sticky; top: 120px; }
.founder-portrait {
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--navy-800), var(--teal-600));
  color: var(--white);
  aspect-ratio: 3.4 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 30px;
}
.founder-portrait::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 201, 220, 0.35), transparent 65%);
  top: -80px; right: -80px;
}
.founder-portrait .initials {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(143, 201, 220, 0.5);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--sky-300);
}
.founder-portrait .fp-name { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.founder-portrait .fp-role { font-size: 13.5px; color: rgba(255, 255, 255, 0.75); letter-spacing: 0.06em; text-transform: uppercase; }
.founder-portrait .fp-note { font-size: 11.5px; color: rgba(255, 255, 255, 0.5); position: absolute; bottom: 14px; left: 0; right: 0; }

blockquote.pull-quote {
  border-left: 4px solid var(--gold-500);
  background: var(--sand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 26px 30px;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--navy-800);
  line-height: 1.5;
  margin-top: 28px;
}
blockquote.pull-quote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 14px; font-weight: 650; color: var(--teal-600); margin-top: 12px; }

@media (max-width: 940px) {
  .founder { grid-template-columns: 1fr; }
  .founder-visual { position: static; max-width: 340px; }
}

/* ---------- Solutions : blocs expertise ---------- */

.expertise-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 36px;
  border: 1px solid rgba(143, 201, 220, 0.25);
  transition: box-shadow 0.4s;
}
.expertise-block:hover { box-shadow: var(--shadow-lift); }
.expertise-media {
  background-size: cover;
  background-position: center;
  min-height: 320px;
  position: relative;
}
.expertise-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(8, 42, 63, 0.45), transparent 60%);
}
.expertise-media .exp-num {
  position: absolute;
  top: 22px; left: 24px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(8, 42, 63, 0.6);
}
.expertise-body { padding: 40px 44px; }
.expertise-body h3 { font-size: 26px; margin-bottom: 12px; }
.expertise-body > p { color: var(--gray-700); margin-bottom: 22px; max-width: 640px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.tag {
  font-size: 13.5px;
  font-weight: 550;
  color: var(--teal-600);
  background: var(--sky-100);
  padding: 7px 15px;
  border-radius: 40px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.tag:hover { background: var(--navy-800); color: var(--white); transform: translateY(-2px); }

@media (max-width: 940px) {
  .expertise-block { grid-template-columns: 1fr; }
  .expertise-media { min-height: 220px; }
  .expertise-body { padding: 30px 26px; }
}

/* ---------- Audience (solutions par partenaire) ---------- */

.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--sky-300);
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}
.audience-card:hover { transform: translateY(-7px); border-left-color: var(--gold-500); box-shadow: var(--shadow-lift); }
.audience-card .ac-icon { color: var(--teal-600); margin-bottom: 16px; }
.audience-card h3 { font-size: 19px; margin-bottom: 8px; }
.audience-card p { font-size: 14.5px; color: var(--gray-700); }

/* ---------- Carte Afrique interactive ---------- */

.map-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 44px;
  align-items: start;
}

.map-stage {
  position: relative;
  background: radial-gradient(ellipse at 30% 20%, rgba(143, 201, 220, 0.25), transparent 60%), var(--ice);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(143, 201, 220, 0.4);
}
#africaMap { width: 100%; aspect-ratio: 1; }
#africaMap svg { width: 100%; height: 100%; display: block; }

#africaMap .land {
  fill: #cfdfe7;
  stroke: var(--white);
  transition: fill 0.3s;
}
#africaMap .land.reseau { fill: var(--sky-300); cursor: pointer; }
#africaMap .land.actif { fill: var(--teal-500); cursor: pointer; }
#africaMap .land.reseau:hover { fill: var(--teal-400); }
#africaMap .land.actif:hover, #africaMap .land.selected { fill: var(--gold-500); }

.map-tooltip {
  position: fixed;
  z-index: 90;
  pointer-events: none;
  background: var(--navy-900);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  transform: translate(-50%, -130%) scale(0.9);
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.map-tooltip.show { opacity: 1; transform: translate(-50%, -130%) scale(1); }

.map-legend { display: flex; gap: 22px; margin-top: 16px; flex-wrap: wrap; }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500); }
.map-legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }

.country-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 34px 32px;
  position: sticky;
  top: 110px;
  min-height: 420px;
}
.country-panel .cp-flag { font-size: 40px; line-height: 1; }
.country-panel h3 { font-size: 26px; margin: 10px 0 4px; }
.country-panel .cp-sub { font-size: 13px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.country-panel h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-600); margin: 20px 0 10px; }
.country-panel .cp-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.country-panel ul.cp-missions { display: grid; gap: 8px; }
.country-panel ul.cp-missions li { font-size: 14px; color: var(--gray-700); padding-left: 18px; position: relative; }
.country-panel ul.cp-missions li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 2px; background: var(--gold-500); }

.map-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }

.filter-chip {
  border: 1.5px solid rgba(143, 201, 220, 0.6);
  background: var(--white);
  color: var(--navy-800);
  border-radius: 40px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.filter-chip:hover { border-color: var(--teal-500); transform: translateY(-2px); }
.filter-chip.active {
  background: linear-gradient(120deg, var(--navy-800), var(--teal-600));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

@media (max-width: 1020px) {
  .map-layout { grid-template-columns: 1fr; }
  .country-panel { position: static; min-height: 0; }
}

/* ---------- Réalisations ---------- */

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.project-card .prj-media { height: 200px; background-size: cover; background-position: center; position: relative; }
.project-card .prj-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 42, 63, 0.5), transparent 55%); }
.project-card .prj-country {
  position: absolute;
  bottom: 14px; left: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy-800);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 30px;
  padding: 5px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.project-card .prj-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.project-card .prj-domain { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 8px; }
.project-card h3 { font-size: 19.5px; margin-bottom: 10px; line-height: 1.3; }
.project-card p { font-size: 14.5px; color: var(--gray-700); margin-bottom: 16px; }
.project-card .prj-list { margin-top: auto; display: flex; flex-wrap: wrap; gap: 7px; }

.filters-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 46px; }

.project-card.hidden-by-filter { display: none; }

/* ---------- Témoignages ---------- */

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
  color: var(--sky-300);
  position: absolute;
  top: 18px; right: 26px;
  opacity: 0.6;
}
.testimonial p { font-size: 15.5px; color: var(--gray-700); font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial .t-author { display: flex; align-items: center; gap: 14px; }
.testimonial .t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-800));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
}
.testimonial .t-name { font-weight: 700; font-size: 14.5px; color: var(--navy-800); }
.testimonial .t-role { font-size: 12.5px; color: var(--gray-500); }

/* ---------- Ressources ---------- */

.pub-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.pub-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.pub-cover {
  height: 190px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--white);
  overflow: hidden;
}
.pub-cover .pub-type {
  position: absolute;
  top: 16px; left: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 30px;
}
.pub-cover .deco-squares-xs { position: absolute; right: -20px; bottom: -20px; opacity: 0.3; }
.pub-cover-1 { background: linear-gradient(140deg, var(--navy-800), var(--teal-600)); }
.pub-cover-2 { background: linear-gradient(140deg, var(--teal-600), var(--sky-300)); }
.pub-cover-3 { background: linear-gradient(140deg, #0c3247, var(--navy-700)); }
.pub-cover-4 { background: linear-gradient(140deg, var(--gold-500), #b7801f); }
.pub-cover-5 { background: linear-gradient(140deg, var(--navy-700), var(--teal-500)); }
.pub-cover-6 { background: linear-gradient(140deg, #29647a, var(--sky-300)); }
.pub-cover h3 { font-size: 19px; line-height: 1.35; position: relative; z-index: 1; }
.pub-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.pub-body p { font-size: 14px; color: var(--gray-700); }
.pub-meta { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--gray-500); }
.pub-dl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 650;
  color: var(--teal-600);
  font-size: 13.5px;
}
.pub-dl:hover { color: var(--navy-800); }

/* ---------- Carrières ---------- */

.profile-cat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.profile-cat:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.profile-cat .pc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-100), rgba(143, 201, 220, 0.45));
  color: var(--teal-600);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.profile-cat h3 { font-size: 18.5px; margin-bottom: 12px; }
.profile-cat .tag-cloud .tag { font-size: 12.5px; padding: 5px 12px; }

.steps-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: s3; }
.step3 {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(143, 201, 220, 0.25);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
}
.step3::before {
  counter-increment: s3;
  content: "0" counter(s3);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--gold-400);
  display: block;
  margin-bottom: 10px;
}
.step3 h4 { font-size: 17.5px; margin-bottom: 8px; color: var(--white); font-family: var(--font-body); font-weight: 700; }
.step3 p { font-size: 14px; color: rgba(255, 255, 255, 0.75); }
@media (max-width: 860px) { .steps-3 { grid-template-columns: 1fr; } }

/* ---------- Formulaires ---------- */

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 44px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }

.field label { display: block; font-size: 13.5px; font-weight: 650; color: var(--navy-800); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--ice);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(62, 139, 160, 0.14);
}
.field input[type="file"] { padding: 10px; background: var(--white); border: 1.5px dashed var(--sky-300); }

.form-note { font-size: 12.5px; color: var(--gray-500); margin-top: 14px; }

/* ---------- Coordonnées / contact ---------- */

.contact-info-card {
  background: linear-gradient(155deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 38px;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.contact-info-card::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 201, 220, 0.28), transparent 65%);
  bottom: -90px; right: -70px;
}
.contact-line { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); position: relative; z-index: 1; }
.contact-line:last-of-type { border-bottom: none; }
.contact-line .cl-icon {
  flex: 0 0 44px; height: 44px;
  border-radius: 12px;
  background: rgba(143, 201, 220, 0.16);
  color: var(--sky-300);
  display: grid;
  place-items: center;
}
.contact-line .cl-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }
.contact-line .cl-value { font-weight: 600; font-size: 15.5px; }
.contact-line a.cl-value:hover { color: var(--sky-300); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-300), var(--teal-500), var(--gold-500));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 46px;
  padding-bottom: 56px;
}
.footer-brand img { height: 52px; background: rgba(255, 255, 255, 0.95); padding: 8px 14px; border-radius: 10px; }
.footer-brand p { font-size: 14px; margin-top: 18px; max-width: 300px; color: rgba(255, 255, 255, 0.62); }
.footer-brand .f-script { font-family: var(--font-script); color: var(--sky-300); font-size: 19px; margin-top: 14px; display: inline-block; transform: rotate(-1.5deg); }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { font-size: 14.5px; color: rgba(255, 255, 255, 0.66); transition: color 0.25s, padding-left 0.25s; }
.footer-links a:hover { color: var(--sky-300); padding-left: 5px; }
.footer-contact { display: grid; gap: 14px; font-size: 14.5px; }
.footer-contact div { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { flex: 0 0 auto; color: var(--gold-400); margin-top: 3px; }
.footer-contact a:hover { color: var(--sky-300); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom .squares { display: inline-flex; gap: 4px; }
.footer-bottom .squares i { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }

@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Divers ---------- */

.breadcrumb-hero { font-size: 13.5px; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.65); margin-bottom: 18px; animation: fadeup 0.9s 0.2s both; }
.breadcrumb-hero a:hover { color: var(--gold-400); }
.breadcrumb-hero span { margin: 0 8px; color: var(--gold-400); }

.deco-squares-svg rect { transition: transform 0.4s; }

.big-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  box-shadow: var(--shadow-lift);
}
.big-banner .bb-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.big-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(95deg, rgba(8, 42, 63, 0.88) 25%, rgba(8, 42, 63, 0.35)); }
.big-banner .bb-body { padding: 48px 52px; max-width: 620px; }
.big-banner h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.big-banner p { color: rgba(255, 255, 255, 0.85); font-size: 15.5px; margin-bottom: 24px; }

.notice {
  background: var(--sky-100);
  border-left: 4px solid var(--teal-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--gray-700);
}
