@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --vert-fonce:  #7A9E7E;
  --vert-clair:  #D4EDDA;
  --beige:       #F5EDE0;
  --or:          #D4A017;
  --brun:        #3B2314;
  --blanc:       #FFFFFF;
  --texte:       #333333;
}

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--texte);
  background-color: var(--beige);
  font-size: 17px;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--beige);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar-gauche {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar-nom {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vert-fonce);
  letter-spacing: 1px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 3rem;
  background-color: var(--beige);
  min-height: calc(100vh - 70px);
}

.hero-gauche {
  flex: 1;
}

.surtitre {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.hero-gauche h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--vert-fonce);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-accroche {
  font-size: 1.05rem;
  color: var(--brun);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.hero-texte {
  font-size: 1.1rem;
  color: var(--texte);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
}

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

.bouton {
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.bouton-principal {
  background-color: var(--vert-fonce);
  color: var(--blanc);
  border-color: var(--vert-fonce);
}

.bouton-principal:hover {
  background-color: transparent;
  color: var(--vert-fonce);
}

.bouton-secondaire {
  background-color: transparent;
  color: var(--vert-fonce);
  border-color: var(--vert-fonce);
}

.bouton-secondaire:hover {
  background-color: var(--vert-fonce);
  color: var(--blanc);
}

.hero-droite {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  max-height: 500px;
}

.hero-droite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* IMPACTS */
.impacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 4rem 3rem;
  background-color: var(--vert-clair);
}

.impact-carte {
  background: var(--blanc);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.impact-icone {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.impact-carte h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--vert-fonce);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impact-carte p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--texte);
}

/* ELEGANCE */
.elegance {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 5rem 3rem;
  background-color: var(--vert-clair);
}

.elegance-gauche {
  flex: 1;
}

.elegance-gauche img {
  width: 100%;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  object-fit: cover;
  max-height: 450px;
}

.elegance-droite {
  flex: 1;
}

.elegance-droite h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--vert-fonce);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.elegance-accroche {
  font-size: 0.95rem;
  color: var(--texte);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.elegance-citation {
  border-left: 3px solid var(--or);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.elegance-citation p {
  font-size: 1.05rem;
  color: var(--texte);
  line-height: 1.8;
  font-style: italic;
}

.elegance-slogan {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--vert-fonce);
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
}

/* Section Comment ça marche  */

.comment-ca-marche {
  background-color: var(--beige); 
  padding: 5rem 1rem;
  color: var(--or);
  overflow: hidden;
}

.cartes-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 500px;
  max-width: 1200px;
  margin: 0 auto;
}

.carte-arrondie {
  background-color: var(--vert-fonce);
  border: 2px solid var(--or);
  border-radius: 20px; 
  padding: 2rem;
  width: 320px;
  text-align: center;
  position: absolute;
  z-index: 1;
  transform: translateX(0) rotate(0);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.5;
}

#etape-2 { z-index: 3; opacity: 1; }

.comment-ca-marche.active #etape-1 {
  transform: translateX(-115%) rotate(-5deg);
  opacity: 1;
}

.comment-ca-marche.active #etape-3 {
  transform: translateX(115%) rotate(5deg);
  opacity: 1;
}

.comment-ca-marche.active #etape-2 {
  transform: scale(1.05);
}

.ligne-deco { 
  width: 50px;
  height: 2px; 
  background-color: var(--or); 
}
.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.titre-header { 
  font-family: 'Lato', sans-serif; 
  font-size: 0.85rem; 
  font-weight: 700; 
  text-transform: uppercase;
}
.img-carree { 
  width: 100%; 
  aspect-ratio: 1/1; 
  object-fit: cover; 
  border-radius: 12px; 
  margin-bottom: 1.5rem;
}
.texte-carte { font-size: 1.1rem; line-height: 1.5; color: var(--blanc); }
.fleche-or {
   position: absolute;
   bottom: 12px;
   right: 20px; 
   color: var(--or); 
   font-size: 2rem; 
  }

.concept-img { 
  width: 100%; 
  aspect-ratio: 1/1; 
  object-fit: cover; 
  border-radius: 12px; 
  margin-bottom: 1.5rem; 
}

/* AGISSONS ENSEMBLE */
.agissons {
  padding: 5rem 3rem;
  background-color: var(--beige);
}

.agissons h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--brun);
  margin-bottom: 3rem;
  text-align: center;
}

.agissons-contenu {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.agissons-gauche {
  flex: 1;
}

.agissons-gauche .surtitre {
  color: var(--or);
  margin-bottom: 1.25rem;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.agissons-gauche p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--texte);
  margin-bottom: 1.5rem;
}

.agissons-gauche h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brun);
  margin-bottom: 1rem;
}

.agissons-liste {
  padding-left: 1.25rem;
  color: var(--texte);
  font-size: 1.1rem;
  line-height: 1.8;
}

.agissons-liste li {
  margin-bottom: 1rem;
}

.agissons-droite {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.agissons-droite img {
  width: 100%;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  object-fit: cover;
  max-height: 350px;
}

.stat-bloc {
  background: var(--vert-clair);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-chiffre {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vert-fonce);
}

.stat-texte {
  font-size: 0.95rem;
  color: var(--texte);
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CERCLE VERTUEUX */
.cercle {
  padding: 5rem 3rem;
  background-color: var(--vert-clair);
}

.cercle-header {
  border-top: 2px solid var(--vert-fonce);
  padding-top: 1.5rem;
  margin-bottom: 3rem;
}

.cercle-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brun);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cercle-contenu {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.cercle-gauche {
  flex: 1;
}

.cercle-gauche p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--texte);
}

.cercle-liste {
  padding-left: 1.25rem;
  margin-top: 1rem;
  color: var(--texte);
  font-size: 1.1rem;
  line-height: 1.8;
}

.cercle-liste li {
  margin-bottom: 1rem;
}

.cercle-droite {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cercle-droite img {
  width: 100%;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  object-fit: cover;
  max-height: 350px;
}

/* MOMENT DE PAUSE */
.pause {
  padding: 5rem 3rem;
  background-color: var(--beige);
}

.pause-header {
  background-color: var(--vert-clair);
  border-radius: 50px;
  padding: 1.25rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.pause-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brun);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pause-contenu {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.pause-gauche {
  flex: 1;
}

.pause-gauche p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--texte);
  margin-bottom: 1rem;
}

.pause-liste {
  padding-left: 1.25rem;
  margin: 1rem 0;
  color: var(--texte);
  font-size: 1.1rem;
  line-height: 1.8;
}

.pause-liste li {
  margin-bottom: 0.75rem;
}

.pause-droite {
  flex: 1;
}

.pause-droite img {
  width: 100%;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  object-fit: cover;
  max-height: 400px;
}


/* =============================================
   RESPONSIVE — TABLETTE (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .hero {
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .impacts {
    padding: 3rem 2rem;
    gap: 1rem;
  }

  .elegance,
  .agissons-contenu,
  .cercle-contenu,
  .pause-contenu,
  .porteuse-contenu {
    gap: 2.5rem;
  }

  .cartes-container {
    height: 460px;
  }

  .carte-arrondie {
    width: 270px;
  }

  .comment-ca-marche.active #etape-1 {
    transform: translateX(-105%) rotate(-5deg);
  }

  .comment-ca-marche.active #etape-3 {
    transform: translateX(105%) rotate(5deg);
  }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    padding: 0.75rem 1.25rem;
  }

  .navbar-logo {
    width: 40px;
    height: 40px;
  }

  .navbar-nom {
    font-size: 0.95rem;
  }

  /* HERO */
  .hero {
    flex-direction: column;
    padding: 2.5rem 1.25rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-gauche h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-texte {
    max-width: 100%;
  }

  .hero-droite {
    width: 100%;
    max-height: 300px;
  }

  .hero-boutons {
    flex-direction: column;
  }

  .bouton {
    text-align: center;
  }

  /* IMPACTS */
  .impacts {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.25rem;
  }

  /* ELEGANCE */
  .elegance {
    flex-direction: column;
    padding: 3rem 1.25rem;
    gap: 2rem;
  }

  .elegance-gauche img {
    max-height: 300px;
  }

  .elegance-droite h2 {
    font-size: 1.3rem;
  }

  /* COMMENT ÇA MARCHE */
  .comment-ca-marche {
    padding: 3rem 1.25rem;
  }

  /* Sur mobile : on empile les cartes verticalement, pas d'animation éventail */
  .cartes-container {
    height: auto;
    flex-direction: column;
    position: static;
    gap: 1.25rem;
    align-items: stretch;
    max-width: 100%;
  }

  .carte-arrondie {
    position: static;
    width: 100%;
    opacity: 1;
    transform: none !important;
    transition: none;
  }

  /* Annule toutes les animations d'éventail sur mobile */
  .comment-ca-marche.active #etape-1,
  .comment-ca-marche.active #etape-2,
  .comment-ca-marche.active #etape-3 {
    transform: none;
    opacity: 1;
  }

  /* AGISSONS ENSEMBLE */
  .agissons {
    padding: 3rem 1.25rem;
  }

  .agissons h2 {
    font-size: 1.5rem;
  }

  .agissons-contenu {
    flex-direction: column;
  }

  .agissons-droite img {
    max-height: 260px;
  }

  .stat-chiffre {
    font-size: 2rem;
  }

  /* CERCLE VERTUEUX */
  .cercle {
    padding: 3rem 1.25rem;
  }

  .cercle-header h2 {
    font-size: 1.2rem;
  }

  .cercle-contenu {
    flex-direction: column;
  }

  .cercle-droite img {
    max-height: 260px;
  }

  /* MOMENT DE PAUSE */
  .pause {
    padding: 3rem 1.25rem;
  }

  .pause-contenu {
    flex-direction: column;
  }

  .pause-droite img {
    max-height: 280px;
  }

  .pause-titre {
    font-size: 1.3rem;
  }


}
/* =============================================
   RESPONSIVE — PETIT MOBILE (max 400px)
   ============================================= */
@media (max-width: 400px) {
  .hero-gauche h1 {
    font-size: 2.2rem;
  }

  .bouton {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .stat-chiffre {
    font-size: 1.75rem;
  }

  .elegance-slogan {
    font-size: 1rem;
  }
}


/* PAGE INSTALLER UN CORNER */
.installer-hero {
  padding: 5rem 3rem;
  background-color: var(--beige);
  text-align: center;
}

.installer-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--vert-fonce);
  margin: 1rem 0;
  line-height: 1.2;
}

.installer-hero p {
  font-size: 1.1rem;
  color: var(--texte);
  margin-top: 1rem;
}

/* ARGUMENTS */
.arguments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 4rem 3rem;
  background-color: var(--vert-clair);
}

.argument-carte {
  background: var(--blanc);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.argument-icone {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.argument-carte h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--vert-fonce);
  margin-bottom: 0.75rem;
}

.argument-carte p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--texte);
}

/* FORMULAIRE */
.formulaire-section {
  display: flex;
  gap: 4rem;
  padding: 5rem 3rem;
  background-color: var(--beige);
  align-items: flex-start;
}

.formulaire-gauche {
  flex: 1;
}

.formulaire-gauche h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--brun);
  margin-bottom: 1rem;
}

.formulaire-gauche p {
  font-size: 1.1rem;
  color: var(--texte);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.formulaire-photo {
  width: 100%;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  object-fit: cover;
  max-height: 350px;
}

.formulaire-droite {
  flex: 1;
}

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

.champ {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.champ label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brun);
  letter-spacing: 0.5px;
}

.champ input,
.champ textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: var(--texte);
  background: var(--blanc);
  transition: border-color 0.3s ease;
}

.champ input:focus,
.champ textarea:focus {
  outline: none;
  border-color: var(--vert-fonce);
}

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

@media (max-width: 768px) {
  .arguments {
    grid-template-columns: repeat(2, 1fr);
  }
  .formulaire-section {
    flex-direction: column;
  }
}


/* PAGE MON CORNER */
.recherche-section {
  padding: 5rem 3rem;
  background-color: var(--beige);
  text-align: center;
}

.recherche-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--vert-fonce);
  margin: 1rem 0;
}

.recherche-section p {
  font-size: 1.1rem;
  color: var(--texte);
  margin-bottom: 2rem;
}

.recherche-barre {
  display: flex;
  gap: 1rem;
  max-width: 550px;
  margin: 0 auto;
  justify-content: center;
}

.recherche-barre input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--texte);
  background: var(--blanc);
  transition: border-color 0.3s ease;
}

.recherche-barre input:focus {
  outline: none;
  border-color: var(--vert-fonce);
}

/* DASHBOARD */
.dashboard {
  padding: 4rem 3rem;
  background-color: var(--vert-clair);
}

.dashboard-header {
  text-align: center;
  margin-bottom: 3rem;
}

.dashboard-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--brun);
}

.dashboard-entreprise {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--vert-fonce);
  font-style: italic;
  display: block;
  margin-top: 0.5rem;
}

/* INDICATEURS */
.indicateurs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.indicateur-carte {
  background: var(--blanc);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.indicateur-icone {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.indicateur-chiffre {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vert-fonce);
  display: block;
  margin-bottom: 0.5rem;
}

.indicateur-label {
  font-size: 1rem;
  color: var(--texte);
  line-height: 1.5;
}

/* ACTIONS RAPIDES */
.actions-rapides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.action-carte {
  background: var(--vert-fonce);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-carte:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.action-icone {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.action-carte h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

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

/* CONSIGNES */
.consignes {
  background: var(--blanc);
  border-radius: 14px;
  padding: 2rem;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.consignes h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brun);
  margin-bottom: 1rem;
}

.consignes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.consignes ul li {
  font-size: 1.05rem;
  color: var(--texte);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .indicateurs,
  .actions-rapides {
    grid-template-columns: 1fr;
  }
  .recherche-barre {
    flex-direction: column;
  }
}

/* POPUP */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.popup-contenu {
  background: var(--blanc);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: apparaitre 0.3s ease;
}

@keyframes apparaitre {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.popup-fermer {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--texte);
  transition: color 0.3s ease;
}

.popup-fermer:hover {
  color: var(--vert-fonce);
}

.popup-contenu h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brun);
  margin-bottom: 1.5rem;
}

.popup-contenu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.popup-contenu ul li {
  font-size: 1.05rem;
  color: var(--texte);
  line-height: 1.6;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.impact-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* FOOTER */
.footer {
  background-color: #2C1A0E;
  padding: 2.5rem 3rem;
}

.footer-contenu {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.footer-gauche {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.footer-projet {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.footer-projet strong {
  color: var(--or);
}

.footer-contact-ligne {
  font-size: 0.9rem;
  color: var(--or);
  margin-bottom: 0.5rem;
}

.footer-reseaux-titre {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
  text-align: right;
}

.footer-reseaux {
  display: flex;
  justify-content: flex-end;
}

.reseau-btn {
  width: 36px;
  height: 36px;
  background: var(--or);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blanc);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.reseau-btn:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-contenu {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-reseaux-titre,
  .footer-reseaux {
    text-align: left;
    justify-content: flex-start;
  }
}
/* ============================================
   RESPONSIVE — installer-corner.html
   ============================================ */
@media (max-width: 768px) {

  /* HERO */
  .installer-hero {
    padding: 3rem 1.5rem;
  }

  .installer-hero h1 {
    font-size: 2rem;
  }

  .installer-hero p {
    font-size: 0.95rem;
  }

  /* ARGUMENTS — 2 colonnes sur mobile */
  .arguments {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1.5rem;
    gap: 1rem;
  }

  .argument-carte {
    padding: 1.25rem;
  }

  .argument-icone {
    font-size: 1.75rem;
  }

  .argument-carte h3 {
    font-size: 0.95rem;
  }

  .argument-carte p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--texte);
}

  /* FORMULAIRE — empilé sur mobile */
  .formulaire-section {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .formulaire-gauche h2 {
    font-size: 1.5rem;
  }

  .champ input,
  .champ textarea {
    font-size: 1rem; /* évite le zoom automatique sur iOS */
  }

  .bouton-principal {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {

  /* ARGUMENTS — 1 colonne sur très petit écran */
  .arguments {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — mon-corner.html
   ============================================ */
@media (max-width: 768px) {

  /* RECHERCHE */
  .recherche-section {
    padding: 3rem 1.5rem;
  }

  .recherche-section h1 {
    font-size: 2rem;
  }

  .recherche-barre {
    flex-direction: column;
    gap: 0.75rem;
  }

  .recherche-barre input {
    width: 100%;
  }

  .recherche-barre .bouton {
    width: 100%;
    text-align: center;
  }

  /* DASHBOARD */
  .dashboard {
    padding: 2rem 1.5rem;
  }

  .dashboard-header h2 {
    font-size: 1.5rem;
  }

  .dashboard-entreprise {
    font-size: 1.2rem;
  }

  /* INDICATEURS — 1 colonne */
  .indicateurs {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .indicateur-chiffre {
    font-size: 2rem;
  }

  /* ACTIONS RAPIDES — 1 colonne */
  .actions-rapides {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .action-carte {
    padding: 1.5rem;
  }

  /* POPUP */
  .popup-contenu {
    padding: 1.5rem;
    width: 95%;
  }

  .popup-contenu h3 {
    font-size: 1.1rem;
  }

  /* IMPACT STATS — 1 colonne */
  .impact-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


/* ============================================
   AJUSTEMENT TAILLE TEXTE — RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .hero-texte,
  .impact-carte p,
  .elegance-citation p,
  .agissons-gauche p,
  .agissons-liste,
  .cercle-gauche p,
  .cercle-liste,
  .pause-gauche p,
  .pause-liste,
  .porteuse-gauche p,
  .argument-carte p,
  .formulaire-gauche p,
  .recherche-section p,
  .consignes ul li,
  .popup-contenu ul li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-texte,
  .impact-carte p,
  .elegance-citation p,
  .agissons-gauche p,
  .agissons-liste,
  .cercle-gauche p,
  .cercle-liste,
  .pause-gauche p,
  .pause-liste,
  .porteuse-gauche p,
  .argument-carte p,
  .formulaire-gauche p,
  .recherche-section p {
    font-size: 0.95rem;
  }
}

/* FLÈCHE DE RETOUR */
.retour-lien {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vert-fonce);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  border: 1.5px solid var(--vert-fonce);
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

.retour-lien:hover {
  background-color: var(--vert-fonce);
  color: var(--blanc);
}

@media (max-width: 768px) {
  .retour-lien {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
}






