/* ═══════════════════════════════════════════════════════════
   COCKP'IT — Thème professionnel vert
   Palette : #8BC34A (vert clair), #1B5E20 (vert foncé),
             #ffffff (blanc), #f5f5f5 (gris clair), #1a1a1a (footer)
   Typo : Inter (body) · Poppins (titres)
═══════════════════════════════════════════════════════════ */

:root {
  --green:        #8BC34A;
  --green-dark:   #1B5E20;
  --green-mid:    #4CAF50;
  --green-pale:   #f1f8e9;
  --green-grad:   linear-gradient(135deg, #8BC34A 0%, #1B5E20 100%);
  --white:        #ffffff;
  --gray:         #f5f5f5;
  --gray-mid:     #e0e0e0;
  --gray-dark:    #9e9e9e;
  --text:         #1a1a1a;
  --text-mid:     #424242;
  --text-muted:   #757575;
  --footer-bg:    #1a1a1a;
  --border:       #e5e7eb;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --radius:       10px;
  --radius-lg:    18px;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-head:    'Poppins', 'Inter', system-ui, sans-serif;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h:     70px;
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }
svg { display: block; }

/* ── Layout ───────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-gradient { background: var(--green-grad); }
.section-gray { background: var(--gray); }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius);
  padding: 10px 22px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-align: center;
  justify-content: center;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-gradient {
  background: var(--green-grad);
  color: var(--white);
  border-image: none;
  box-shadow: 0 4px 16px rgba(27,94,32,0.25);
}
.btn-gradient:hover {
  box-shadow: 0 8px 28px rgba(27,94,32,0.35);
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn-outline {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--gray-mid);
}
.btn-outline:hover { border-color: var(--green); color: var(--green-dark); background: var(--green-pale); transform: translateY(-1px); }
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { background: #f1f8e9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

/* ── Scroll fade-in ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in-delay { transition-delay: 0.12s; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Section anatomy ──────────────────────────────────── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
  border: 1px solid rgba(139,195,74,0.35);
}
.section-tag-light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
}
.section-header h2.light { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }
.section-desc.light { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.header-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1px;
  list-style: none;
  margin-right: 10px;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 7px 10px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}
.nav-link:hover { background: var(--green-pale); color: var(--green-dark); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  padding-top: var(--header-h);
  background:
    linear-gradient(rgba(27,94,32,0.6), rgba(27,94,32,0.6)),
    url('Photo Sainte Victoire.jpg') center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0 72px;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 0;
  backdrop-filter: blur(4px);
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.hero-badge-google::before { display: none; }
.hero-badge-google { gap: 6px; cursor: default; }
.google-g-logo { flex-shrink: 0; display: block; }
.google-stars {
  color: #FFD34E;
  font-size: 0.82rem;
  letter-spacing: 1px;
  line-height: 1;
}
.google-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  text-transform: none;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-outline {
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
  transform: translateY(-1px);
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-img {
  max-height: 340px;
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Nébuleuse hero ──────────────────────────────────────── */
.nebula-svg {
  width: 100%;
  max-width: 500px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 40px rgba(139,195,74,0.14));
}
#nebCenter {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: nebPulse 3.5s ease-in-out infinite;
}
@keyframes nebPulse {
  0%, 100% { transform: scale(1);   opacity: 0.45; }
  50%       { transform: scale(1.65); opacity: 0.85; }
}

/* Strip */
.hero-strip {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: var(--gray);
}
.hero-strip .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}
.strip-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.strip-pills span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 99px;
  transition: border-color 0.18s, color 0.18s;
}
.strip-pills span:hover { border-color: var(--green); color: var(--green-dark); }

/* ═══════════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════════ */
.stats-section {
  background: var(--green-grad);
  padding: 80px 0;
}
.stats-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.stat-item {
  flex: 1;
  max-width: 340px;
  text-align: center;
  padding: 0 48px;
}
.stat-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: rgba(255,255,255,0.9);
}
.stat-icon svg { width: 26px; height: 26px; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { font-size: 0.65em; opacity: 0.8; }
.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.stat-desc { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.stat-sep { width: 1px; height: 100px; background: rgba(255,255,255,0.15); align-self: center; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   EXPERTISES
═══════════════════════════════════════════════════════ */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.expertise-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s;
  cursor: default;
}
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139,195,74,0.5);
}
.expertise-card:hover::before { transform: scaleX(1); }
.ec-icon {
  width: 54px; height: 54px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--green-dark);
  transition: background 0.26s, color 0.26s;
}
.ec-icon svg { width: 26px; height: 26px; }
.expertise-card:hover .ec-icon {
  background: var(--green-grad);
  color: var(--white);
}
.expertise-card h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.expertise-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 18px;
}
.ec-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}
.expertise-card:hover .ec-link { gap: 8px; color: var(--green-mid); }

/* ═══════════════════════════════════════════════════════
   PREMIUM STEPS
═══════════════════════════════════════════════════════ */
.premium-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin-bottom: 52px;
}
.premium-step {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  transition: background 0.25s, transform 0.25s var(--ease);
}
.premium-step:hover { background: rgba(255,255,255,0.16); transform: translateY(-5px); }
.ps-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 14px;
}
.ps-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}
.ps-icon svg { width: 22px; height: 22px; }
.premium-step h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.premium-step p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.68;
  margin-bottom: 16px;
}
.premium-step ul { list-style: none; }
.premium-step li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0 4px 18px;
  position: relative;
}
.premium-step li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.4;
}
.ps-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  margin-top: 0;
  align-self: center;
  color: rgba(255,255,255,0.25);
}
.ps-arrow svg { width: 20px; height: 20px; }
.premium-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════
   NOTRE HISTOIRE
═══════════════════════════════════════════════════════ */
.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.histoire-content .section-tag { margin-bottom: 14px; }
.histoire-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 22px;
}
.histoire-photo img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════════════
   À PROPOS (legacy styles kept for shared classes)
═══════════════════════════════════════════════════════ */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.apropos-content .section-tag { margin-bottom: 14px; }
.apropos-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 22px;
}
.apropos-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.apropos-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.apropos-founders { display: flex; flex-direction: column; gap: 14px; }
.founder-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.founder-item:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.founder-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-grad);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.founder-info strong { display: block; font-size: 0.92rem; color: var(--text); }
.founder-info span { font-size: 0.78rem; color: var(--text-muted); }

/* Quote block */
.apropos-quote-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px 36px;
  position: relative;
  box-shadow: var(--shadow);
}
.quote-decoration {
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.7;
  color: var(--green);
  opacity: 0.18;
  position: absolute;
  top: 28px; left: 32px;
  pointer-events: none;
  user-select: none;
}
blockquote {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
cite {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  font-style: normal;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.apropos-values {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  position: relative;
  z-index: 1;
}
.av-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
}
.av-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139,195,74,0.5);
}
.tc-stars { display: flex; gap: 3px; }
.tc-stars span { color: var(--green); font-size: 1rem; }
.tc-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.tc-author { border-top: 1px solid var(--border); padding-top: 16px; }
.tc-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.tc-company { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   FINANCEMENT
═══════════════════════════════════════════════════════ */
.financing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.financing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s;
}
.financing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139,195,74,0.5);
}
.fc-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  margin-bottom: 20px;
  transition: background 0.26s, color 0.26s;
}
.fc-icon svg { width: 24px; height: 24px; }
.financing-card:hover .fc-icon { background: var(--green-grad); color: var(--white); }
.financing-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.financing-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.72; }
.financing-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--green-pale);
  border: 1px solid rgba(139,195,74,0.35);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  overflow: hidden;
}
.cib-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 220px;
  padding: 18px 24px;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-right: 1px solid rgba(139,195,74,0.25);
}
.cib-item:last-child { border-right: none; }
.cib-item svg { width: 17px; height: 17px; color: var(--green-dark); flex-shrink: 0; }
.cib-item a { color: var(--green-dark); font-weight: 500; }
.cib-item a:hover { text-decoration: underline; }
.cib-item em { color: var(--text-muted); }

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-map-block {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  min-height: 480px;
}
.contact-map-block iframe {
  flex: 1;
  display: block;
  min-height: 380px;
}
.map-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 0;
  padding: 16px 24px;
  font-size: 0.95rem;
}
.map-cta svg { width: 17px; height: 17px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.ci-item:last-child { border-bottom: none; }
.ci-icon {
  width: 38px; height: 38px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.06em; }
.ci-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.ci-item a { color: var(--green-dark); font-weight: 500; }
.ci-item a:hover { color: var(--green-mid); text-decoration: underline; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px 40px 36px;
  box-shadow: var(--shadow);
}
.cf-group { margin-bottom: 20px; }
.cf-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.cf-group label span { color: var(--green-dark); }
.cf-group input,
.cf-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  resize: vertical;
}
.cf-group input:focus,
.cf-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(139,195,74,0.18);
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: var(--gray-mid); }
.cf-submit { width: 100%; margin-bottom: 12px; }
.cf-submit svg { width: 17px; height: 17px; }
.cf-note { font-size: 0.76rem; color: var(--text-muted); text-align: center; }
.cf-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: var(--green-pale);
  border: 1px solid rgba(139,195,74,0.4);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: 14px;
}
.cf-success.show { display: flex; }
.cf-success svg { width: 20px; height: 20px; color: var(--green-dark); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer { background: var(--footer-bg); padding-top: 68px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-linkedin:hover { color: var(--green); }
.footer-linkedin svg { width: 17px; height: 17px; }
.footer-col strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.86rem; color: rgba(255,255,255,0.48); }
.footer-col a { color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
/* ═══════════════════════════════════════════════════════
   BLOG — liste des articles
═══════════════════════════════════════════════════════ */
.blog-hero {
  background: var(--green-grad);
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  text-align: center;
}
.blog-hero .section-tag { color: rgba(255,255,255,0.7); }
.blog-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: 0.75rem; }
.blog-hero p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.blog-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-grad);
  flex-shrink: 0;
}
.blog-card-img svg { width: 56px; height: 56px; color: rgba(255,255,255,0.9); stroke: rgba(255,255,255,0.9); }
.blog-card-img-alt { background: linear-gradient(135deg, #33691E 0%, #8BC34A 100%); }
.blog-card-img-alt2 { background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%); }

.blog-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 50px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.blog-date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.blog-card-body h2 { font-family: var(--font-head); font-size: 1.08rem; color: var(--text); line-height: 1.45; margin-bottom: 10px; }
.blog-card-body p  { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 18px; }

/* ═══════════════════════════════════════════════════════
   ARTICLE — page individuelle
═══════════════════════════════════════════════════════ */
.article-hero {
  background: var(--green-grad);
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
}
.article-hero-inner { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.article-breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.article-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.article-breadcrumb a:hover { color: #fff; }
.article-cat-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-dark); background: rgba(255,255,255,0.9);
  border-radius: 50px; padding: 3px 12px; margin-bottom: 14px;
}
.article-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.article-meta { font-size: 0.85rem; color: rgba(255,255,255,0.65); display: flex; gap: 20px; flex-wrap: wrap; }
.article-meta strong { color: rgba(255,255,255,0.85); }

.article-body { max-width: 820px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem; }
.article-body h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--green-dark);
  margin: 2.5rem 0 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--green-pale);
}
.article-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--text);
  margin: 1.75rem 0 0.6rem;
}
.article-body p  { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.article-body li { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 0.35rem; }
.article-body strong { color: var(--text); }
.article-body a { color: var(--green-dark); text-decoration: underline; }
.article-body a:hover { color: var(--green); }

.article-cta-box {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 2.5rem 0;
}
.article-cta-box p { margin-bottom: 1rem; font-weight: 500; color: var(--green-dark); }

.article-nav { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* ── Responsive blog ─────────────────────────────────── */
@media (max-width: 900px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .blog-grid { grid-template-columns: 1fr; } }

.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal-links a,
.footer-legal-links .footer-cookie-btn {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover,
.footer-legal-links .footer-cookie-btn:hover { color: var(--green); }
.footer-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
}

/* ── Bandeau cookies ─────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  border-top: 2px solid var(--green);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  padding: 16px 24px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  flex: 1;
  min-width: 220px;
}
.cookie-text a { color: var(--green); text-decoration: underline; }
.cookie-text a:hover { color: #a5d66a; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 9px 22px; font-size: 0.88rem; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .financing-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ps-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .cib-item { border-right: none; border-bottom: 1px solid rgba(139,195,74,0.25); }
  .cib-item:last-child { border-bottom: none; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px 40px;
    gap: 0;
    border-top: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
    z-index: 199;
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; margin: 0 0 24px; }
  .nav-link { font-size: 1rem; padding: 12px 16px; border-radius: 8px; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .hero-visual { order: -1; }
  .hero-logo-img { max-height: 200px; }
  .nebula-svg { max-width: 320px; }
  .apropos-grid { grid-template-columns: 1fr; gap: 48px; }
  .histoire-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { flex-direction: column; align-items: center; gap: 44px; }
  .stat-sep { display: none; }
  .stat-item { padding: 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 68px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .financing-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .premium-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-strip .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contact-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 36px; }
  .apropos-quote-block { padding: 36px 24px 28px; }
  .apropos-values { gap: 14px; }
}

/* ═══════════════════════════════════════════════════════
   FLOATING BUBBLE — bulle flottante droite
═══════════════════════════════════════════════════════ */
.float-bubble {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8000;
  display: flex;
  align-items: center;
  flex-direction: row-reverse; /* icône à droite, contenu s'ouvre à gauche */
  background: linear-gradient(135deg, #8BC34A 0%, #1B5E20 100%);
  border-radius: 56px;
  box-shadow: 0 6px 28px rgba(27,94,32,0.38), 0 2px 8px rgba(0,0,0,0.14);
  max-width: 56px;
  height: 56px;
  overflow: hidden;
  cursor: pointer;
  transition: max-width 0.42s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
  animation: fb-pulse 3.5s ease infinite;
}
.float-bubble:hover {
  max-width: 310px;
  box-shadow: 0 10px 44px rgba(27,94,32,0.48), 0 2px 8px rgba(0,0,0,0.14);
  animation: none;
}
@keyframes fb-pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(27,94,32,0.38), 0 2px 8px rgba(0,0,0,0.14); }
  50%       { box-shadow: 0 6px 28px rgba(27,94,32,0.38), 0 0 0 9px rgba(139,195,74,0.16), 0 2px 8px rgba(0,0,0,0.14); }
}

.fb-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fb-icon svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.95); }

.fb-expand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 0 10px 0 18px;
  min-width: 215px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.22s ease 0.18s, transform 0.22s ease 0.18s;
  white-space: nowrap;
}
.float-bubble:hover .fb-expand {
  opacity: 1;
  transform: translateX(0);
}

.fb-number {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1;
}
.fb-number:hover { color: rgba(255,255,255,0.82); }

.fb-cta {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s;
}
.fb-cta:hover { background: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.8); }

@media (max-width: 600px) { .float-bubble { display: none; } }

/* ═══════════════════════════════════════════════════════
   EXIT INTENT POPUP
═══════════════════════════════════════════════════════ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  animation: exitFadeIn 0.25s ease;
}
.exit-overlay[hidden] { display: none !important; }
@keyframes exitFadeIn { from { opacity: 0; } to { opacity: 1; } }

.exit-modal {
  background: #fff;
  border-radius: 22px;
  padding: 44px 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  animation: exitSlideUp 0.3s ease;
}
@keyframes exitSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: #757575;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.exit-close:hover { background: #e0e0e0; color: #1a1a1a; }

.exit-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8BC34A 0%, #1B5E20 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.exit-icon-wrap svg { width: 28px; height: 28px; color: #fff; stroke: #fff; }

.exit-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.2;
}
.exit-subtitle {
  font-size: 0.97rem;
  color: #616161;
  text-align: center;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.exit-form { display: flex; flex-direction: column; gap: 10px; }
.exit-input {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.exit-input:focus { border-color: #8BC34A; box-shadow: 0 0 0 3px rgba(139,195,74,0.15); }
.exit-input::placeholder { color: #9e9e9e; }
.exit-submit {
  background: linear-gradient(135deg, #8BC34A 0%, #1B5E20 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 2px;
}
.exit-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.exit-note { text-align: center; font-size: 0.76rem; color: #bdbdbd; margin-top: 12px; }
.exit-success {
  text-align: center;
  color: #1B5E20;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px 0;
  display: none;
}
.exit-success.show { display: block; }

@media (max-width: 520px) {
  .exit-modal { padding: 36px 24px 28px; border-radius: 16px; }
  .exit-title { font-size: 1.3rem; }
}
