/* ===== ONG L'EMPREINTE — Modern Design System 3.0 ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --vf: #1B5E20;
  --vm: #2E7D32;
  --vc: #4CAF50;
  --vp: #E8F5E9;
  --or: #C8922E;
  --orc: #D4A94A;
  --orl: #E8C97D;
  --cr: #FAF5EC;
  --sb: #F2E9D8;
  --nr: #0A0A0A;
  --nr2: #141414;
  --nr3: #1E1E1E;
  --g1: #333;
  --g2: #666;
  --g3: #999;
  --g4: #CCC;
  --g5: #F0F0F0;
  --bl: #FFFFFF;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.14);
  --shadow-glow: 0 0 40px rgba(27,94,32,0.15);
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.12);
  --t: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s ease;
  --t-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--g1);
  background: var(--bl);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }
a { color: inherit; text-decoration: none; transition: all var(--t-fast); }

.gradient-text {
  background: linear-gradient(135deg, var(--vf) 0%, var(--vc) 50%, var(--or) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-or { color: var(--or); }
.text-vf { color: var(--vf); }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; position: relative; }
.section-dark { background: var(--nr); color: var(--bl); }
.section-cream { background: var(--cr); }
.section-gradient { background: linear-gradient(180deg, var(--bl) 0%, var(--vp) 100%); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.6rem 0;
  transition: all var(--t);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(27,94,32,0.06);
  padding: 0.5rem 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { display: flex; align-items: center; gap: 0.75rem; }
.navbar-logo img { height: 70px; width: 70px; border-radius: 50%; object-fit: cover; border: 3px solid var(--vf); box-shadow: 0 4px 15px rgba(27,94,32,0.2); transition: all var(--t); }
.navbar.scrolled .navbar-logo img { height: 54px; width: 54px; }
.navbar-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.navbar-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--bl);
  padding: 0.5rem 1rem; border-radius: 50px;
  transition: all var(--t-fast);
}
.navbar.scrolled .navbar-links a { color: var(--g1); }
.navbar-links a:hover { background: rgba(255,255,255,0.12); }
.navbar.scrolled .navbar-links a:hover { background: var(--vp); color: var(--vf); }
.navbar-links a.active { background: rgba(255,255,255,0.15); font-weight: 600; }
.navbar.scrolled .navbar-links a.active { background: var(--vp); color: var(--vf); font-weight: 600; }

.nav-cta {
  background: var(--or) !important; color: var(--bl) !important;
  font-weight: 600 !important; padding: 0.6rem 1.5rem !important;
}
.nav-cta:hover { background: var(--orc) !important; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(200,146,46,0.3); }

/* Mobile menu extra sections */
.mobile-menu-extras { display: none; }
.mobile-menu-divider { display: none; }

.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 8px; z-index: 1001; }
.menu-toggle span { width: 24px; height: 2px; background: var(--bl); border-radius: 2px; transition: all var(--t); }
.navbar.scrolled .menu-toggle span { background: var(--nr); }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO FULLSCREEN BG ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--nr);
}
.hero.hero-fullbg {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,20,13,0.85) 0%, rgba(27,94,32,0.6) 50%, rgba(14,30,23,0.8) 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0A2E0D 0%, #1B5E20 40%, #0D3B12 70%, #1A1A1A 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(200,146,46,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(76,175,80,0.06) 0%, transparent 60%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 1; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); z-index: 1;
}
.hero-orb-1 { width: 500px; height: 500px; top: -10%; right: -5%; background: rgba(200,146,46,0.12); }
.hero-orb-2 { width: 350px; height: 350px; bottom: -5%; left: 10%; background: rgba(76,175,80,0.1); }
.hero-orb-3 { width: 200px; height: 200px; top: 40%; right: 30%; background: rgba(200,146,46,0.06); }

.hero-content { position: relative; z-index: 10; padding: 8rem 0 5rem; width: 100%; }
.hero-content > .container { display: block; }
.hero-center { max-width: 700px; text-align: center; margin: 0 auto; }
.hero-center .hero-desc { margin-left: auto; margin-right: auto; }
.hero-center .hero-actions { justify-content: center; }

.hero-left { max-width: 640px; min-width: 0; }
.hero-right { min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: var(--orl); padding: 0.5rem 1.25rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--vc); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { color: var(--bl); margin-bottom: 1rem; font-weight: 800; letter-spacing: -0.03em; }
.hero h1 .line-or {
  color: transparent; display: block;
  background: linear-gradient(135deg, var(--or), var(--orl));
  -webkit-background-clip: text; background-clip: text;
  font-size: 1.1em;
}
.hero h1 .line-sm {
  font-size: 0.28em; font-weight: 400; color: rgba(255,255,255,0.35);
  display: block; margin-top: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}

.hero-signature {
  font-size: 1.3rem; color: var(--orl); font-style: italic; font-weight: 300;
  margin-bottom: 1.5rem; letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 500px;
  line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero right: image */
.hero-right {
  position: relative; display: flex; flex-direction: column; align-items: center;
}
.hero-image-wrapper {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.08);
  max-width: 440px; width: 100%;
}
.hero-image-wrapper img {
  width: 100%; height: auto; display: block;
  object-fit: cover; aspect-ratio: 3/4;
}
.hero-image-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 50%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
}
.hero-image-overlay .promoteur-name {
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--bl); margin-bottom: 0.15rem;
}
.hero-image-overlay .promoteur-title {
  font-size: 0.8rem; color: var(--or); font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.hero-image-glow {
  position: absolute; top: -30%; right: -30%; width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(200,146,46,0.08) 0%, transparent 70%);
  z-index: -1;
}

/* Hero stats grid below hero image */
.hero-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem;
  margin-top: 1.5rem;
}
.hero-stat-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--r); padding: 1.25rem 1rem; text-align: center;
  transition: all var(--t);
}
.hero-stat-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); border-color: rgba(200,146,46,0.3); }
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--or);
  line-height: 1; margin-bottom: 0.15rem;
}
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 400; line-height: 1.3; }
.stat-icon { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; font-family: inherit;
  border: none; cursor: pointer;
  transition: all var(--t); text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--or); color: var(--bl); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,146,46,0.35); color: var(--bl); }
.btn-secondary { background: var(--vf); color: var(--bl); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(27,94,32,0.35); color: var(--bl); }
.btn-outline-light { background: transparent; color: var(--bl); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--bl); color: var(--bl); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--vf); border: 1.5px solid var(--vf); }
.btn-outline-dark:hover { background: var(--vf); color: var(--bl); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-icon { width: 48px; height: 48px; padding: 0; justify-content: center; border-radius: 50%; }

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--or); margin-bottom: 1rem;
}
.section-tag .tag-line { width: 30px; height: 2px; background: var(--or); border-radius: 1px; }
.section-header { margin-bottom: 4rem; }
.section-header h2 { color: var(--vf); margin-bottom: 1rem; }
.section-header p { color: var(--g2); font-size: 1.1rem; max-width: 600px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.section-dark .section-header h2 { color: var(--bl); }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }
.section-dark .section-tag { color: var(--orl); }

/* ===== IMPACT BAR (marquee) ===== */
.impact-bar {
  background: var(--vf); overflow: hidden;
  padding: 1.25rem 0; position: relative;
}
.impact-track {
  display: flex; gap: 3rem; animation: scroll-left 30s linear infinite;
  white-space: nowrap;
}
.impact-item {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--bl); font-size: 0.95rem; font-weight: 500; flex-shrink: 0;
}
.impact-item .num { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--or); }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== MOT DU PROMOTEUR ===== */
.promoteur-section { background: var(--cr); }
.promoteur-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center;
  max-width: 900px; margin: 0 auto;
}
.promoteur-photo {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vf), var(--or));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem; font-weight: 800; color: var(--bl);
  box-shadow: 0 12px 40px rgba(27,94,32,0.2);
  position: relative;
  overflow: hidden;
}
.promoteur-photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.promoteur-photo::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%; border: 3px solid var(--or);
  z-index: 0;
}
.promoteur-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--g1); line-height: 1.8; font-style: italic;
  position: relative; padding-left: 1.5rem;
  border-left: 3px solid var(--or);
}
.promoteur-quote p { margin-bottom: 1.5rem; }
.promoteur-info { display: flex; flex-direction: column; gap: 0.15rem; }
.promoteur-info strong { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; color: var(--vf); font-style: normal; }
.promoteur-info span { font-size: 0.85rem; color: var(--or); font-weight: 600; font-style: normal; text-transform: uppercase; letter-spacing: 1px; }

/* ===== CONVICTION SECTION ===== */
.conviction-section { background: var(--nr); position: relative; overflow: hidden; }
.conviction-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(27,94,32,0.15) 0%, transparent 70%);
}
.conviction-content {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto; text-align: center;
}
.conviction-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.85); line-height: 1.8;
  font-weight: 400; margin-bottom: 2rem;
}
.conviction-highlight {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--or);
}
.quote-marks {
  font-size: 5rem; color: rgba(200,146,46,0.15);
  font-family: Georgia, serif; line-height: 0.5;
  display: block; margin-bottom: 1rem;
}

/* ===== BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.bento-card {
  background: var(--bl);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--t);
  position: relative; overflow: hidden;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.bento-span-8 { grid-column: span 8; }
.bento-span-6 { grid-column: span 6; }
.bento-span-4 { grid-column: span 4; }
.bento-span-3 { grid-column: span 3; }
.bento-span-12 { grid-column: span 12; }

.bento-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.25rem;
}
.bento-icon-vf { background: var(--vp); color: var(--vf); }
.bento-icon-or { background: var(--sb); color: var(--or); }
.bento-icon-dark { background: var(--nr); color: var(--or); }

.bento-card h3 { margin-bottom: 0.5rem; color: var(--nr); }
.bento-card p { color: var(--g2); font-size: 0.95rem; margin: 0; }

.bento-card-dark { background: var(--nr); border-color: rgba(255,255,255,0.06); }
.bento-card-dark h3 { color: var(--or); }
.bento-card-dark p { color: rgba(255,255,255,0.6); }
.bento-card-dark:hover { border-color: rgba(200,146,46,0.2); }

.bento-card-accent { background: linear-gradient(135deg, var(--vf), var(--vm)); border: none; }
.bento-card-accent h3, .bento-card-accent p { color: var(--bl); }
.bento-card-accent p { opacity: 0.85; }

/* ===== PHASE STEPS (Modern) ===== */
.phases-container { position: relative; }
.phase-line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--vf), var(--or));
  transform: translateX(-50%);
}
.phase-step {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem;
  align-items: center; margin-bottom: 3rem;
}
.phase-step:nth-child(even) .phase-text { grid-column: 3; text-align: left; }
.phase-step:nth-child(even) .phase-empty { grid-column: 1; }

.phase-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--vf); color: var(--bl);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  box-shadow: 0 0 0 6px var(--bl), 0 0 0 8px var(--vf);
  z-index: 2; position: relative;
}
.phase-text h3 { color: var(--vf); margin-bottom: 0.25rem; }
.phase-badge {
  display: inline-block; background: var(--sb); color: var(--or);
  font-weight: 700; font-size: 0.75rem; padding: 0.25rem 0.75rem;
  border-radius: 50px; margin-bottom: 0.5rem; letter-spacing: 0.5px;
}
.phase-text p { color: var(--g2); font-size: 0.95rem; margin: 0; }

/* ===== FORMATION POLES (Modern) ===== */
.pole-card {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--t);
  border: 1px solid rgba(0,0,0,0.04);
}
.pole-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pole-head {
  padding: 1.75rem 2rem; color: var(--bl);
  display: flex; align-items: center; justify-content: space-between;
}
.pole-head h3 { font-size: 1.2rem; }
.pole-head .pole-count {
  background: rgba(255,255,255,0.2); padding: 0.3rem 0.8rem;
  border-radius: 50px; font-size: 0.8rem; font-weight: 700;
}
.pole-head-vm { background: linear-gradient(135deg, var(--vm), var(--vc)); }
.pole-head-vf { background: linear-gradient(135deg, var(--vf), var(--vm)); }
.pole-head-or { background: linear-gradient(135deg, var(--or), var(--orc)); }
.pole-body { padding: 0.5rem; background: var(--bl); }
.pole-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.25rem; border-radius: var(--r);
  transition: background var(--t-fast); font-size: 0.95rem;
}
.pole-item:hover { background: var(--g5); }
.pole-item strong { font-weight: 600; }
.pole-item .sub { font-size: 0.8rem; color: var(--g3); display: block; font-weight: 400; }
.pole-item .dur { color: var(--or); font-weight: 700; font-size: 0.85rem; white-space: nowrap; }

/* ===== PARTNER GRID (Modern) ===== */
.partner-mosaic {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;
}
.partner-tile {
  background: var(--bl); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-lg); padding: 1.5rem; text-align: center;
  transition: all var(--t); cursor: default;
}
.partner-tile:hover { border-color: var(--or); box-shadow: var(--shadow); transform: translateY(-3px); }
.partner-tile i { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.partner-tile h4 { font-size: 0.9rem; color: var(--nr); margin-bottom: 0.25rem; }
.partner-tile p { font-size: 0.78rem; color: var(--g3); margin: 0; }

/* ===== ODD CHIPS ===== */
.odd-row { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.odd-chip {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--vf); color: var(--bl);
  padding: 0.6rem 1.25rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  transition: all var(--t);
}
.odd-chip:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(27,94,32,0.3); }
.odd-chip .odd-n { background: var(--or); color: var(--bl); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; }

/* ===== TIMELINE (Modern) ===== */
.timeline-modern { max-width: 700px; margin: 0 auto; position: relative; }
.timeline-modern::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--vf), var(--or), var(--vf));
}
.tl-item { display: flex; gap: 2.5rem; margin-bottom: 2rem; position: relative; }
.tl-dot {
  width: 16px; height: 16px; min-width: 16px; border-radius: 50%;
  background: var(--or); border: 3px solid var(--bl);
  box-shadow: 0 0 0 2px var(--or);
  margin-top: 6px; z-index: 1;
}
.tl-content {
  background: var(--bl); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-lg); padding: 1.5rem 1.75rem; flex: 1;
  transition: all var(--t);
}
.tl-content:hover { box-shadow: var(--shadow); border-color: rgba(200,146,46,0.15); }
.tl-content h4 { color: var(--vf); margin-bottom: 0.25rem; }
.tl-content .tl-period { color: var(--or); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.tl-content p { color: var(--g2); font-size: 0.9rem; margin: 0.5rem 0 0; }

/* ===== FORM (Modern Multi-step) ===== */
.form-wizard { max-width: 700px; margin: 0 auto; }
.form-steps {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-bottom: 3rem; position: relative;
}
.form-step-indicator {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  flex: 1; position: relative; z-index: 1;
}
.step-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--g5); color: var(--g3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  transition: all var(--t); border: 2px solid transparent;
}
.step-circle.active { background: var(--vf); color: var(--bl); box-shadow: 0 0 0 4px rgba(27,94,32,0.15); }
.step-circle.done { background: var(--or); color: var(--bl); }
.step-label { font-size: 0.75rem; color: var(--g3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.step-label.active { color: var(--vf); }
.step-label.done { color: var(--or); }

.form-step-line {
  position: absolute; top: 22px; left: 15%; right: 15%; height: 2px;
  background: var(--g4); z-index: 0;
}
.form-step-progress {
  position: absolute; top: 22px; left: 15%; height: 2px;
  background: var(--vf); z-index: 0;
  transition: width var(--t);
}

.form-panel { display: none; animation: fadeSlideUp 0.4s ease; }
.form-panel.active { display: block; }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-weight: 600; font-size: 0.85rem;
  color: var(--nr); margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.form-input {
  width: 100%; padding: 0.9rem 1.15rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r); font-size: 0.95rem;
  font-family: inherit; background: var(--bl);
  transition: all var(--t-fast);
}
.form-input:focus {
  outline: none; border-color: var(--vf);
  box-shadow: 0 0 0 4px rgba(27,94,32,0.08);
}
textarea.form-input { min-height: 100px; resize: vertical; }
select.form-input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.5rem; }
.radio-card {
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r); padding: 1rem 1.25rem;
  cursor: pointer; transition: all var(--t-fast);
  display: flex; align-items: center; gap: 0.75rem;
}
.radio-card:hover { border-color: var(--vf); background: var(--vp); }
.radio-card.selected { border-color: var(--vf); background: var(--vp); box-shadow: 0 0 0 3px rgba(27,94,32,0.1); }
.radio-card input { display: none; }
.radio-dot {
  width: 20px; height: 20px; min-width: 20px; border-radius: 50%;
  border: 2px solid var(--g4); transition: all var(--t-fast);
  display: flex; align-items: center; justify-content: center;
}
.radio-card.selected .radio-dot { border-color: var(--vf); background: var(--vf); }
.radio-card.selected .radio-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--bl); }
.radio-card i { font-size: 1.3rem; color: var(--vf); }
.radio-card .rc-text { font-weight: 600; font-size: 0.9rem; color: var(--nr); }
.radio-card .rc-sub { font-size: 0.78rem; color: var(--g2); font-weight: 400; }

.form-actions { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }
.form-actions .btn { min-width: 140px; justify-content: center; }

.form-success {
  text-align: center; padding: 3rem 1rem;
  animation: fadeSlideUp 0.5s ease;
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--vp); color: var(--vf);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto 1.5rem;
}

/* ===== CTA SECTION ===== */
.cta-modern {
  background: linear-gradient(135deg, var(--vf) 0%, var(--nr2) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-modern::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(200,146,46,0.1) 0%, transparent 60%);
}
.cta-modern .container { position: relative; z-index: 1; }
.cta-modern h2 { color: var(--bl); margin-bottom: 1rem; }
.cta-modern p { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 550px; margin: 0 auto 2.5rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--nr); color: var(--bl);
  padding: 5rem 0 0; position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--vf), var(--or), var(--vf));
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 80px; width: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; filter: brightness(1.2); border: 3px solid var(--or); box-shadow: 0 4px 20px rgba(200,146,46,0.2); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer h4 { color: var(--or); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: all var(--t-fast); }
.footer-links a:hover { color: var(--or); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-contact-item i { color: var(--or); width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  transition: all var(--t);
}
.footer-socials a:hover { background: var(--or); border-color: var(--or); color: var(--bl); transform: translateY(-2px); }

/* ===== PAGE HEADER ===== */
.page-hero {
  background: var(--nr); padding: 9rem 0 4rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,94,32,0.3) 0%, transparent 60%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--vf), var(--or), var(--vf));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--bl); margin-bottom: 0.5rem; font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 1.1rem; }
.page-hero .breadcrumb { display: flex; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb a { color: var(--or); }

/* ===== ABOUT SPECIFIC ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img {
  border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--vp), var(--sb));
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-img img { max-width: 65%; height: auto; }

.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
.value-item {
  display: flex; gap: 1rem; padding: 1.25rem;
  border-radius: var(--r-lg); border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--t);
}
.value-item:hover { background: var(--bl); box-shadow: var(--shadow); border-color: transparent; }
.value-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.value-item h4 { font-size: 0.95rem; color: var(--nr); margin-bottom: 0.2rem; }
.value-item p { font-size: 0.85rem; color: var(--g2); margin: 0; }

/* co-founder */
.cofounder-card {
  background: var(--bl); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-xl); padding: 2.5rem; display: grid;
  grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center;
}
.cofounder-card:hover { box-shadow: var(--shadow-lg); }
.cf-logo {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--vf); color: var(--or);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 800;
}
.cf-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.cf-tag {
  padding: 0.3rem 0.8rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
}
.cf-tag-vf { background: var(--vp); color: var(--vf); }
.cf-tag-or { background: var(--sb); color: var(--or); }

/* ===== BUDGET ===== */
.budget-bar {
  display: flex; height: 12px; border-radius: 6px;
  overflow: hidden; margin: 1.5rem 0; background: var(--g5);
}
.budget-seg { transition: width 1s ease; }

.budget-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.budget-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 1rem; border-radius: var(--r);
  background: var(--bl); border: 1px solid rgba(0,0,0,0.04);
}
.budget-item:hover { background: var(--g5); }
.budget-item .b-label { display: flex; align-items: center; gap: 0.5rem; }
.budget-item .b-dot { width: 10px; height: 10px; border-radius: 3px; }
.budget-item .b-pct { font-weight: 700; color: var(--or); font-family: 'Space Grotesk'; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== POLE IMAGE CARDS ===== */
.pole-image-card {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--t);
  position: relative;
}
.pole-image-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.pole-image-card .pole-img {
  width: 100%; height: 220px; object-fit: cover;
  display: block; transition: transform 0.6s ease;
}
.pole-image-card:hover .pole-img { transform: scale(1.05); }
.pole-image-card .pole-img-overlay {
  position: absolute; top: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7));
  pointer-events: none;
}
.pole-image-card .pole-img-content {
  padding: 1.75rem 2rem; background: var(--bl);
}
.pole-image-card .pole-img-content h3 { color: var(--vf); margin-bottom: 0.5rem; font-size: 1.2rem; }
.pole-image-card .pole-img-content p { color: var(--g2); font-size: 0.95rem; margin: 0 0 1rem; }
.pole-image-card .pole-img-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--or); color: var(--bl); padding: 0.35rem 1rem;
  border-radius: 50px; font-weight: 700; font-size: 0.8rem;
  z-index: 2;
}
.pole-image-card .pole-img-icon {
  position: absolute; top: 170px; left: 2rem;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--bl); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--vf); z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.pole-image-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}

/* ===== IMAGE STRIP ===== */
.image-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  overflow: hidden; max-height: 280px;
}
.image-strip img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.6s ease;
}
.image-strip img:hover { transform: scale(1.08); }

/* ===== CONVICTION BG IMAGE ===== */
.conviction-section.has-bg {
  background-size: cover; background-position: center;
  position: relative;
}
.conviction-section.has-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,30,23,0.92) 0%, rgba(27,94,32,0.88) 100%);
}
.conviction-section.has-bg .container { position: relative; z-index: 1; }

/* ===== CTA BG IMAGE ===== */
.cta-modern.has-bg {
  background-size: cover; background-position: center;
}
.cta-modern.has-bg::before {
  background: linear-gradient(135deg, rgba(14,30,23,0.88) 0%, rgba(27,94,32,0.85) 100%);
}

/* ===== PHASE IMAGES ===== */
.phase-img {
  width: 100%; max-width: 280px; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow);
}
.phase-img img {
  width: 100%; height: 180px; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.phase-img:hover img { transform: scale(1.05); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bento-span-8, .bento-span-6, .bento-span-4, .bento-span-3 { grid-column: span 6; }
  .hero-content > .container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-image-wrapper { max-width: 360px; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .phase-line { display: none; }
  .phase-step { grid-template-columns: auto 1fr; }
  .phase-step .phase-empty { display: none; }
  .phase-step:nth-child(even) .phase-text { grid-column: auto; text-align: left; }
  .promoteur-grid { gap: 2rem; }
  .promoteur-photo { width: 140px; height: 140px; font-size: 2.5rem; }
  .pole-image-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .image-strip { grid-template-columns: repeat(2, 1fr); max-height: 240px; }
  .image-strip img { height: 240px; }
  .phase-img { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* Mobile menu */
  .navbar-links {
    position: fixed; top: 0; right: -100%; width: 85vw; max-width: 360px; height: 100vh;
    flex-direction: column; background: var(--bl);
    padding: 5rem 1.5rem 2rem; gap: 0;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right var(--t); z-index: 1000;
    overflow-y: auto;
    justify-content: flex-start;
  }
  .navbar-links.open { right: 0; }
  .navbar-links li { width: 100%; }
  .navbar-links a {
    color: var(--nr) !important; padding: 0.85rem 1rem !important;
    font-size: 1rem !important; border-radius: var(--r) !important;
    display: block !important; width: 100%;
  }
  .navbar-links a:hover { background: var(--vp) !important; }
  .navbar-links a.nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .mobile-menu-divider {
    display: block; width: 100%; height: 1px;
    background: var(--g5); margin: 1rem 0;
  }
  .mobile-menu-extras {
    display: flex; flex-direction: column; gap: 0.75rem; width: 100%;
    padding-top: 0.5rem;
  }
  .mobile-menu-extras .mobile-contact-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.6rem 1rem; border-radius: var(--r);
    color: var(--g2); font-size: 0.9rem;
  }
  .mobile-menu-extras .mobile-contact-item i {
    width: 18px; color: var(--or); font-size: 0.9rem;
  }
  .mobile-menu-extras .mobile-socials {
    display: flex; gap: 0.75rem; padding: 0.5rem 1rem;
  }
  .mobile-menu-extras .mobile-socials a {
    width: 40px !important; height: 40px !important;
    border-radius: 50% !important; display: flex !important;
    align-items: center !important; justify-content: center !important;
    background: var(--vp) !important; color: var(--vf) !important;
    font-size: 1rem !important; padding: 0 !important;
  }
  .mobile-menu-extras .mobile-socials a:hover {
    background: var(--or) !important; color: var(--bl) !important;
  }

  .menu-toggle { display: flex; }
  .menu-toggle.open span { background: var(--nr) !important; }

  /* Hero responsive */
  .hero-content > .container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-left { max-width: 100%; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-right { order: -1; }
  .hero-image-wrapper { max-width: 280px; margin: 0 auto; }
  .hero-image-wrapper img { aspect-ratio: 1/1; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .stat-value { font-size: 1.5rem; }
  .stat-label { font-size: 0.65rem; }

  /* Bento responsive */
  .bento-span-8, .bento-span-6, .bento-span-4, .bento-span-3, .bento-span-12 { grid-column: span 12; }
  .bento-grid { grid-template-columns: 1fr; }

  /* Image sections responsive */
  .image-strip { grid-template-columns: 1fr 1fr; max-height: 180px; }
  .image-strip img { height: 180px; }
  .navbar-logo img { height: 56px; width: 56px; }
  .navbar.scrolled .navbar-logo img { height: 44px; width: 44px; }

  /* Other responsive */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; }
  .cofounder-card { grid-template-columns: 1fr; text-align: center; }
  .cf-logo { margin: 0 auto; }
  .cf-tags { justify-content: center; }
  .budget-list { grid-template-columns: 1fr; }
  .promoteur-grid { grid-template-columns: 1fr; text-align: center; }
  .promoteur-photo { margin: 0 auto; width: 140px; height: 140px; }
  .promoteur-quote { border-left: none; padding-left: 0; text-align: center; }
  .promoteur-info { align-items: center; }
}

@media (max-width: 480px) {
  .hero { min-height: auto; }
  .hero-content { padding: 7rem 0 3rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-stats-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-steps { gap: 0; }
  .step-label { font-size: 0.65rem; }
  .about-grid { gap: 2rem; }
}

/* ===== BLOG PAGE ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--bl);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
}
.blog-card-badge {
  background: rgba(255,255,255,0.95);
  color: var(--vf);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--g3);
  margin-bottom: 0.75rem;
}
.blog-card-body h3 {
  font-size: 1.15rem;
  color: var(--vf);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.blog-card-body p {
  color: var(--g2);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.blog-card-link {
  color: var(--or);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-card-link:hover { gap: 0.7rem; color: var(--vf); }

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.gallery-album {
  background: var(--bl);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-album:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-album-cover {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-album-info {
  padding: 1.25rem;
}
.gallery-album-info h3 {
  font-size: 1.1rem;
  color: var(--vf);
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.gallery-album-info p {
  font-size: 0.85rem;
  color: var(--g2);
  margin-bottom: 0.75rem;
}
.gallery-album-count {
  font-size: 0.8rem;
  color: var(--g3);
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
