/* AKWABAIA — LE BON IT | Design System v2 */
:root {
  --bleu-marine: #0D2B5E;
  --bleu-marine-dark: #061A3F;
  --bleu-marine-light: #1B428A;
  --or: #C9A227;
  --or-dark: #A88318;
  --or-light: #E3BE4F;
  --vert-akwaba: #A8C55A;
  --vert-dark: #7FA035;
  --cream: #FAF7F2;
  --cream-dark: #F2EDE3;
  --gris-100: #F4F6F8;
  --gris-200: #E5E7EB;
  --gris-400: #9CA3AF;
  --gris-600: #4B5563;
  --gris-800: #1F2937;
  --blanc: #FFFFFF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --container: 1240px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 3px rgba(13, 43, 94, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 43, 94, 0.10);
  --shadow-lg: 0 24px 64px rgba(13, 43, 94, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gris-800);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
em { font-style: italic; font-family: var(--font-display); font-weight: 500; }
sup { font-size: 0.55em; vertical-align: super; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bleu-marine);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--or-dark);
  padding: 6px 14px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 999px;
  margin-bottom: 20px;
}
.tag-light { color: var(--or-light); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
.section-sub { font-size: 1.05rem; color: var(--gris-600); max-width: 640px; line-height: 1.6; }
.text-accent { color: var(--or-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--bleu-marine); color: var(--blanc); }
.btn-primary:hover { background: var(--bleu-marine-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--bleu-marine); border: 1.5px solid rgba(13, 43, 94, 0.2); }
.btn-ghost:hover { border-color: var(--bleu-marine); background: rgba(13, 43, 94, 0.05); }
.btn-ghost-light { background: transparent; color: var(--blanc); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost-light:hover { border-color: var(--blanc); background: rgba(255,255,255,0.08); }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(250, 247, 242, 0.95);
  border-bottom: 1px solid rgba(13, 43, 94, 0.08);
  box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; color: var(--bleu-marine); }
.logo-img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.logo-text { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }
.logo-text em { color: var(--or-dark); font-weight: 700; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--gris-800);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--or); transition: width var(--transition);
}
.nav-links a:hover { color: var(--bleu-marine); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--vert-akwaba); color: var(--bleu-marine); font-weight: 700; }
.nav-cta:hover { background: var(--vert-dark); color: var(--blanc); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--bleu-marine); }

/* HERO */
.hero { position: relative; padding: 120px 0 50px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(168, 197, 90, 0.06), transparent);
}
.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.shape-1 { width: 300px; height: 300px; background: var(--or); top: 10%; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: var(--vert-akwaba); bottom: -100px; left: -150px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { animation: fadeInUp 0.8s ease; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; color: var(--gris-600);
  padding: 8px 16px;
  background: rgba(13, 43, 94, 0.05);
  border: 1px solid rgba(13, 43, 94, 0.1);
  border-radius: 999px;
  margin-bottom: 28px;
}
.dot {
  width: 8px; height: 8px; background: var(--vert-akwaba); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(168, 197, 90, 0.2);
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-subtitle { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--gris-600); margin-bottom: 36px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-photo-wrap { position: relative; max-width: 420px; margin-left: auto; }
.hero-photo {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
  border: 6px solid var(--blanc);
}
.hero-photo-blob {
  position: absolute;
  inset: -20px -30px -30px -20px;
  background: linear-gradient(135deg, var(--or), var(--vert-akwaba));
  border-radius: 35px;
  z-index: 1;
  opacity: 0.9;
  transform: rotate(-3deg);
}
.floating-stat {
  position: absolute;
  background: var(--blanc);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex; flex-direction: column;
  border: 1px solid rgba(13, 43, 94, 0.05);
  animation: floatY 4s ease-in-out infinite;
}
.floating-num {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  color: var(--bleu-marine); line-height: 1;
}
.floating-label { font-size: 11px; color: var(--gris-600); margin-top: 4px; font-weight: 600; }
.stat-1 { top: 8%; left: -30px; animation-delay: 0s; }
.stat-2 { top: 45%; right: -30px; animation-delay: 1.5s; }
.stat-3 { bottom: 5%; left: -10px; animation-delay: 3s; }

.hero-meta-wrap { margin-top: 60px; }
.hero-meta {
  display: flex; justify-content: center; align-items: center; gap: 40px;
  flex-wrap: wrap; padding-top: 40px;
  border-top: 1px solid rgba(13, 43, 94, 0.08);
  animation: fadeInUp 0.8s ease 0.4s both;
}
.meta-item { text-align: center; }
.meta-number {
  display: block; font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 600; color: var(--bleu-marine); line-height: 1;
}
.meta-label { display: block; font-size: 12.5px; color: var(--gris-600); margin-top: 6px; font-weight: 500; }
.meta-divider { width: 1px; height: 40px; background: rgba(13, 43, 94, 0.1); }

/* CLIENTS */
.clients { padding: 50px 0; background: var(--blanc); border-top: 1px solid rgba(13, 43, 94, 0.05); border-bottom: 1px solid rgba(13, 43, 94, 0.05); }
.clients-title {
  text-align: center; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gris-400); margin-bottom: 28px;
}
.clients-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px;
  align-items: center;
}
.clients-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px; margin: 0 auto;
}
.client-logo {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; color: var(--bleu-marine);
  text-align: center; letter-spacing: 0.02em;
  opacity: 0.7; transition: var(--transition);
  line-height: 1.3;
}
.client-logo em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  color: var(--gris-600);
  margin-top: 2px;
}
.client-logo:hover { opacity: 1; }

/* MANIFESTO */
.manifesto { padding: 120px 0; }
.manifesto-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.manifesto-lead { font-size: 1.15rem; color: var(--gris-600); margin: 30px 0 40px; line-height: 1.7; }
.manifesto-points { display: grid; gap: 24px; }
.manifesto-points li { display: flex; gap: 16px; align-items: flex-start; }
.point-icon {
  width: 48px; height: 48px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 24px; flex-shrink: 0;
}
.manifesto-points h4 { font-size: 1.15rem; margin-bottom: 4px; }
.manifesto-points p { color: var(--gris-600); font-size: 14.5px; }

.manifesto-visual { position: relative; }
.manifesto-visual img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.floating-card {
  position: absolute; background: var(--blanc);
  padding: 14px 18px; border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex; gap: 12px; align-items: center;
  border: 1px solid rgba(13, 43, 94, 0.05);
  animation: floatY 4s ease-in-out infinite;
}
.floating-card .card-icon {
  width: 36px; height: 36px;
  background: rgba(168, 197, 90, 0.15);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px;
}
.card-title { font-weight: 700; color: var(--bleu-marine); font-size: 13.5px; }
.card-sub { font-size: 11.5px; color: var(--gris-600); margin-top: 2px; }
.card-1 { top: 15%; left: -30px; }
.card-2 { bottom: 12%; right: -25px; animation-delay: 2s; }

/* SERVICES */
.services { padding: 120px 0; background: var(--blanc); }
.services-header { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative;
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid rgba(13, 43, 94, 0.06);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 39, 0.3);
}
.service-card-feature {
  background: linear-gradient(135deg, var(--bleu-marine), var(--bleu-marine-light));
  color: var(--blanc); border-color: transparent;
}
.service-card-feature h3, .service-card-feature p { color: var(--blanc); }
.service-card-feature .service-icon { color: var(--or-light); }
.service-card-feature .service-num { color: rgba(255,255,255,0.4); }
.service-card-feature .service-list li::before { background: var(--or-light); }
.service-card-feature .service-list li { color: rgba(255,255,255,0.85); }
.service-num { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--or-dark); letter-spacing: 0.05em; }
.service-icon { margin: 18px 0 20px; color: var(--bleu-marine); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.25; }
.service-card > p { color: var(--gris-600); font-size: 14px; margin-bottom: 18px; flex-grow: 1; }
.service-list { display: grid; gap: 8px; padding-top: 16px; border-top: 1px solid rgba(13, 43, 94, 0.08); }
.service-card-feature .service-list { border-top-color: rgba(255,255,255,0.15); }
.service-list li { font-size: 13px; color: var(--gris-600); padding-left: 16px; position: relative; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 2px; background: var(--or); }

/* CASES */
.cases { padding: 120px 0; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.case-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(13, 43, 94, 0.06);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.case-mockup {
  height: 240px;
  background: linear-gradient(135deg, var(--gris-100), var(--cream));
  position: relative;
  padding: 12px;
  display: flex; flex-direction: column;
}
.mockup-bar { display: flex; gap: 6px; padding: 0 0 8px; }
.mockup-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--gris-200); }
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #ffbd2e; }
.mockup-bar span:nth-child(3) { background: #28ca42; }
.mockup-screen {
  flex: 1; border-radius: 8px;
  padding: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}

/* Mockup François Djoman */
.mockup-francois {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: var(--blanc);
}
.mockup-nav { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--or-light); margin-bottom: 14px; }
.mockup-hero h4 { color: var(--blanc); font-size: 1.05rem; margin-bottom: 10px; line-height: 1.2; }
.mockup-tag { font-size: 10px; padding: 4px 10px; background: rgba(255,255,255,0.1); border-radius: 999px; display: inline-block; margin-bottom: 12px; }
.mockup-btn { display: inline-block; padding: 6px 12px; background: var(--or); color: #1a1a2e; border-radius: 6px; font-size: 11px; font-weight: 700; }

/* Mockup ModeAssist */
.mockup-modeassist {
  background: linear-gradient(135deg, #fdf2f8, #fbcfe8);
  align-items: center; justify-content: center;
  text-align: center;
}
.mockup-modeicon { font-size: 28px; margin-bottom: 6px; }
.mockup-modeassist h4 { color: #831843; font-size: 1.1rem; margin-bottom: 2px; }
.mockup-sub { font-size: 10px; color: #be185d; font-weight: 600; margin-bottom: 12px; }
.mockup-form { width: 100%; display: grid; gap: 6px; }
.mockup-input { background: var(--blanc); padding: 6px 10px; border-radius: 6px; font-size: 9px; color: var(--gris-400); text-align: left; }
.mockup-cta { background: #ec4899; color: var(--blanc); padding: 6px; border-radius: 6px; font-size: 10px; font-weight: 700; }
.mockup-ai { margin-top: 8px; font-size: 9px; color: #831843; font-weight: 600; }

/* Mockup CV */
.mockup-cv {
  background: var(--gris-100);
  align-items: center; justify-content: center;
  position: relative;
}
.cv-page {
  width: 70%; max-width: 180px;
  background: var(--blanc);
  padding: 12px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.cv-header { display: flex; gap: 8px; margin-bottom: 10px; }
.cv-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--bleu-marine); flex-shrink: 0; }
.cv-name { width: 60px; height: 8px; background: var(--gris-800); border-radius: 2px; margin-bottom: 4px; }
.cv-title { width: 40px; height: 5px; background: var(--gris-200); border-radius: 2px; }
.cv-lines { display: grid; gap: 4px; margin: 8px 0; }
.cv-line { height: 4px; background: var(--gris-200); border-radius: 2px; }
.w50 { width: 50%; } .w60 { width: 60%; } .w65 { width: 65%; } .w70 { width: 70%; } .w75 { width: 75%; } .w80 { width: 80%; } .w90 { width: 90%; }
.cv-section { height: 6px; width: 30%; background: var(--bleu-marine); border-radius: 2px; margin: 6px 0; }
.cv-stamp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  padding: 8px 16px;
  background: var(--vert-akwaba);
  color: var(--bleu-marine);
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  border: 2px solid var(--vert-dark);
}

.case-content { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.case-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--or-dark);
  padding: 4px 10px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}
.case-content h3 { font-size: 1.25rem; margin-bottom: 10px; }
.case-content > p { color: var(--gris-600); font-size: 14px; margin-bottom: 18px; flex-grow: 1; }
.case-results { display: flex; gap: 20px; padding: 16px 0; border-top: 1px solid rgba(13, 43, 94, 0.08); border-bottom: 1px solid rgba(13, 43, 94, 0.08); margin-bottom: 18px; }
.result { flex: 1; }
.result-num { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--bleu-marine); line-height: 1; }
.result-label { font-size: 11.5px; color: var(--gris-600); margin-top: 4px; display: block; }
.case-link { font-size: 14px; font-weight: 600; color: var(--bleu-marine); transition: var(--transition); margin-top: auto; }
.case-link:hover { color: var(--or-dark); letter-spacing: 0.03em; }

/* ABOUT */
.about { padding: 120px 0; background: var(--blanc); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.about-visual { position: relative; max-width: 440px; }
.about-visual img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: 30px; right: -30px;
  background: var(--bleu-marine);
  color: var(--blanc);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.badge-num { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--or-light); line-height: 1; }
.badge-label { display: block; font-size: 11px; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; }
.about-lead { font-size: 1.1rem; color: var(--gris-600); margin: 24px 0 36px; line-height: 1.7; }
.about-pillars { display: grid; gap: 28px; margin-bottom: 32px; }
.pillar { padding-left: 56px; position: relative; }
.pillar-num { position: absolute; left: 0; top: 4px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--or-dark); }
.pillar h3 { font-size: 1.15rem; margin-bottom: 6px; }
.pillar p { color: var(--gris-600); font-size: 14.5px; }
.about-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid rgba(13, 43, 94, 0.08);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  color: var(--bleu-marine);
  transition: var(--transition);
}
.social-link:hover { background: var(--bleu-marine); color: var(--blanc); transform: translateY(-2px); }

/* TESTIMONIALS */
.testimonials { padding: 120px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--blanc) 100%); }

.testimonial-featured {
  position: relative;
  max-width: 900px; margin: 0 auto 50px;
  background: linear-gradient(135deg, var(--bleu-marine), var(--bleu-marine-light));
  color: var(--blanc);
  padding: 60px 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.testimonial-featured::before {
  content: ''; position: absolute;
  width: 300px; height: 300px;
  background: var(--or); border-radius: 50%;
  top: -150px; right: -100px;
  opacity: 0.15; filter: blur(60px);
}
.featured-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem; font-weight: 700;
  color: var(--or-light);
  line-height: 1;
  position: absolute; top: 20px; left: 30px;
  opacity: 0.5;
}
.featured-text {
  position: relative; z-index: 1;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.5; margin-bottom: 30px;
  font-family: var(--font-display);
  font-weight: 400;
}
.featured-text strong { color: var(--or-light); font-weight: 600; }
.featured-author {
  display: flex; align-items: center; gap: 16px;
  position: relative; z-index: 1;
}
.featured-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--or), var(--or-dark));
  color: var(--bleu-marine);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1rem;
  font-family: var(--font-display);
}
.featured-name { font-weight: 700; font-size: 1.05rem; }
.featured-role { font-size: 13px; color: var(--or-light); margin-top: 2px; }
.featured-stars { margin-left: auto; color: var(--or-light); font-size: 1.2rem; letter-spacing: 2px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.testimonial {
  background: var(--blanc);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 43, 94, 0.06);
  position: relative;
  transition: var(--transition);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201, 162, 39, 0.2); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: var(--or); line-height: 0.5;
  margin-bottom: 8px;
}
.testimonial-text { font-size: 14.5px; color: var(--gris-800); line-height: 1.6; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar-initial {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--bleu-marine), var(--bleu-marine-light));
  color: var(--blanc);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  font-family: var(--font-display);
}
.author-name { font-weight: 700; color: var(--bleu-marine); font-size: 14px; }
.author-role { font-size: 12px; color: var(--gris-600); }

/* CALCULATOR */
.calculator { padding: 100px 0; }
.calc-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: linear-gradient(135deg, var(--bleu-marine), var(--bleu-marine-dark));
  color: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.calc-card::before {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: var(--or); border-radius: 50%;
  top: -200px; left: -200px;
  opacity: 0.1; filter: blur(80px);
}
.calc-left { padding: 60px 50px; position: relative; z-index: 1; }
.calc-title { color: var(--blanc); font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 20px 0 16px; }
.calc-title em { color: var(--or-light); }
.calc-sub { color: rgba(255,255,255,0.75); margin-bottom: 30px; }
.calc-features { display: grid; gap: 10px; }
.calc-feature { font-size: 14px; color: var(--or-light); }
.calc-right { background: var(--cream); padding: 50px; position: relative; z-index: 1; }
.calc-form h3 { font-size: 1.3rem; margin-bottom: 22px; }
.calc-options { display: grid; gap: 10px; margin-bottom: 24px; }
.calc-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--blanc);
  border: 1.5px solid rgba(13, 43, 94, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.calc-option:hover { border-color: var(--or); transform: translateX(4px); }
.calc-option:has(input:checked) { background: rgba(201, 162, 39, 0.1); border-color: var(--or); }
.calc-option input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--bleu-marine);
  cursor: pointer;
}
.calc-option span { font-size: 14.5px; font-weight: 500; color: var(--gris-800); }
.calc-option strong { color: var(--bleu-marine); font-size: 14px; font-weight: 700; white-space: nowrap; }
.calc-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px;
  background: var(--bleu-marine);
  color: var(--blanc);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.calc-total span { font-weight: 600; }
.calc-total strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--or-light);
}

/* FAQ */
.faq { padding: 120px 0; background: var(--blanc); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-left .section-title { margin-bottom: 20px; }
.faq-left p { color: var(--gris-600); margin-bottom: 28px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--cream);
  border: 1px solid rgba(13, 43, 94, 0.06);
  border-radius: var(--radius);
  padding: 0 24px;
  transition: var(--transition);
}
.faq-item[open] { background: var(--blanc); border-color: rgba(201, 162, 39, 0.3); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 22px 0;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--bleu-marine);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--or-dark);
  transition: var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 22px; color: var(--gris-600); font-size: 14.5px; line-height: 1.6; }

/* CTA FINAL */
.cta-final { padding: 80px 0; }
.cta-card {
  background: linear-gradient(135deg, var(--bleu-marine), var(--bleu-marine-dark));
  color: var(--blanc);
  padding: 80px 60px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: var(--or); border-radius: 50%;
  top: -200px; right: -150px;
  opacity: 0.15; filter: blur(60px);
}
.cta-card::after {
  content: ''; position: absolute;
  width: 300px; height: 300px;
  background: var(--vert-akwaba); border-radius: 50%;
  bottom: -150px; left: -100px;
  opacity: 0.1; filter: blur(60px);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--blanc); margin-bottom: 18px; }
.cta-title em { color: var(--or-light); }
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-actions .btn-primary { background: var(--vert-akwaba); color: var(--bleu-marine); }
.cta-actions .btn-primary:hover { background: var(--blanc); color: var(--bleu-marine); }

/* FOOTER */
.footer { background: var(--bleu-marine-dark); color: rgba(255,255,255,0.7); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand p { font-size: 14px; margin: 16px 0; line-height: 1.7; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--blanc); }
.footer-logo img { width: 44px; height: 44px; border-radius: 10px; }
.footer-logo em { color: var(--or-light); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--or); color: var(--bleu-marine); }
.footer-col h4 { font-family: var(--font-body); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--or-light); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14px; transition: var(--transition); }
.footer-col a:hover { color: var(--blanc); }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; }

/* CHATBOT */
.chatbot { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.chatbot-toggle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bleu-marine), var(--bleu-marine-light));
  color: var(--blanc);
  box-shadow: 0 8px 24px rgba(13, 43, 94, 0.35);
  display: grid; place-items: center;
  position: relative;
  transition: var(--transition);
}
.chatbot-toggle:hover { transform: scale(1.05); }
.chatbot-icon-closed, .chatbot-icon-open { position: absolute; transition: var(--transition); }
.chatbot-icon-open { opacity: 0; transform: rotate(-90deg); }
.chatbot.open .chatbot-icon-closed { opacity: 0; transform: rotate(90deg); }
.chatbot.open .chatbot-icon-open { opacity: 1; transform: rotate(0); }
.chatbot-badge {
  position: absolute; top: -4px; right: -4px;
  width: 22px; height: 22px;
  background: var(--or);
  color: var(--bleu-marine);
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
  border: 2px solid var(--cream);
}
.chatbot.open .chatbot-badge { display: none; }
.chatbot-window {
  position: absolute;
  bottom: 80px; right: 0;
  width: 360px; max-width: 90vw;
  height: 540px; max-height: 80vh;
  background: var(--blanc);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(13, 43, 94, 0.25);
  opacity: 0; pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: var(--transition);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.chatbot.open .chatbot-window { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.chatbot-header {
  background: linear-gradient(135deg, var(--bleu-marine), var(--bleu-marine-light));
  color: var(--blanc);
  padding: 18px 20px;
}
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar {
  width: 44px; height: 44px;
  background: var(--or);
  color: var(--bleu-marine);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
}
.chatbot-name { font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.chatbot-status { font-size: 11px; color: var(--vert-akwaba); font-weight: 600; }
.chatbot-role { font-size: 11.5px; color: rgba(255,255,255,0.7); margin-top: 2px; }

.chatbot-messages {
  flex: 1; overflow-y: auto;
  padding: 20px;
  display: flex; flex-direction: column;
  gap: 12px;
  background: var(--cream);
}
.msg { display: flex; }
.msg-bot { justify-content: flex-start; }
.msg-user { justify-content: flex-end; }
.msg-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.msg-bot .msg-bubble {
  background: var(--blanc);
  color: var(--gris-800);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.msg-user .msg-bubble {
  background: var(--bleu-marine);
  color: var(--blanc);
  border-bottom-right-radius: 4px;
}
.msg-suggestions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.suggestion {
  padding: 8px 14px;
  background: var(--blanc);
  border: 1px solid rgba(13, 43, 94, 0.1);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--bleu-marine);
  cursor: pointer;
  transition: var(--transition);
}
.suggestion:hover { background: var(--bleu-marine); color: var(--blanc); border-color: var(--bleu-marine); }

.msg-typing .msg-bubble {
  display: flex; gap: 4px;
  background: var(--blanc);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
}
.msg-typing span {
  width: 6px; height: 6px;
  background: var(--gris-400);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }

.chatbot-input {
  display: flex; gap: 8px;
  padding: 16px;
  background: var(--blanc);
  border-top: 1px solid rgba(13, 43, 94, 0.06);
}
.chatbot-input input {
  flex: 1; padding: 10px 16px;
  border: 1.5px solid rgba(13, 43, 94, 0.1);
  border-radius: 999px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.chatbot-input input:focus { border-color: var(--or); }
.chatbot-input button {
  width: 40px; height: 40px;
  background: var(--bleu-marine);
  color: var(--blanc);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: var(--transition);
}
.chatbot-input button:hover { background: var(--or); }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(168, 197, 90, 0.2); } 50% { box-shadow: 0 0 0 8px rgba(168, 197, 90, 0.1); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-6px); opacity: 1; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .services-grid, .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .faq-grid, .manifesto-grid, .calc-card { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 360px; margin: 0 auto; }
  .calc-left, .calc-right { padding: 40px 30px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero { padding: 100px 0 40px; }
  .hero-meta { gap: 20px; }
  .meta-divider { display: none; }
  .floating-stat { display: none; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto, .services, .cases, .about, .testimonials, .faq { padding: 80px 0; }
  .services-grid, .cases-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .about-badge { right: 10px; bottom: 10px; padding: 14px 18px; }
  .badge-num { font-size: 2rem; }
  .testimonial-featured { padding: 40px 24px; }
  .cta-card { padding: 50px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .chatbot { bottom: 20px; right: 20px; }
  .chatbot-window { width: calc(100vw - 40px); right: 0; }
  .calc-option { font-size: 13px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .featured-quote-mark { font-size: 4rem; }
}
