/* ============================================
   BSG HOLDING — AI Fund Inspired Design
   Clean white + forest green + gold
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #0D2B1A;
  --forest-mid: #1A5C30;
  --forest-light: #2D8A4E;
  --gold: #C9A452;
  --gold-dark: #A67C2E;
  --gold-pale: #F5EDD8;
  --white: #FFFFFF;
  --bg: #F8F9FA;
  --text: #0A1F10;
  --text-muted: #5A7A65;
  --border: rgba(13, 43, 26, 0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 12px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 72px;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img { height: 38px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-link:hover { color: var(--forest); }

.nav-cta-btn {
  background: var(--forest);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-decoration: none;
  transition: all var(--transition);
}
.nav-cta-btn:hover { background: var(--forest-mid); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.bar { width: 24px; height: 2px; background: var(--text); transition: var(--transition); }

/* ---- HERO ---- */
.hero {
  min-height: calc(100vh - 72px);
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  border: 1px solid rgba(201,164,82,0.3);
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  border: 1px solid rgba(201,164,82,0.3);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-title-italic {
  font-style: italic;
  background: linear-gradient(135deg, var(--forest) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--forest);
  color: white;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 100px;
  transition: all var(--transition);
}

.cta-button:hover { background: var(--forest-mid); transform: translateY(-1px); }

.cta-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 100px;
  border: 1.5px solid var(--forest);
  transition: all var(--transition);
}
.cta-button-outline:hover { background: var(--forest); color: white; }

/* Hero visual — split CTA cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-cta-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-cta-card:first-child {
  background: var(--forest);
  color: white;
}

.hero-cta-card:last-child {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--forest);
}

.hero-cta-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }

.hero-cta-card-title {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-cta-card-title svg { opacity: 0.7; }

.hero-cta-card-desc {
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.hero-stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ---- À PROPOS ---- */
.about {
  padding: 7rem 2rem;
  background: var(--forest);
  color: white;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: white;
  margin-bottom: 3.5rem;
  letter-spacing: -0.01em;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-text h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.about-text h3:first-child { margin-top: 0; }

.about-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pillar {
  padding: 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.pillar:hover { background: rgba(255,255,255,0.1); }

.pillar-icon {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.pillar h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.35rem;
}

.pillar p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ---- SECTEURS ---- */
.sectors {
  padding: 7rem 2rem;
  background: var(--white);
}

.sectors .container {
  max-width: 1200px;
  margin: 0 auto;
}

.sectors-header { margin-bottom: 3.5rem; }

.sectors h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sector-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.sector-card:last-child { border-right: none; }

.sector-card:hover { background: var(--forest); }
.sector-card:hover h3,
.sector-card:hover p { color: white; }
.sector-card:hover .sector-icon { color: var(--gold); border-color: rgba(201,164,82,0.4); }

.sector-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.sector-icon svg { width: 20px; height: 20px; }

.sector-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.sector-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: color var(--transition);
}

/* ---- 3-STEP PROCESS ---- */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.process-step:nth-child(1) { background: var(--forest); }
.process-step:nth-child(2) { background: var(--forest-mid); }
.process-step:nth-child(3) { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%); }

.process-step:nth-child(1) .process-icon,
.process-step:nth-child(2) .process-icon { color: var(--gold); }
.process-step:nth-child(3) .process-icon { color: var(--forest); }

.process-step:nth-child(1) h3,
.process-step:nth-child(2) h3 { color: white; }
.process-step:nth-child(3) h3 { color: var(--forest); }

.process-step:nth-child(1) p,
.process-step:nth-child(2) p { color: rgba(255,255,255,0.7); }
.process-step:nth-child(3) p { color: rgba(13,43,26,0.75); }

.process-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step:nth-child(3) .process-icon { border-color: rgba(13,43,26,0.2); }

.process-next {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.process-step:last-child .process-next { display: none; }

.process-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.process-step p {
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ---- SOCIÉTÉS ---- */
.companies {
  padding: 7rem 2rem;
  background: var(--bg);
}

.companies .container {
  max-width: 1200px;
  margin: 0 auto;
}

.companies h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.companies-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

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

.company-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.company-card:hover {
  box-shadow: 0 12px 40px rgba(13,43,26,0.1);
  transform: translateY(-4px);
}

.company-logo {
  padding: 2rem 2rem 0;
  height: 80px;
  display: flex;
  align-items: center;
}

.company-logo img {
  max-height: 44px;
  max-width: 140px;
  object-fit: contain;
}

.coming-soon-icon {
  color: var(--gold);
  display: flex;
}

.company-info {
  padding: 1.5rem 2rem 2rem;
}

.company-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.company-description {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.company-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: gap var(--transition);
}
.company-link:hover { gap: 0.6rem; }

.coming-soon-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border-radius: 100px;
  border: 1px solid rgba(201,164,82,0.3);
}

/* ---- TECHNOLOGIE ---- */
.technology {
  padding: 7rem 2rem;
  background: white;
}

.technology .container {
  max-width: 1200px;
  margin: 0 auto;
}

.technology h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 3rem;
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.tech-text h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
  margin-top: 1.5rem;
}
.tech-text h3:first-child { margin-top: 0; }

.tech-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.tech-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tech-logo {
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--transition);
}
.tech-logo:hover { background: var(--forest); color: var(--gold); border-color: var(--forest); }

/* ---- ÉQUIPE ---- */
.team {
  padding: 7rem 2rem;
  background: var(--bg);
}

.team .container {
  max-width: 1200px;
  margin: 0 auto;
}

.team h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 3rem;
}

.team-carousel { position: relative; }

.carousel-container { overflow: hidden; }

/* Carousel track — grid, pages controlled via JS show/hide */
.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Each team-member card (generated by script) */
.team-member {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.team-member:hover {
  box-shadow: 0 8px 32px rgba(13,43,26,0.1);
  transform: translateY(-3px);
}

.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

/* Inner card wrapper generated by script */
.member-photo {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.member-info {
  padding: 1.5rem;
}

.member-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.member-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.member-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.member-bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.member-social {
  display: flex;
  gap: 0.5rem;
}

/* Keep old .team-card classes for backward compat */
.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.team-card:hover,
.team-member:hover .member-info {
  box-shadow: 0 8px 32px rgba(13,43,26,0.1);
}

.team-photo {
  width: 100%; height: 240px;
  object-fit: cover;
  object-position: top;
}

.team-info { padding: 1.5rem; }

.team-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  line-height: 1;
}

.social-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
}
.carousel-btn:hover { background: var(--forest); color: white; border-color: var(--forest); }

.carousel-dots { display: flex; gap: 0.4rem; align-items: center; margin-top: 1rem; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  transition: all var(--transition);
}
.carousel-dot.active { background: var(--forest); width: 24px; border-radius: 4px; }

/* ---- CONTACT ---- */
.contact {
  padding: 7rem 2rem;
  background: white;
}

.contact .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 3.5rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
}

.contact-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.contact-item {
  margin-bottom: 1.25rem;
}

.contact-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-form h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  background: white;
  box-shadow: 0 0 0 3px rgba(13,43,26,0.06);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--forest);
}

.checkmark { display: none; }

.checkbox-label a { color: var(--forest); }

.submit-button {
  padding: 0.85rem 2rem;
  background: var(--forest);
  color: white;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
}
.submit-button:hover { background: var(--forest-mid); }

/* ---- CHIFFRES CLÉS ---- */
.chiffres {
  padding: 6rem 2rem;
  background: var(--forest);
}

.chiffres .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.chiffre {
  padding: 3rem 2rem;
  background: var(--forest);
  text-align: center;
  transition: background var(--transition);
}
.chiffre:hover { background: var(--forest-mid); }

.chiffre-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.chiffre-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ---- INVESTISSEUR CTA ---- */
.investisseur-cta {
  padding: 7rem 2rem;
  background: var(--bg);
}

.investisseur-cta .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.investisseur-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
}

.investisseur-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.btn-gold, .investisseur-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 100px;
  transition: all var(--transition);
}
.btn-gold:hover, .investisseur-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,164,82,0.35); }

/* ---- FOOTER ---- */
.footer {
  background: var(--forest);
  padding: 4rem 2rem 2rem;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo img {
  height: 44px;
  width: auto;
  filter: none;
  opacity: 1;
  object-fit: contain;
}

.footer-logo p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ---- LEGAL PAGES ---- */
.legal-content {
  padding: 5rem 2rem 7rem;
  background: var(--white);
}

.legal-content .container {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.legal-content h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
}

.legal-content li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.35rem;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-content a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .about-content { grid-template-columns: 1fr; gap: 3rem; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .companies-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-content { grid-template-columns: 1fr; gap: 3rem; }
  .contact-content { grid-template-columns: 1fr; gap: 3rem; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process { grid-template-columns: 1fr; }
  .process-next { display: none; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    z-index: 999;
  }
  .nav-menu.active { display: flex; }
  .nav-toggle { display: flex; }
  .sectors-grid { grid-template-columns: 1fr; }
  .companies-grid { grid-template-columns: 1fr; }
  .chiffres-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-cards { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .pf-filters { flex-wrap: wrap; }
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
  padding: 7rem 2rem;
  background: var(--white);
}

.portfolio .container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.portfolio-header h2,
.insights-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 480px;
}

.portfolio-filters {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pf-btn {
  padding: 0.45rem 1rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  background: white;
  color: var(--text-muted);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.pf-btn.active,
.pf-btn:hover {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

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

.pf-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.pf-card:hover {
  box-shadow: 0 12px 40px rgba(13,43,26,0.1);
  transform: translateY(-4px);
}

.pf-card--pipeline {
  background: var(--bg);
}

.pf-card-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pf-logo-wrap {
  height: 40px;
  display: flex;
  align-items: center;
}

.pf-logo-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.pf-logo-wrap--anon {
  color: var(--text-muted);
}

.pf-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.pf-badge--exit { background: #E8F5E9; color: #2E7D32; }
.pf-badge--active { background: #E3F2FD; color: #1565C0; }
.pf-badge--pipeline { background: var(--gold-pale); color: var(--gold-dark); border: 1px solid rgba(201,164,82,0.3); }

.pf-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pf-card-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.pf-sector {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.pf-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-top: 0.4rem;
}

.pf-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.pf-metric { text-align: center; }

.pf-metric-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pf-metric-lbl {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   INSIGHTS SECTION
   ============================================ */
.insights {
  padding: 7rem 2rem;
  background: var(--bg);
}

.insights .container {
  max-width: 1200px;
  margin: 0 auto;
}

.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.insights-all-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.insights-all-link:hover { opacity: 0.7; }

.insights-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
}

.insight-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  cursor: pointer;
}

.insight-card:hover {
  box-shadow: 0 12px 40px rgba(13,43,26,0.1);
  transform: translateY(-3px);
}

.insight-card--featured {
  background: var(--forest);
  border-color: var(--forest);
}

.insight-card--featured .insight-tag {
  background: rgba(201,164,82,0.2);
  color: var(--gold);
  border-color: rgba(201,164,82,0.3);
}

.insight-card--featured h3 { color: white !important; font-size: 1.2rem; }
.insight-card--featured p { color: rgba(255,255,255,0.7) !important; }
.insight-card--featured .insight-footer { border-color: rgba(255,255,255,0.1); }
.insight-card--featured .insight-author { color: var(--gold) !important; }
.insight-card--featured .insight-date { color: rgba(255,255,255,0.4) !important; }

.insight-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border-radius: 100px;
  border: 1px solid rgba(201,164,82,0.3);
  width: fit-content;
}

.insight-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.insight-card p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.insight-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.insight-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
}

.insight-date {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Portfolio responsive */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-card--featured { grid-column: 1 / -1; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
