/* ============================================================
   APROSHAV — Feuille de styles principale
   Auteur : APROSHAV Web Team
   Version : 2.0
   ============================================================ */

/* ── Variables globales ── */
:root {
  --green:       #2E7D32;
  --green-dark:  #1B5E20;
  --green-light: #ff0000;
  --green-pale:  #E8F5E9;
  --blue:        #1E88E5;
  --blue-dark:   #1565C0;
  --white:       #FFFFFF;
  --grey:        #F5F5F5;
  --text-dark:   #1A2E1A;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --gold:        #C8A951;
  --shadow:      0 4px 24px rgba(46,125,50,0.10);
  --radius:      16px;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46,125,50,0.10);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.10); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-text .name {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.25rem;
  color: var(--green); line-height: 1.1; letter-spacing: 0.5px;
}
.logo-text .tagline {
  font-size: 0.62rem; color: var(--text-light);
  font-weight: 400; letter-spacing: 1.2px; text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.9rem; font-weight: 500;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--green);
  border-radius: 2px; transition: width 0.3s ease;
}
.nav-links a:hover            { color: var(--green); }
.nav-links a:hover::after     { width: 100%; }
.nav-links a.active           { color: var(--green); }
.nav-links a.active::after    { width: 100%; }

.nav-cta {
  background: #ff0000 !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover       { background: var(--green-dark) !important; transform: translateY(-1px); }
.nav-cta::after      { display: none !important; }
.nav-cta.active::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--green); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    padding: 24px 5%;
    border-top: 1px solid rgba(46,125,50,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 16px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .hamburger      { display: flex; }
}

/* ══════════════════════════════════════════════
   HERO CAROUSEL (index uniquement)
══════════════════════════════════════════════ */
.hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 600px;
  overflow: hidden; margin-top: 72px;
}
.slides-container {
  display: flex; width: 500%; height: 100%;
  transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
}
.slide {
  width: 20%; height: 100%;
  position: relative; flex-shrink: 0;
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 6s ease;
}
.slide.active .slide-bg     { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,10,0.72) 0%, rgba(10,40,20,0.45) 60%, rgba(0,0,0,0.25) 100%);
}

/* Slide backgrounds */
.slide:nth-child(1) .slide-bg { background-image: linear-gradient(135deg, rgba(46,125,50,0.8), rgba(30,136,229,0.5)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Crect fill='%23145214' width='800' height='600'/%3E%3Ccircle cx='400' cy='300' r='200' fill='%232E7D32' opacity='.5'/%3E%3Ccircle cx='600' cy='150' r='120' fill='%23ff0000' opacity='.3'/%3E%3C/svg%3E"); }
.slide:nth-child(2) .slide-bg { background-image: linear-gradient(135deg, rgba(46,90,50,0.85), rgba(20,100,60,0.6)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Crect fill='%231a4a1a' width='800' height='600'/%3E%3Cellipse cx='300' cy='400' rx='250' ry='150' fill='%232E7D32' opacity='.4'/%3E%3C/svg%3E"); }
.slide:nth-child(3) .slide-bg { background-image: linear-gradient(135deg, rgba(20,80,40,0.9), rgba(46,125,50,0.5)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Crect fill='%230d3b1a' width='800' height='600'/%3E%3Crect x='0' y='350' width='800' height='250' fill='%232E7D32' opacity='.5'/%3E%3C/svg%3E"); }
.slide:nth-child(4) .slide-bg { background-image: linear-gradient(135deg, rgba(100,100,20,0.8), rgba(46,125,50,0.6)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Crect fill='%23264d00' width='800' height='600'/%3E%3Ccircle cx='200' cy='500' r='300' fill='%23ff0000' opacity='.3'/%3E%3C/svg%3E"); }
.slide:nth-child(5) .slide-bg { background-image: linear-gradient(135deg, rgba(30,136,229,0.7), rgba(46,125,50,0.7)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Crect fill='%230d2d4a' width='800' height='600'/%3E%3Ccircle cx='600' cy='200' r='200' fill='%231E88E5' opacity='.4'/%3E%3C/svg%3E"); }

.slide-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 8% 12%; color: white;
  transform: translateY(30px); opacity: 0;
  transition: all 0.9s ease 0.3s;
}
.slide.active .slide-content { transform: translateY(0); opacity: 1; }

.slide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(102,187,106,0.25); border: 1px solid rgba(102,187,106,0.5);
  backdrop-filter: blur(8px); color: #A5D6A7;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 20px; max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem); line-height: 1.7;
  max-width: 580px; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; font-weight: 300;
}
.slide-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #ff0000; color: #ffffff;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 10px; text-decoration: none;
  transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(102,187,106,0.4);
}
.slide-cta:hover { background: #81C784; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(102,187,106,0.5); }
.slide-cta i     { font-size: 0.85rem; transition: transform 0.3s; }
.slide-cta:hover i { transform: translateX(4px); }

.carousel-controls {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 2%; pointer-events: none;
}
.carousel-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px); color: white; font-size: 1rem;
  cursor: pointer; pointer-events: all;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover { background: rgba(255,255,255,0.3); transform: scale(1.1); }

.carousel-dots { position: absolute; bottom: 32px; right: 8%; display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: all 0.4s ease;
}
.dot.active { width: 28px; background: var(--green-light); }

.slide-counter {
  position: absolute; top: 50%; right: 5%; transform: translateY(-50%);
  writing-mode: vertical-rl; color: rgba(255,255,255,0.5);
  font-size: 0.75rem; letter-spacing: 2px; font-weight: 300;
}
.slide-counter strong { color: white; font-size: 1.1rem; font-weight: 600; }

.progress-bar {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--green-light); width: 0%; transition: none;
}
.progress-bar.animating { width: 100%; transition: width 5s linear; }

/* ══════════════════════════════════════════════
   PAGE HERO (sous-pages)
══════════════════════════════════════════════ */
.page-hero {
  margin-top: 72px; padding: 80px 5% 60px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  border: 60px solid rgba(255,255,255,0.06);
  border-radius: 50%; top: -120px; right: -80px;
}
.page-hero::after {
  content: ''; position: absolute;
  width: 250px; height: 250px;
  border: 40px solid rgba(255,255,255,0.04);
  border-radius: 50%; bottom: -60px; left: 5%;
}
.hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

.hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 20px;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.hero-breadcrumb a:hover { color: var(--green-light); }
.hero-breadcrumb i { font-size: 0.65rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(102,187,106,0.2); border: 1px solid rgba(102,187,106,0.4);
  color: #A5D6A7; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  color: white; line-height: 1.15; margin-bottom: 20px;
}
.page-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; max-width: 680px;
}

/* ══════════════════════════════════════════════
   SECTION LABELS & TITLES (communs)
══════════════════════════════════════════════ */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--green); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--text-dark); margin-bottom: 24px;
}
.section-title em { color: var(--green); font-style: normal; }

.section-subtitle { font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; margin-top: 16px; }
.section-header   { text-align: center; max-width: 600px; margin: 0 auto 64px; }

/* ══════════════════════════════════════════════
   SECTION ABOUT (index)
══════════════════════════════════════════════ */
.section-about {
  padding: 100px 5%; background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.about-visual { position: relative; }
.about-card-main {
  border-radius: 24px; overflow: hidden; height: 480px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(46,125,50,0.25); position: relative;
}
.about-card-main::before {
  content: ''; position: absolute;
  width: 280px; height: 280px;
  border: 40px solid rgba(255,255,255,0.08);
  border-radius: 50%; top: -60px; right: -60px;
}
.about-card-main::after {
  content: ''; position: absolute;
  width: 180px; height: 180px;
  border: 30px solid rgba(255,255,255,0.06);
  border-radius: 50%; bottom: 20px; left: -30px;
}
.about-icon-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; padding: 32px; position: relative; z-index: 1;
}
.about-icon-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 24px 16px;
  text-align: center; color: white; transition: all 0.3s;
}
.about-icon-item:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.about-icon-item i    { font-size: 2rem; margin-bottom: 10px; display: block; }
.about-icon-item span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; }

.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: white;
  padding: 16px 24px; border-radius: 16px;
  font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(200,169,81,0.4); z-index: 2;
}
.about-badge .num { font-size: 2rem; display: block; line-height: 1; }

.about-desc {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--text-mid); margin-bottom: 32px;
}
.devises-box {
  background: var(--green-pale); border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0; padding: 20px 24px; margin-bottom: 36px;
}
.devises-box p { font-style: italic; color: var(--green); font-weight: 500; font-size: 0.95rem; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.value-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: var(--grey);
  border-radius: 10px; font-size: 0.88rem; font-weight: 600; color: var(--text-dark);
}
.value-pill i { color: var(--green); font-size: 0.85rem; }

/* ══════════════════════════════════════════════
   SECTION DOMAINES (index)
══════════════════════════════════════════════ */
.section-domains { padding: 100px 5%; background: var(--grey); }
.domains-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1280px; margin: 0 auto;
}
.domain-card {
  background: white; border-radius: var(--radius);
  padding: 40px 28px; position: relative; overflow: hidden;
  transition: all 0.4s ease; cursor: default;
  border: 1px solid rgba(46,125,50,0.08);
}
.domain-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 0;
  background: var(--green); transition: height 0.4s ease; z-index: 0;
}
.domain-card:hover                 { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(46,125,50,0.15); }
.domain-card:hover::before         { height: 100%; }
.domain-card > *                   { position: relative; z-index: 1; transition: color 0.4s; }
.domain-card:hover .domain-number  { color: rgba(255,255,255,0.5); }
.domain-card:hover .domain-icon,
.domain-card:hover .domain-title,
.domain-card:hover .domain-desc,
.domain-card:hover .domain-link    { color: white !important; }

.domain-number { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: var(--text-light); margin-bottom: 20px; }
.domain-icon   { font-size: 2.5rem; color: var(--green); margin-bottom: 20px; display: block; }
.domain-title  { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.domain-desc   { font-size: 0.9rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 24px; }
.domain-link   { font-size: 0.85rem; font-weight: 700; color: var(--green); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.domain-link i { font-size: 0.8rem; transition: transform 0.3s; }
.domain-card:hover .domain-link i  { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   SECTION IMPACT (index)
══════════════════════════════════════════════ */
.section-impact {
  padding: 100px 5%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  position: relative; overflow: hidden;
}
.section-impact::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  border: 80px solid rgba(255,255,255,0.05);
  border-radius: 50%; top: -150px; right: -100px;
}
.section-impact::after {
  content: ''; position: absolute;
  width: 300px; height: 300px;
  border: 50px solid rgba(255,255,255,0.04);
  border-radius: 50%; bottom: -80px; left: -60px;
}
.impact-inner  { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.impact-header { text-align: center; margin-bottom: 64px; color: white; }
.impact-header .section-label         { color: var(--green-light); }
.impact-header .section-label::before { background: var(--green-light); }
.impact-header .section-title         { color: white; }
.impact-header .section-subtitle      { color: rgba(255,255,255,0.75); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius); padding: 40px 24px;
  text-align: center; transition: all 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.17); transform: translateY(-6px); }
.stat-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem; color: var(--green-light);
}
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: white; line-height: 1; margin-bottom: 8px; }
.stat-suffix { color: var(--green-light); }
.stat-label  { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 400; }
.counter     { display: inline-block; }

/* ══════════════════════════════════════════════
   SECTION PROJETS (index)
══════════════════════════════════════════════ */
.section-projects { padding: 100px 5%; background: white; }
.projects-inner   { max-width: 1280px; margin: 0 auto; }
.projects-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.project-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07); transition: all 0.4s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.10); }

.project-img {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.project-img-bg              { position: absolute; inset: 0; transition: transform 0.6s ease; }
.project-card:hover .project-img-bg { transform: scale(1.08); }
.project-img-bg.env          { background: linear-gradient(135deg, #1B5E20, #2E7D32, #ff0000); }
.project-img-bg.agri         { background: linear-gradient(135deg, #33691E, #558B2F, #8BC34A); }
.project-img-bg.health       { background: linear-gradient(135deg, #0D47A1, #1565C0, #1E88E5); }
.project-img i               { font-size: 3.5rem; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }

.project-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3); color: white;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; z-index: 2;
}
.project-body  { padding: 24px; }
.project-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.project-desc  { font-size: 0.88rem; line-height: 1.65; color: var(--text-mid); margin-bottom: 20px; }
.project-meta  { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.project-zone  { display: flex; align-items: center; gap: 6px; color: var(--text-light); }
.project-zone i { color: var(--green); }
.project-link  { color: var(--green); font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 4px; font-size: 0.83rem; }
.project-link i { font-size: 0.7rem; transition: transform 0.3s; }
.project-link:hover i { transform: translateX(3px); }

/* ══════════════════════════════════════════════
   SECTION CTA (index)
══════════════════════════════════════════════ */
.section-cta { padding: 100px 5%; background: var(--grey); }
.cta-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
  background: white; border-radius: 28px; padding: 72px 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute;
  width: 300px; height: 300px;
  background: var(--green-pale); border-radius: 50%;
  top: -100px; right: -80px;
}
.cta-inner::after {
  content: ''; position: absolute;
  width: 200px; height: 200px;
  background: rgba(30,136,229,0.05); border-radius: 50%;
  bottom: -60px; left: -50px;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-emoji     { font-size: 3rem; margin-bottom: 24px; display: block; }
.cta-title     { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.cta-desc      { font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; max-width: 540px; margin: 0 auto 40px; }
.cta-buttons   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   BOUTONS
══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: white;
  font-weight: 700; font-size: 0.95rem;
  padding: 15px 30px; border-radius: 12px; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(46,125,50,0.25);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,125,50,0.4); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--green);
  font-weight: 700; font-size: 0.95rem;
  padding: 15px 30px; border-radius: 12px; text-decoration: none;
  border: 2px solid var(--green); transition: all 0.3s;
}
.btn-secondary:hover { background: var(--green-pale); transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   PAGE CONTENT (sous-pages)
══════════════════════════════════════════════ */
.page-content { max-width: 1100px; margin: 0 auto; padding: 80px 5%; }

.intro-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-bottom: 80px;
}
.intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--text-dark);
  margin-bottom: 20px; line-height: 1.25;
}
.intro-text h2 em { color: var(--green); font-style: normal; }
.intro-text p  { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 20px; }

.intro-visual {
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  border-radius: 24px; padding: 48px 36px;
  color: white; position: relative; overflow: hidden;
}
.intro-visual::before {
  content: ''; position: absolute;
  width: 200px; height: 200px;
  border: 30px solid rgba(255,255,255,0.07);
  border-radius: 50%; top: -50px; right: -50px;
}
.intro-visual .big-icon { font-size: 4rem; margin-bottom: 20px; display: block; }
.intro-visual h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }
.intro-visual p  { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.8); position: relative; z-index: 1; }
.stat-row        { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.mini-stat       { text-align: center; }
.mini-stat .num  { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; display: block; color: var(--green-light); }
.mini-stat .lbl  { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

.develop-section           { margin-bottom: 80px; }
.develop-section > h2      { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.1rem); font-weight: 700; color: var(--text-dark); margin-bottom: 48px; }
.develop-section > h2 em   { color: var(--green); font-style: normal; }

.actions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 48px; }
.action-card {
  background: var(--grey); border-radius: var(--radius);
  padding: 32px 28px; border-left: 4px solid var(--green);
  transition: all 0.3s;
}
.action-card:hover      { background: var(--green-pale); transform: translateX(4px); }
.action-card .ac-icon   { font-size: 1.8rem; color: var(--green); margin-bottom: 14px; display: block; }
.action-card h4         { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.action-card p          { font-size: 0.9rem; line-height: 1.7; color: var(--text-mid); }

.highlight-box {
  background: var(--green); color: white;
  border-radius: 20px; padding: 48px;
  margin-bottom: 48px; position: relative; overflow: hidden;
}
.highlight-box::before {
  content: ''; position: absolute;
  width: 300px; height: 300px;
  border: 50px solid rgba(255,255,255,0.06);
  border-radius: 50%; top: -80px; right: -60px;
}
.highlight-box h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; position: relative; z-index: 1; }
.highlight-box p  { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.85); position: relative; z-index: 1; max-width: 720px; }

.text-block       { margin-bottom: 36px; }
.text-block h3    { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.text-block p     { font-size: 1rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 14px; }
.text-block ul    { list-style: none; padding: 0; }
.text-block ul li {
  padding: 10px 0 10px 28px; position: relative;
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.text-block ul li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 12px; height: 12px;
  background: var(--green-pale); border: 2px solid var(--green); border-radius: 50%;
}

.conclusion-section {
  background: var(--grey); border-radius: 24px;
  padding: 64px 56px; margin-bottom: 60px; text-align: center;
}
.conclusion-section h2    { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.conclusion-section h2 em { color: var(--green); font-style: normal; }
.conclusion-section p     { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); max-width: 720px; margin: 0 auto 20px; }
.cta-row                  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.related-card {
  background: white; border: 1px solid rgba(46,125,50,0.12);
  border-radius: var(--radius); padding: 28px 24px;
  text-decoration: none; transition: all 0.3s; display: block;
}
.related-card:hover    { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(46,125,50,0.12); border-color: var(--green); }
.related-card .rc-icon { font-size: 2rem; color: var(--green); margin-bottom: 12px; display: block; }
.related-card h4       { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.related-card p        { font-size: 0.85rem; line-height: 1.6; color: var(--text-mid); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: var(--text-dark); color: white;
  padding: 72px 5% 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1280px; margin: 0 auto;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand p {
  font-size: 0.88rem; line-height: 1.8;
  color: rgba(255,255,255,0.55); margin: 16px 0 24px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.9rem; transition: all 0.3s;
}
.social-link:hover { background: var(--green); border-color: var(--green); color: white; transform: translateY(-2px); }

.footer-col h4 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer-col ul          { list-style: none; }
.footer-col ul li       { margin-bottom: 10px; }
.footer-col ul li a     { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-col ul li a i   { font-size: 0.7rem; color: var(--green-light); }

.footer-contact-item    { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-contact-item i  { color: var(--green-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a  { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--green-light); }

.footer-bottom {
  max-width: 1280px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--green-light); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }
.footer-heart { color: var(--green-light); }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
.fade-in         { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .domains-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .section-about    { grid-template-columns: 1fr; gap: 48px; }
  .about-card-main  { height: 340px; }
  .projects-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .intro-section    { grid-template-columns: 1fr; }
  .actions-grid     { grid-template-columns: 1fr; }
  .related-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .domains-grid        { grid-template-columns: 1fr; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .projects-grid       { grid-template-columns: 1fr; }
  .cta-inner           { padding: 48px 28px; }
  .footer-grid         { grid-template-columns: 1fr; }
  .slide-content       { padding: 0 6% 20%; }
  .about-values        { grid-template-columns: 1fr; }
  .related-grid        { grid-template-columns: 1fr; }
  .conclusion-section  { padding: 40px 24px; }
  .highlight-box       { padding: 36px 28px; }
  .section-about       { padding: 60px 5%; }
  .section-domains     { padding: 60px 5%; }
  .section-impact      { padding: 60px 5%; }
  .section-projects    { padding: 60px 5%; }
  .section-cta         { padding: 60px 5%; }
  .page-content        { padding: 48px 5%; }
}

@media (max-width: 480px) {
  .stats-grid   { grid-template-columns: 1fr; }
  .stat-card    { padding: 28px 20px; }
  .about-badge  { bottom: -16px; right: -8px; }
}
