/* =============================================================
   BONKANO SOLUTIONS — Design System
   Palette : Bleu foncé · Blanc · Gris clair · Orange (accent)
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Couleurs de marque */
  --navy-950: #050B1A;
  --navy-900: #071127;
  --navy-800: #0A1834;
  --navy-700: #0F2350;
  --navy-600: #16305f;
  --blue-600: #1D4ED8;
  --blue-500: #2563EB;
  --blue-400: #3B82F6;
  --cyan-400: #22D3EE;

  --accent: #FF6A2B;
  --accent-600: #F5551D;
  --accent-400: #FF8A55;

  --white: #FFFFFF;
  --gray-50: #F6F8FC;
  --gray-100: #EEF2F9;
  --gray-200: #E2E8F2;
  --gray-300: #CBD5E4;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;

  /* Sémantique */
  --text: #0B1730;
  --text-soft: #475569;
  --bg: #FFFFFF;
  --border: #E6EBF3;

  /* Typo */
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Rayons & ombres */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;
  --shadow-sm: 0 1px 2px rgba(11,23,48,.06), 0 2px 8px rgba(11,23,48,.04);
  --shadow-md: 0 10px 30px rgba(11,23,48,.08);
  --shadow-lg: 0 24px 60px rgba(11,23,48,.14);
  --shadow-accent: 0 12px 30px rgba(255,106,43,.35);
  --shadow-blue: 0 12px 30px rgba(37,99,235,.30);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 120px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --grad-brand: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  --grad-accent: linear-gradient(135deg, var(--accent), var(--accent-600));
  --grad-dark: linear-gradient(160deg, var(--navy-800), var(--navy-950));
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: var(--text); }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; border-radius: 4px; }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-sm { max-width: 820px; }
.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }
.bg-soft { background: var(--gray-50); }
.bg-dark { background: var(--grad-dark); color: #E7EEFA; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }
.text-center { text-align: center; }
.grid { display: grid; gap: clamp(20px, 3vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-sm { gap: 12px; }

/* ---------- 4. Typographie utilitaires ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600);
}
.bg-dark .eyebrow { color: var(--cyan-400); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
.h2 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); }
.h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-soft); }
.bg-dark .lead { color: #AFC0DE; }
.muted { color: var(--text-soft); }
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.left { margin-inline: 0; }
.section-head .h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }
.grad-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-text-accent { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- 5. Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: var(--r-full); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255,106,43,.45); }
.btn-blue { background: var(--blue-500); color: #fff; box-shadow: var(--shadow-blue); }
.btn-blue:hover { transform: translateY(-3px); background: var(--blue-600); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); background: var(--navy-700); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-3px); }
.bg-dark .btn-outline { border-color: rgba(255,255,255,.25); color: #fff; }
.bg-dark .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.16); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- 6. Header / Navigation ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
  padding-block: 14px;
}
.header.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--white); letter-spacing: -.02em; }
.header.scrolled .brand { color: var(--navy-800); }
.brand .logo { width: 42px; height: 42px; flex: none; }
.brand small { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .22em; color: var(--accent); text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > .btn { display: none; } /* visible uniquement dans le menu mobile */
.nav-link {
  position: relative; padding: 10px 14px; border-radius: var(--r-full);
  font-weight: 500; font-size: .96rem; color: rgba(255,255,255,.86); transition: color .2s, background .2s;
}
.header.scrolled .nav-link { color: var(--gray-700); }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.12); }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { color: var(--blue-600); background: var(--gray-100); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Dropdown */
.has-drop { position: relative; }
.drop-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 10px; min-width: 300px;
  opacity: 0; visibility: hidden; transition: all .25s var(--ease); z-index: 20;
}
.has-drop:hover .drop-menu, .has-drop:focus-within .drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop-item { display: flex; gap: 12px; padding: 12px; border-radius: var(--r-sm); transition: background .2s; }
.drop-item:hover { background: var(--gray-50); }
.drop-item .di-icon { width: 40px; height: 40px; border-radius: 10px; flex: none; display: grid; place-items: center; background: var(--gray-100); color: var(--blue-600); }
.drop-item strong { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--text); }
.drop-item span { font-size: .82rem; color: var(--text-soft); }

/* Burger */
.burger { display: none; width: 46px; height: 46px; border: none; background: rgba(255,255,255,.12); border-radius: 12px; cursor: pointer; position: relative; }
.header.scrolled .burger { background: var(--gray-100); }
.burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.header.scrolled .burger span { background: var(--navy-800); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.nav-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero { position: relative; padding-top: 168px; padding-bottom: clamp(80px, 10vw, 130px); background: var(--grad-dark); color: #E7EEFA; overflow: hidden; }
.hero::before { /* grille */
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.hero .glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; pointer-events: none; }
.hero .glow.g1 { width: 520px; height: 520px; background: radial-gradient(circle, #2563EB, transparent 65%); top: -160px; right: -80px; }
.hero .glow.g2 { width: 460px; height: 460px; background: radial-gradient(circle, #FF6A2B, transparent 65%); bottom: -180px; left: -100px; opacity: .4; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.1rem); color: #fff; }
.hero .lead { margin-top: 22px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: #B8C7E4; }
.hero-badge svg { width: 18px; height: 18px; color: var(--cyan-400); }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--r-full); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); font-size: .85rem; font-weight: 500; color: #C9D6F0; margin-bottom: 26px; }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,106,43,.25); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); backdrop-filter: blur(10px); padding: 26px; box-shadow: var(--shadow-lg); }
.hero-card .hc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero-card .hc-title { font-family: var(--font-head); font-weight: 600; color: #fff; }
.hc-dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-left: 6px; background: rgba(255,255,255,.25); }
.hc-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.08); }
.hc-row .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(37,99,235,.2); color: var(--cyan-400); flex: none; }
.hc-row .txt { flex: 1; }
.hc-row .txt strong { display: block; color: #fff; font-size: .92rem; font-family: var(--font-head); }
.hc-row .txt span { font-size: .8rem; color: #93A6CC; }
.hc-row .val { font-family: var(--font-head); font-weight: 700; color: var(--cyan-400); }
.hero-float { position: absolute; background: #fff; color: var(--navy-800); border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; animation: float 5s ease-in-out infinite; }
.hero-float.f1 { top: -26px; left: -26px; }
.hero-float.f2 { bottom: -26px; right: -18px; animation-delay: 1.5s; }
.hero-float .hf-ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #fff; }
.hero-float strong { display: block; font-family: var(--font-head); font-size: 1.1rem; }
.hero-float span { font-size: .78rem; color: var(--gray-500); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- 8. Cartes & composants ---------- */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .icon-box { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; color: #fff; }
.icon-blue { background: var(--grad-brand); }
.icon-accent { background: var(--grad-accent); }
.icon-navy { background: var(--grad-dark); }
.icon-box svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: .98rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--blue-600); }
.card .card-link svg { width: 16px; height: 16px; transition: transform .25s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Service card (dark accent top) */
.service-card { position: relative; overflow: hidden; }
.service-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.service-card:hover::after { transform: scaleX(1); }

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip { font-size: .8rem; padding: 6px 12px; border-radius: var(--r-full); background: var(--gray-100); color: var(--gray-700); font-weight: 500; }
.bg-dark .chip { background: rgba(255,255,255,.08); color: #C9D6F0; }

/* Feature list */
.feat-list { display: grid; gap: 14px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; }
.feat-list .fi { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; background: rgba(34,197,94,.12); color: #16A34A; margin-top: 2px; }
.feat-list .fi svg { width: 15px; height: 15px; }
.bg-dark .feat-list .fi { background: rgba(34,211,238,.14); color: var(--cyan-400); }

/* Split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
.media-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--grad-dark); aspect-ratio: 4/3; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 10px; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.1rem); line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bg-dark .stat .num { background: linear-gradient(135deg,#fff,var(--cyan-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { margin-top: 10px; color: var(--text-soft); font-size: .95rem; }
.bg-dark .stat .label { color: #AFC0DE; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; }
.step .step-num { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; background: #fff; border: 1.5px solid var(--border); color: var(--blue-600); box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: .95rem; }
.steps.connected .step:not(:last-child)::after { content: ""; position: absolute; top: 27px; left: 66px; right: -14px; height: 2px; background: repeating-linear-gradient(90deg, var(--gray-300) 0 6px, transparent 6px 12px); }

/* Logos strip */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 56px); }
.logos .lg { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--gray-400); letter-spacing: -.02em; opacity: .85; }

/* Testimonials */
.quote-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.quote-card .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 14px; }
.quote-card blockquote { font-size: 1.05rem; color: var(--text); line-height: 1.6; flex: 1; }
.quote-card .who { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; background: var(--grad-brand); flex: none; }
.quote-card .who strong { display: block; font-family: var(--font-head); }
.quote-card .who span { font-size: .85rem; color: var(--text-soft); }

/* CTA band */
.cta-band { position: relative; background: var(--grad-dark); border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); overflow: hidden; text-align: center; color: #fff; }
.cta-band::before { content: ""; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(37,99,235,.5), transparent 65%); top: -200px; right: -120px; filter: blur(60px); }
.cta-band::after { content: ""; position: absolute; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,106,43,.4), transparent 65%); bottom: -180px; left: -100px; filter: blur(60px); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band .h2 { color: #fff; }
.cta-band p { color: #B8C7E4; max-width: 560px; margin: 16px auto 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Accordion / FAQ */
.accordion { max-width: 820px; margin-inline: auto; }
.acc-item { border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 14px; background: #fff; overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.acc-item.open { box-shadow: var(--shadow-md); border-color: transparent; }
.acc-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--text); }
.acc-q .plus { width: 30px; height: 30px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--gray-100); color: var(--blue-600); transition: transform .3s, background .3s, color .3s; }
.acc-item.open .plus { background: var(--grad-accent); color: #fff; transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-a-inner { padding: 0 24px 24px; color: var(--text-soft); }

/* Badge / tag */
.tag { display: inline-block; padding: 6px 14px; border-radius: var(--r-full); font-size: .78rem; font-weight: 600; font-family: var(--font-head); letter-spacing: .03em; }
.tag-blue { background: rgba(37,99,235,.1); color: var(--blue-600); }
.tag-accent { background: rgba(255,106,43,.12); color: var(--accent-600); }
.tag-green { background: rgba(22,163,74,.12); color: #16A34A; }

/* Portfolio */
.work-card { border-radius: var(--r-lg); overflow: hidden; background: #fff; border: 1px solid var(--border); transition: transform .3s var(--ease), box-shadow .3s; height: 100%; }
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work-thumb { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; color: #fff; overflow: hidden; }
.work-thumb .wt-label { position: relative; z-index: 2; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; text-align: center; padding: 20px; }
.work-body { padding: 24px; }
.work-body .tag { margin-bottom: 12px; }
.work-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.work-body p { color: var(--text-soft); font-size: .95rem; }
.work-metrics { display: flex; gap: 20px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.work-metrics div strong { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--blue-600); }
.work-metrics div span { font-size: .78rem; color: var(--text-soft); }

/* Blog cards */
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; height: 100%; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-thumb { aspect-ratio: 16/9; display: grid; place-items: center; color: #fff; }
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .82rem; color: var(--text-soft); display: flex; gap: 12px; margin-bottom: 12px; }
.post-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.post-body p { color: var(--text-soft); font-size: .95rem; flex: 1; }
.post-body .card-link { color: var(--blue-600); font-family: var(--font-head); font-weight: 600; font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; margin-top: 16px; }

/* Page hero (inner pages) */
.page-hero { position: relative; padding-top: 150px; padding-bottom: clamp(50px, 7vw, 80px); background: var(--grad-dark); color: #E7EEFA; overflow: hidden; text-align: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, #000 40%, transparent 100%); }
.page-hero .glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(90px); opacity: .4; background: radial-gradient(circle, var(--blue-500), transparent 65%); top: -180px; left: 50%; transform: translateX(-50%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-top: 16px; }
.page-hero p { max-width: 640px; margin: 18px auto 0; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .88rem; color: #93A6CC; margin-top: 24px; }
.breadcrumb a:hover { color: var(--cyan-400); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* Forms */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; margin-bottom: 8px; }
.field label .req { color: var(--accent-600); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--gray-50); transition: border-color .2s, box-shadow .2s, background .2s; font-size: 1rem;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: .85rem; color: var(--text-soft); margin-top: 6px; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--text-soft); }
.checkbox input { width: auto; margin-top: 4px; }
.form-alert { display: none; padding: 16px; border-radius: var(--r-sm); margin-bottom: 20px; font-weight: 500; }
.form-alert.show { display: block; }
.form-alert.ok { background: rgba(22,163,74,.1); color: #15803D; border: 1px solid rgba(22,163,74,.25); }
.form-alert.err { background: rgba(220,38,38,.08); color: #B91C1C; border: 1px solid rgba(220,38,38,.2); }
.field.error input, .field.error textarea, .field.error select { border-color: #DC2626; background: rgba(220,38,38,.03); }

/* Contact info items */
.info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.info-item .ii-ic { width: 50px; height: 50px; flex: none; border-radius: 14px; display: grid; place-items: center; background: var(--gray-100); color: var(--blue-600); }
.bg-dark .info-item .ii-ic { background: rgba(255,255,255,.08); color: var(--cyan-400); }
.info-item strong { display: block; font-family: var(--font-head); margin-bottom: 3px; }
.info-item a, .info-item p { color: var(--text-soft); }
.bg-dark .info-item strong { color: #fff; }
.bg-dark .info-item a, .bg-dark .info-item p { color: #AFC0DE; }
.info-item a:hover { color: var(--blue-600); }

/* Values / icon rows */
.value-item { display: flex; gap: 16px; padding: 20px; border-radius: var(--r-md); transition: background .25s; }
.value-item:hover { background: var(--gray-50); }
.value-item .v-ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; }
.value-item h3 { font-size: 1.08rem; margin-bottom: 6px; }
.value-item p { font-size: .93rem; color: var(--text-soft); }

/* ---------- 9. Footer ---------- */
.footer { background: var(--navy-950); color: #9FB0CE; padding-top: clamp(56px, 7vw, 84px); }
.footer .brand { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer p { font-size: .93rem; margin-top: 18px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: .93rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer .socials { display: flex; gap: 12px; margin-top: 22px; }
.footer .socials a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.06); transition: background .25s, transform .25s; }
.footer .socials a:hover { background: var(--blue-500); color: #fff; transform: translateY(-3px); }
.footer .socials svg { width: 20px; height: 20px; }
.newsletter-mini { display: flex; gap: 8px; margin-top: 18px; }
.newsletter-mini input { flex: 1; padding: 12px 14px; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: #fff; font-size: .9rem; }
.newsletter-mini input::placeholder { color: #7A8CAD; }
.newsletter-mini button { border: none; background: var(--grad-accent); color: #fff; width: 48px; border-radius: var(--r-sm); cursor: pointer; display: grid; place-items: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- 10. Floating widgets ---------- */
.fab-wa { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.5); transition: transform .25s; animation: pulse 2.4s infinite; }
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 32px; height: 32px; color: #fff; }
@keyframes pulse { 0% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); } }
.to-top { position: fixed; bottom: 96px; right: 30px; z-index: 89; width: 46px; height: 46px; border-radius: 50%; background: var(--navy-800); color: #fff; display: grid; place-items: center; border: none; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .3s var(--ease); box-shadow: var(--shadow-md); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* Chat bubble */
.chat-hint { position: fixed; bottom: 30px; right: 100px; z-index: 90; background: #fff; padding: 10px 16px; border-radius: var(--r-full); box-shadow: var(--shadow-lg); font-size: .88rem; font-weight: 500; color: var(--navy-800); display: flex; align-items: center; gap: 8px; animation: float 4s ease-in-out infinite; }
.chat-hint::after { content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 12px; height: 12px; background: #fff; }
.chat-hint .close-hint { border: none; background: none; cursor: pointer; color: var(--gray-400); font-size: 1.1rem; line-height: 1; }

/* ---------- 11. Animations (reveal) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-float, .fab-wa, .chat-hint { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 12. Responsive ---------- */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps.connected .step::after { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}
@media (max-width: 760px) {
  .nav-menu, .nav-actions .btn { display: none; }
  .burger { display: block; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); flex-direction: column; align-items: stretch;
    background: #fff; padding: 96px 24px 30px; gap: 6px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .35s var(--ease); z-index: 99; overflow-y: auto;
  }
  body.nav-open .nav-menu { display: flex; transform: translateX(0); }
  .nav-link { color: var(--gray-700); font-size: 1.05rem; padding: 14px 16px; }
  .header.scrolled .nav-link { color: var(--gray-700); }
  .nav-menu .btn { display: inline-flex; margin-top: 12px; }
  .has-drop .drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 12px; min-width: 0; }
  .has-drop > .nav-link::after { content: " ▾"; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(5,11,26,.5); z-index: 98; opacity: 0; visibility: hidden; transition: .3s; }
  body.nav-open .nav-overlay { opacity: 1; visibility: visible; }
  .field-row { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .chat-hint { display: none; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* ---------- 13. Bandeau de consentement cookies (RGPD) ---------- */
.cookie-banner {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 140%);
  width: min(680px, calc(100vw - 32px)); z-index: 200;
  background: var(--navy-800); color: #fff;
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  transition: transform .5s var(--ease);
}
.cookie-banner.show { transform: translate(-50%, 0); }
.cookie-banner p { margin: 0 0 16px; font-size: .92rem; line-height: 1.6; color: rgba(255,255,255,.86); }
.cookie-banner a { color: var(--accent-400); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: .9rem; }
.cookie-actions .btn-ghost {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28);
}
.cookie-actions .btn-ghost:hover { background: rgba(255,255,255,.08); }
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
}
@media (max-width: 480px) {
  .cookie-banner { bottom: 0; width: 100vw; border-radius: var(--r-md) var(--r-md) 0 0; }
  .cookie-actions .btn { flex: 1 1 auto; text-align: center; justify-content: center; }
}
