/* ============================================================
   PSLEAD GROUP · Main Stylesheet v2.0
   Palette: Navy #0A2540 | Or #F5D20A | Blanc #FFFFFF | Gris #F4F6F8
   Typo: Open Sans 400 / 600 / 800
   ============================================================ */

/* ================================
   CUSTOM PROPERTIES
================================ */
:root {
  --navy:      #0A2540;
  --navy-dark: #071B2E;
  --gold:      #F5D20A;
  --gold-dark: #D4B508;
  --white:     #FFFFFF;
  --gray-light:#F4F6F8;
  --gray-mid:  #E2E8ED;
  --gray-text: #5A6672;
  --font:      'Open Sans', -apple-system, sans-serif;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --t:         0.3s var(--ease);
  --shadow-sm: 0 2px 12px rgba(10,37,64,.07);
  --shadow-md: 0 8px 32px rgba(10,37,64,.12);
  --shadow-lg: 0 20px 60px rgba(10,37,64,.18);
  --radius:    3px;
  --mw:        1280px;
  --gap:       2rem;
}

/* ================================
   RESET & BASE
================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-text);
  max-width: 600px;
  margin-top: .75rem;
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: var(--t);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,210,10,.35);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ================================
   HEADER / NAV
================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
  padding: 1.25rem 0;
}

#site-header.transparent {
  background: transparent;
}
#site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
  padding: .75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.site-logo svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo .logo-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}
.site-logo .logo-tagline {
  font-size: .625rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .15rem;
}

/* Main Nav */
#main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .85rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.nav-link:hover,
.nav-item.active > .nav-link {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav-link .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--t);
  flex-shrink: 0;
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown · BUG FIX: bridge hover gap + transition-delay on hide (EY style) */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 280px;
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(10,37,64,.08);
  border-top: 3px solid var(--gold);
  border: .5px solid rgba(10,37,64,.1);
  border-top: 3px solid var(--gold);
  padding: .375rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility 0s .25s;
  z-index: 200;
}
/* Bridge invisible · couvre le gap entre parent et menu */
.dropdown::before {
  content: '';
  position: absolute;
  top: -.75rem;
  left: 0;
  right: 0;
  height: .75rem;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s 0s;
}

.dropdown-link {
  display: block;
  padding: .9375rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  color: #0A2540;
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
  border-bottom: .5px solid rgba(10,37,64,.06);
}
.dropdown-link:last-child { border-bottom: none; border-radius: 0 0 3px 3px; }
.dropdown-link:first-child { border-radius: 3px 3px 0 0; }
.dropdown-link:hover {
  background: var(--gray-light);
  color: var(--gold-dark);
  padding-left: 1.875rem;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: .375rem;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,.65);
  border-radius: 50%;
  transition: color var(--t), background var(--t);
}
.social-icon:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.social-icon svg {
  width: 16px;
  height: 16px;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,.75);
  border-radius: 50%;
  transition: var(--t);
}
.search-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.search-btn svg { width: 18px; height: 18px; }

.btn-cta-header {
  padding: .6rem 1.375rem;
  font-size: .8125rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  letter-spacing: .025em;
  transition: var(--t);
}
.btn-cta-header:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,210,10,.35);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
/* Hamburger → croix */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================
   HERO SECTION
================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__geo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .12;
}

/* Animated gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(245,210,10,.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,255,255,.03) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 2rem 6rem;
  max-width: 860px;
  margin: 0 auto;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp .8s var(--ease) .2s forwards;
}
.hero__label::before,
.hero__label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp .9s var(--ease) .4s forwards;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(.9375rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
  letter-spacing: .01em;
  opacity: 0;
  animation: fadeInUp .9s var(--ease) .6s forwards;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp .9s var(--ease) .8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .375rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.4s forwards;
}
.hero__scroll span {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hero__scroll svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ================================
   STATS SECTION
================================ */
.stats {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.stat-item.revealed {
  opacity: 1;
  transform: none;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--gray-mid);
}

.stat-item__number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: .5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .2rem;
}
.stat-item__unit {
  font-size: .5em;
  font-weight: 700;
  color: var(--navy);
  opacity: .6;
}

.stat-item__label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
}
.stat-item__sublabel {
  font-size: .75rem;
  color: var(--gray-text);
  margin-top: .25rem;
}

/* ================================
   EXPERTISES SECTION
================================ */
.expertises {
  padding: 6rem 0;
  background: var(--gray-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-subtitle {
  margin: .75rem auto 0;
}

.expertises__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.expertise-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
}
.expertise-card.revealed {
  opacity: 1;
  transform: none;
}
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.expertise-card:hover::before { transform: scaleX(1); }
.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.expertise-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.expertise-card__title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.3;
}

.expertise-card__body {
  font-size: .9375rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  transition: gap var(--t);
}
.card-link svg { width: 14px; height: 14px; transition: transform var(--t); }
.card-link:hover { color: var(--gold-dark); }
.card-link:hover svg { transform: translateX(4px); }

/* ================================
   SECTEURS SECTION
================================ */
.secteurs {
  padding: 6rem 0;
  background: var(--white);
}

.secteurs__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--gray-mid);
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 3rem;
}

.secteur-tile {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 1.25rem;
  text-align: center;
  transition: background var(--t), color var(--t);
  opacity: 0;
  transform: scale(.96);
}
.secteur-tile.revealed {
  opacity: 1;
  transform: scale(1);
}
.secteur-tile:hover {
  background: var(--navy);
}
.secteur-tile:hover .secteur-tile__icon { color: var(--gold); }
.secteur-tile:hover .secteur-tile__title { color: var(--white); }

.secteur-tile__icon {
  width: 40px;
  height: 40px;
  color: var(--navy);
  transition: color var(--t);
}

.secteur-tile__title {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .03em;
  line-height: 1.3;
  transition: color var(--t);
}

/* ================================
   WHY PSLEAD SECTION
================================ */
.why-pslead {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-pslead::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245,210,10,.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-pslead .section-label { color: rgba(245,210,10,.8); }
.why-pslead .section-title { color: var(--white); }
.why-pslead .section-subtitle { color: rgba(255,255,255,.55); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-card {
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  transition: var(--t);
  opacity: 0;
  transform: translateY(24px);
}
.why-card.revealed {
  opacity: 1;
  transform: none;
}
.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(245,210,10,.25);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .625rem;
  line-height: 1.35;
}

.why-card__body {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ================================
   CASE STUDIES SECTION
================================ */
.case-studies {
  padding: 6rem 0;
  background: var(--gray-light);
}

.case-studies__slider {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--t);
  opacity: 0;
  transform: translateY(24px);
}
.case-card.revealed {
  opacity: 1;
  transform: none;
}
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.case-card__badge {
  display: inline-block;
  padding: .3rem .75rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(245,210,10,.15);
  color: var(--gold-dark);
  border-radius: 2px;
  align-self: flex-start;
}

.case-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  flex: 1;
}

.case-card__result {
  font-size: .9375rem;
  color: var(--gray-text);
  border-left: 3px solid var(--gold);
  padding-left: .875rem;
  line-height: 1.5;
}
.case-card__result strong { color: var(--navy); font-weight: 700; }

/* ================================
   NEWS SECTION
================================ */
.news {
  padding: 6rem 0;
  background: var(--white);
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.news-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  opacity: 0;
  transform: translateY(24px);
  background: var(--white);
  border: 1px solid var(--gray-mid);
}
.news-card.revealed {
  opacity: 1;
  transform: none;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--gray-light);
}

.news-card__img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4070 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__body {
  padding: 1.5rem;
}

.news-card__cat {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .5rem;
}

.news-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: .75rem;
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  color: var(--gray-text);
}

.news-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ================================
   CTA FINAL SECTION
================================ */
.cta-final {
  padding: 7rem 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta-final::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-final::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,210,10,.06) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.cta-final::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 70%);
  bottom: -150px; right: -50px;
}

.cta-final__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-final__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-final__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-final__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   FOOTER
================================ */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  line-height: 1.7;
  border-top: 3px solid var(--gold);
}

.footer-main {
  padding: 5rem 0 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr;
  gap: 3rem;
}

.footer-col__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.footer-col__logo svg { width: 44px; height: 44px; flex-shrink: 0; }
.footer-col__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-col__logo-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}
.footer-col__logo-tag {
  font-size: .5625rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .15rem;
}

.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.footer-contact { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.footer-contact a { color: rgba(255,255,255,.65); transition: color var(--t); display: flex; align-items: flex-start; gap: .5rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact a svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: .2rem; }

.footer-social {
  display: flex;
  gap: .5rem;
}
.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.55);
  transition: var(--t);
}
.footer-social__link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-social__link svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .625rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t), padding-left var(--t);
}
.footer-links a:hover { color: var(--white); padding-left: .375rem; }

.footer-btn-gold {
  display: inline-block;
  margin-top: 1.25rem;
  padding: .75rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .8125rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--t);
}
.footer-btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
}
.footer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.footer-bar__inner a { color: rgba(255,255,255,.45); transition: color var(--t); }
.footer-bar__inner a:hover { color: var(--white); }

/* ================================
   GENERIC PAGE TEMPLATE
================================ */
.page-hero {
  background: var(--navy);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 80%);
}
.page-hero__label { color: var(--gold); opacity: .8; }
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-top: .5rem;
}
.page-hero__subtitle {
  margin-top: .75rem;
  font-size: 1.0625rem;
  color: rgba(255,255,255,.6);
  max-width: 600px;
}

.page-content {
  padding: 5rem 0;
}
.page-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 2.5rem 0 1rem; }
.page-content h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .75rem; }
.page-content p { margin-bottom: 1.25rem; color: var(--gray-text); }
.page-content ul { margin-left: 1.5rem; list-style: disc; }
.page-content ul li { margin-bottom: .375rem; color: var(--gray-text); }
.page-content strong { color: var(--navy); }

/* ================================
   SEARCH DESKTOP · inline slide-in (style EY)
   Remplace l'ancien overlay plein écran
================================ */

/* Bouton loupe · hover or doré */
.search-btn {
  color: rgba(255,255,255,.8);
}
.search-btn:hover {
  color: var(--gold) !important;
  background: rgba(255,255,255,.08) !important;
}

/* Barre de recherche inline (position: absolute dans le header fixed) */
.header-search {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  overflow: hidden;
  transition: width .3s ease;
  display: flex;
  align-items: center;
  z-index: 200;
  pointer-events: none;
  background: var(--navy);
}
.header-search.open {
  width: 340px;
  pointer-events: auto;
}
#site-header.search-open {
  background: var(--navy) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}

.header-search form {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 340px;
  padding: 0 1rem 0 1.25rem;
}
.header-search input[type="search"] {
  flex: 1;
  background: rgba(255,255,255,.96);
  border: .5px solid rgba(255,255,255,.3);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--navy);
  outline: none;
  transition: box-shadow var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.header-search input[type="search"]::placeholder { color: rgba(10,37,64,.4); }
.header-search input[type="search"]:focus {
  box-shadow: 0 0 0 2px rgba(245,210,10,.55);
}

.header-search__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: rgba(255,255,255,.65);
  border-radius: 50%;
  transition: color var(--t), background var(--t);
}
.header-search__close:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.header-search__close svg { width: 18px; height: 18px; }

/* ================================
   MOBILE NAV DRAWER · BUG2 FIX
================================ */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(380px, 100vw);
  min-height: 100vh;
  height: 100vh;
  background: var(--navy-dark);
  z-index: 9999;
  padding: 2rem;
  overflow-y: auto;
  overflow-x: hidden;
  transition: right .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { right: 0; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.mobile-nav__close {
  color: rgba(255,255,255,.6);
  font-size: 1.5rem;
  line-height: 1;
  transition: color var(--t);
  flex-shrink: 0;
}
.mobile-nav__close:hover { color: var(--white); }

/* Champ de recherche mobile (permanent, en haut du panneau) */
.mobile-nav__search {
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.mobile-nav__search form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border: .5px solid rgba(255,255,255,.2);
  border-radius: 4px;
  overflow: hidden;
  padding: 0 .75rem 0 1rem;
}
.mobile-nav__search input[type="search"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: .9rem;
  font-family: var(--font);
  color: #fff;
  padding: 10px 0;
  -webkit-appearance: none;
  appearance: none;
}
.mobile-nav__search input[type="search"]::placeholder { color: rgba(255,255,255,.4); }
.mobile-nav__search button[type="submit"] {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.5);
  transition: color var(--t);
  padding: 4px 0;
  flex-shrink: 0;
}
.mobile-nav__search button[type="submit"]:hover { color: var(--gold); }
.mobile-nav__search button svg { width: 16px; height: 16px; }

/* Liste des liens · BUG2 FIX : forcer la visibilité absolue */
.mobile-nav__list {
  display: flex !important;
  flex-direction: column !important;
  gap: .15rem;
  flex: 1;
}
.mobile-nav__list li {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  list-style: none;
}
.mobile-nav__link,
.mobile-nav__list > li > a.mobile-nav__link {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: rgba(255,255,255,.85) !important;
  padding: .9375rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  border-bottom: .5px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  transition: background var(--t), color var(--t);
  text-decoration: none;
  white-space: nowrap;
}
.mobile-nav__link:hover,
.mobile-nav__list > li > a.mobile-nav__link:hover {
  background: rgba(255,255,255,.08) !important;
  color: var(--white) !important;
}

/* Accordéon sous-menus */
.mobile-nav__sub {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .3s ease;
  padding-left: 1.25rem;
}
.mobile-nav__sub.open {
  max-height: 500px;
  opacity: 1;
}
.mobile-nav__sub a {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  padding: .625rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  font-family: var(--font);
  color: rgba(255,255,255,.6) !important;
  border-bottom: .5px solid rgba(255,255,255,.05);
  transition: color var(--t), padding-left var(--t);
  text-decoration: none;
}
.mobile-nav__sub a:hover {
  color: var(--gold) !important;
  padding-left: 1.375rem;
}

/* Chevron accordéon */
.mobile-nav__link[data-has-sub]::after {
  content: '▶';
  float: right;
  font-size: .65rem;
  line-height: 1.6;
  transition: transform .3s ease;
  display: inline-block;
  opacity: .55;
}
.mobile-nav__link[data-has-sub].open::after { transform: rotate(90deg); }

/* CTA Diagnostic en bas du panneau */
.mobile-nav__cta { margin-top: auto; padding-top: 1.5rem; flex-shrink: 0; }
.mobile-nav__cta .btn--gold { width: 100%; justify-content: center; }

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes floatGeo {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%       { transform: translate(8px, -12px) rotate(2deg); }
  66%       { transform: translate(-6px, 6px) rotate(-1deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

/* ================================
   RESPONSIVE · TABLET
================================ */
@media (max-width: 1100px) {
  .nav-link { padding: .5rem .65rem; font-size: .8125rem; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .secteurs__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Masquer nav + icônes sociales + search sur mobile */
  #main-nav,
  .header-actions .social-icons,
  .search-btn { display: none; }

  /* Afficher hamburger */
  .nav-toggle { display: flex; }

  /* Header compact · logo flex-1 pousse les actions à droite */
  .header-inner {
    gap: .75rem;
    padding: 0 1.25rem;
  }
  .site-logo { flex: 1; }

  /* Bouton Diagnostic compact mais toujours visible */
  .btn-cta-header {
    padding: .5rem .875rem;
    font-size: .75rem;
    letter-spacing: 0;
    flex-shrink: 0;
  }

  .expertises__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .stat-item { border-bottom: 1px solid var(--gray-mid); }
  .case-studies__slider, .news__grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .btn-cta-header {
    padding: .4375rem .625rem;
    font-size: .6875rem;
  }
  .site-logo .logo-tagline { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .expertises__grid,
  .case-studies__slider,
  .news__grid { grid-template-columns: 1fr; }
  .secteurs__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: center; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .footer-bar__inner { flex-direction: column; text-align: center; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats section { border-bottom: 1px solid var(--gray-mid); }
}

/* PSLEAD-GOLD · Bouton Diagnostic CTA */
.menu-cta-gold > a,
.menu-cta-gold > a:link,
.menu-cta-gold > a:visited {
  background: #F5D20A;
  color: #0A2540 !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease, transform .1s ease;
}
.menu-cta-gold > a:hover {
  background: #e0bc00;
  color: #0A2540 !important;
  transform: translateY(-1px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ÉTUDES DE CAS · Layout magazine EY-style
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Overrides template page.php ──────────────────────────────────────── */
body:has(.ecs-hero) .page-hero { display: none !important; }
body:has(.ecs-hero) .cta-final { display: none !important; }
body:has(.ecs-hero) .page-content { padding: 0 !important; }
body:has(.ecs-hero) .page-content .container {
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.ecs-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.ecs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,37,64,.92) 0%,
    rgba(10,37,64,.55) 50%,
    rgba(10,37,64,.25) 100%
  );
  z-index: 1;
}

.ecs-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

.ecs-badge {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,210,10,.12);
  border: 1px solid rgba(245,210,10,.35);
  border-radius: 2px;
  padding: .3rem .75rem;
  margin-bottom: 1.25rem;
}

.ecs-hero__title {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.2 !important;
  max-width: 760px;
  margin-bottom: 1.25rem !important;
  margin-top: .75rem !important;
}

.ecs-hero__subtitle {
  font-size: 1.0625rem !important;
  color: rgba(255,255,255,.78) !important;
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 1.5rem !important;
}

.ecs-hero__meta {
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}

/* ── Bandeau métriques · 3 colonnes, pleine largeur ────────────────────── */
.ecs-metrics {
  background: #FAF7EE;
  padding: 2.5rem 2rem;
  width: 100%;
  border-top: 1px solid rgba(10,37,64,.07);
  border-bottom: 1px solid rgba(10,37,64,.07);
}

.ecs-metrics__inner {
  max-width: 980px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  text-align: center;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.ecs-metric {
  position: relative;
  width: 100%;
  padding: 0 1.5rem;
}

.ecs-metric + .ecs-metric::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(10,37,64,.12);
}

.ecs-metric__number {
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: .5rem;
}

.ecs-metric__accent { color: var(--gold-dark); }

.ecs-metric__label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-text);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .375rem;
}

/* ── Corps de texte · 720px centré, bloc simple ────────────────────────── */
.ecs-article {
  width: 100%;
  padding: 4rem 1.5rem;
  display: block !important;
}

.ecs-article__inner {
  max-width: 720px !important;
  margin: 0 auto !important;
  display: block !important;
  width: 100% !important;
  position: relative !important;
  float: none !important;
}

.ecs-article__inner > * {
  width: 100% !important;
  max-width: 100% !important;
}

.ecs-article__inner > p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1.5rem;
}

.ecs-section-title {
  font-size: clamp(1.25rem, 2vw, 1.625rem) !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  line-height: 1.3 !important;
  margin: 3rem 0 1.25rem !important;
  padding-top: .625rem;
  border-top: 2px solid var(--gold);
  display: block !important;
}

/* ── Encadré Stratégie mobilisée · inline, jamais sticky/float ─────────── */
.study-products-box {
  position: relative !important;
  float: none !important;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  margin: 3rem auto !important;
  width: 100% !important;
  max-width: 720px !important;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 24px rgba(10,37,64,.18);
}

.study-products-box.sticky,
.study-body-grid {
  display: block !important;
  position: relative !important;
}

.study-products-box h3 {
  font-size: .6875rem !important;
  font-weight: 800 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 1.25rem !important;
}

.study-products-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.study-products-box ul li {
  font-size: .9375rem;
  color: rgba(255,255,255,.88);
  padding: .5rem 0 .5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.study-products-box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.study-products-box ul li:last-child { border-bottom: none; }

/* ── Résultats ─────────────────────────────────────────────────────────── */
.ecs-result {
  background: #FAF7EE;
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.ecs-result__value {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.ecs-result__label {
  font-size: .875rem;
  color: var(--gray-text);
  margin-top: .25rem;
}

/* ── Photo pleine largeur ──────────────────────────────────────────────── */
.ecs-photo-full {
  width: calc(100% + 3rem);
  margin: 3rem -1.5rem;
  overflow: hidden;
  border-radius: 4px;
}

.ecs-photo-full img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── CTA final · grille 2 colonnes, titre H2 blanc + H3 or ────────────── */
.study-cta {
  background: var(--navy);
  max-width: 1100px;
  margin: 1rem auto 5rem;
  padding: 3.5rem 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.study-cta__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.study-cta__title {
  font-size: clamp(1.375rem, 2.2vw, 1.75rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.3 !important;
  margin: 0 0 1rem 0 !important;
  text-align: left !important;
  display: block !important;
  visibility: visible !important;
}

.study-cta__subtitle {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--gold) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  text-align: left !important;
  display: block !important;
  visibility: visible !important;
}

.study-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.study-cta__actions .btn {
  justify-content: center;
  padding: 1rem 1.5rem;
  width: 100%;
  white-space: normal;
  text-align: center;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ecs-hero { min-height: 60vh; }
  .ecs-hero__content { padding: 3.5rem 1.25rem 2.5rem; }

  .ecs-metrics__inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .ecs-metric + .ecs-metric::before { display: none; }
  .ecs-metric {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(10,37,64,.1);
  }
  .ecs-metric:last-child { border-bottom: none; }

  .ecs-article { padding: 2.5rem 1.25rem; }

  .ecs-photo-full {
    width: calc(100% + 2.5rem);
    margin: 2rem -1.25rem;
  }
  .ecs-photo-full img { height: 260px; }

  .study-cta {
    padding: 2.5rem 1.5rem;
    margin: 1rem 1rem 3rem;
  }
  .study-cta__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .study-cta__title,
  .study-cta__subtitle { text-align: center !important; }
  .study-cta__actions { align-items: center; }
  .study-cta__actions .btn { max-width: 320px; }
}

/* ============================================================
   REFONTE EY · surcharges pied de page + logo scroll (v2.1)
============================================================ */
/* Logo se simplifie au scroll (animation EY : baseline qui s'efface de droite à gauche, icône réduite, menu décalé) */
.site-logo svg{transition:width .35s var(--ease),height .35s var(--ease)}
.site-logo .logo-text{overflow:hidden}
.site-logo .logo-tagline{
  overflow:hidden;max-height:1.4em;opacity:1;transform:translateX(0);
  transition:opacity .35s var(--ease),max-height .35s var(--ease),transform .4s var(--ease),margin-top .35s var(--ease);
}
#site-header.scrolled .logo-tagline{opacity:0;max-height:0;transform:translateX(-14px);margin-top:0}
#site-header.scrolled .site-logo svg{width:36px;height:36px}
#main-nav{transition:transform .4s var(--ease)}
#site-header.scrolled #main-nav{transform:translateX(-10px)}

/* Recherche : icône + libellé, épuré (style EY) */
#site-header .search-btn{width:auto;gap:.45rem;padding:.45rem .85rem;border-radius:999px;border:1px solid rgba(255,255,255,.22)}
#site-header .search-btn .search-label{font-size:.82rem;font-weight:600;color:rgba(255,255,255,.85);white-space:nowrap}
#site-header .search-btn:hover{background:rgba(255,255,255,.12)}
#site-header .search-btn:hover .search-label{color:#fff}

/* Bouton compte "Mon espace" */
#site-header .header-account{display:flex;align-items:center;gap:.45rem;color:rgba(255,255,255,.85);font-size:.82rem;font-weight:600;padding:.45rem .65rem;border-radius:999px;transition:color .2s,background .2s}
#site-header .header-account:hover{color:#fff;background:rgba(255,255,255,.1)}

@media (max-width:900px){
  #site-header .header-account{display:none}
}

/* Titres de colonnes du pied de page : plus en exergue + filet or */
#site-footer .footer-col h4{
  font-size:.95rem;color:#fff;font-weight:800;letter-spacing:.06em;
  text-transform:uppercase;position:relative;padding-bottom:11px;margin-bottom:18px;
}
#site-footer .footer-col h4::after{
  content:"";position:absolute;left:0;bottom:0;width:28px;height:2px;background:#F5D20A;
}

/* Icônes réseaux sociaux du pied de page : dans un cercle, plus visibles */
#site-footer .footer-social{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}
#site-footer .footer-social__link{
  width:42px;height:42px;border-radius:50%;display:inline-flex;align-items:center;
  justify-content:center;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);
  color:#fff;transition:background .2s,border-color .2s,color .2s,transform .2s;
}
#site-footer .footer-social__link:hover{
  background:#F5D20A;border-color:#F5D20A;color:#0A2540;transform:translateY(-2px);
}
#site-footer .footer-social__link svg{width:19px;height:19px}
