/* ═══════════════════════════════════════════════
   OGOZI STUDIO — CSS Partagé v6
   Police: Bricolage Grotesque + Inter (Google Fonts)
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:        #F8F7F4;
  --white:     #FFFFFF;
  --ink:       #111111;
  --ink-2:     #333333;
  --ink-3:     #777777;
  --ink-4:     #BBBBBB;
  --blue:      #1246A0;
  --blue-mid:  #1A5CC8;
  --blue-pale: #EBF1FA;
  --gold:      #C9961A;
  --line:      rgba(17,17,17,0.09);
  --line-mid:  rgba(17,17,17,0.16);
  --d: 'Bricolage Grotesque', 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  --b: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --eout: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--b);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--blue); }
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── PROGRESS BAR ── */
#pgbar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px; background: var(--blue); width: 0%;
  transition: width 0.1s linear;
}

/* ══ NAVIGATION ══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.nav.solid {
  background: rgba(248,247,244,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 13px 60px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 24px rgba(0,0,0,0.05);
}
.nav-logo {
  font-family: var(--d);
  font-size: 1.2rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
}
.nav-logo span { color: var(--blue); }

.nav-links {
  display: flex; align-items: center;
  list-style: none; margin: 0; padding: 0; gap: 0;
}
.nav-links li { display: block; }
.nav-links a {
  display: block;
  padding: 6px 13px;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-3); transition: color 0.2s;
  position: relative; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -2px; left: 13px; right: 13px;
  height: 1.5px; background: var(--blue);
}
.nav-cta {
  display: inline-flex !important; align-items: center !important; gap: 7px;
  background: var(--blue) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  font-size: 0.74rem !important; font-weight: 600 !important;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 4px; margin-left: 8px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-mid) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 21px; height: 1.5px;
  background: var(--ink); transition: all 0.3s;
}

/* Mobile overlay */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: var(--white);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  border-left: 3px solid var(--blue);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--d);
  font-size: 1.9rem; font-weight: 600; letter-spacing: -0.025em;
  color: var(--ink-3); transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--blue); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 22px;
  background: none; border: none; cursor: pointer;
  font-size: 1.3rem; color: var(--ink-4); line-height: 1;
}

/* ══ PAGE HEADER (pages internes) ══ */
.page-header {
  padding: 136px 60px 76px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-header-watermark {
  position: absolute; right: -10px; bottom: -50px;
  font-family: var(--d);
  font-size: clamp(80px, 16vw, 180px);
  font-weight: 800; line-height: 1;
  color: rgba(17,17,17,0.035);
  pointer-events: none; user-select: none;
  letter-spacing: -0.06em;
}
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-4); margin-bottom: 22px;
}
.breadcrumb a { color: var(--ink-4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { opacity: 0.4; font-size: 0.6rem; }

/* ══ TYPOGRAPHY ══ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--blue); }
.eyebrow-white { color: rgba(255,255,255,0.45); }
.eyebrow-white::before { background: rgba(255,255,255,0.35); }

.title-xl {
  font-family: var(--d);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 700; line-height: 1.06;
  letter-spacing: -0.03em; color: var(--ink);
}
.title-xl em { font-style: italic; font-weight: 400; color: var(--blue); }
.title-xl.white { color: #fff; }
.title-xl.white em { color: var(--gold); }

.title-lg {
  font-family: var(--d);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.025em; color: var(--ink);
}
.title-lg em { font-style: italic; font-weight: 400; color: var(--blue); }

.title-md {
  font-family: var(--d);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1.25;
}

.body-large { font-size: 1rem; font-weight: 300; color: var(--ink-3); line-height: 1.82; }
.body-base  { font-size: 0.9rem; font-weight: 300; color: var(--ink-3); line-height: 1.75; }
.body-sm    { font-size: 0.82rem; font-weight: 300; color: var(--ink-3); line-height: 1.7; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--b); font-size: 0.77rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 4px;
  cursor: pointer; border: none;
  transition: all 0.25s var(--ease);
}
.btn-blue  { background: var(--blue); color: #fff; }
.btn-blue:hover  { background: var(--blue-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(18,70,160,0.3); }
.btn-dark  { background: var(--ink); color: #fff; }
.btn-dark:hover  { background: var(--blue); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--gold); color: #fff; }
.btn-out   { background: transparent; color: var(--ink); border: 1.5px solid var(--line-mid); }
.btn-out:hover   { border-color: var(--blue); color: var(--blue); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(255,255,255,0.28); border-radius: 4px;
  padding: 12px 22px; font-family: var(--b);
  font-size: 0.77rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s;
}
.btn-ghost-white:hover { border-color: #fff; color: #fff; }
.link-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.77rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--blue); border-bottom: 1.5px solid var(--blue);
  padding-bottom: 1px; transition: gap 0.2s;
}
.link-btn:hover { gap: 13px; }

/* ══ SECTIONS ══ */
.section        { padding: 104px 60px; }
.section-sm     { padding: 72px 60px; }
.section-white  { background: var(--white); }
.section-bg     { background: var(--bg); }
.section-blue   { background: var(--blue); }
.section-dark   { background: #0F1624; }

/* ══ CARDS ══ */
.card {
  background: var(--white); border: 1px solid var(--line);
  padding: 40px 36px; border-radius: 3px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(18,70,160,0.09); border-color: rgba(18,70,160,0.18); }
.card:hover::after { transform: scaleX(1); }

/* ══ FORM ══ */
.form-label {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-4); margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--bg);
  border: 1.5px solid var(--line);
  padding: 13px 16px;
  font-family: var(--b); font-size: 0.92rem; color: var(--ink);
  outline: none; transition: border-color 0.25s;
  border-radius: 4px; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-4); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--blue); }
.form-textarea { height: 130px; resize: none; line-height: 1.6; }
.form-group { margin-bottom: 20px; }

/* ══ WA FLOAT ══ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4); transition: all 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 24px; height: 24px; fill: #fff; }
.wa-tooltip {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff; font-size: 0.72rem; font-weight: 500;
  padding: 7px 12px; border-radius: 3px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
}

/* ══ FOOTER ══ */
.footer {
  background: #080808; color: rgba(255,255,255,0.38);
  padding: 72px 60px 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-logo {
  font-family: var(--d); font-size: 1.2rem; font-weight: 700;
  letter-spacing: -0.02em; color: #fff; display: block; margin-bottom: 11px;
}
.footer-logo span { color: var(--blue); }
.footer-tagline { font-size: 0.875rem; line-height: 1.7; max-width: 200px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-soc {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; border-radius: 3px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); transition: all 0.2s;
}
.footer-soc:hover { border-color: var(--blue); color: var(--blue); }
.footer-col-title {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin-bottom: 15px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.68rem;
}

/* ══ REVEAL ANIMATIONS ══ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--eout), transform 0.6s var(--eout);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ══ TICKER ══ */
.ticker {
  overflow: hidden; background: var(--blue);
  padding: 12px 0; display: flex; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; flex-shrink: 0;
  animation: tickerScroll 36s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 18px; padding: 0 28px;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-family: var(--d);
  white-space: nowrap;
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.28); flex-shrink: 0; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══ LOGO CAROUSEL ══ */
.logo-band {
  background: var(--white);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.logo-band-label {
  text-align: center; padding: 36px 0 14px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-4);
}
.logo-band-track-wrap {
  overflow: hidden; padding: 18px 0 36px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logo-band-track {
  display: inline-flex; flex-shrink: 0;
  animation: logoScroll 28s linear infinite;
}
.logo-band-track:hover { animation-play-state: paused; }
@keyframes logoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logo-band-item {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 44px; height: 60px; border-right: 1px solid var(--line);
  white-space: nowrap; flex-shrink: 0;
}
.logo-band-item:last-child { border-right: none; }
.logo-band-name {
  font-family: var(--d); font-size: 0.95rem; font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink-4);
  transition: color 0.3s; user-select: none;
}
.logo-band-item:hover .logo-band-name { color: var(--ink); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .nav, .nav.solid { padding: 14px 28px; }
  .section, .section-sm { padding: 76px 28px; }
  .page-header { padding: 118px 28px 60px; }
  .footer { padding: 60px 28px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .section, .section-sm { padding: 60px 20px; }
  .page-header { padding: 108px 20px 48px; }
  .footer { padding: 52px 20px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ══ SOCIAL RS FLOAT (toutes les pages) ══ */
.rs-float {
  position:fixed; right:0; top:50%; transform:translateY(-50%);
  z-index:190; display:flex; flex-direction:column; gap:0;
}
.rs-btn {
  width:44px; height:44px; display:flex; align-items:center; justify-content:center;
  transition:all 0.25s; cursor:pointer; text-decoration:none;
}
.rs-btn:hover { width:52px; }
.rs-btn svg { width:18px; height:18px; fill:#fff; flex-shrink:0; }
.rs-btn-fb { background:#1877F2; border-left:2px solid #1565D8; }
.rs-btn-fb:hover { background:#1565D8; }
.rs-btn-ig { background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-left:2px solid #e6683c; }
.rs-btn-ig:hover { filter:brightness(1.1); }
.rs-btn-li { background:#0077B5; border-left:2px solid #005d8f; }
.rs-btn-li:hover { background:#005d8f; }
.rs-btn-be { background:#1769FF; border-left:2px solid #0d56e0; }
.rs-btn-be:hover { background:#0d56e0; }
@media(max-width:768px){ .rs-float { display:none; } }
