/* ── FILIGRANE OISEAU ── */
.watermark-bird {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.watermark-bird svg {
  width: 100%;
  height: 100%;
}

/* Hero — filigrane bas gauche comme la maquette */
.hero .watermark-bird {
  width: 860px;
  height: 630px;
  left: -100px;
  bottom: -70px;
  top: auto;
  transform: none;
  /*opacity: 0.5;*/
}

.watermark-bird-2 {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 600px;
  height: 500px;
  right: -40px;
  top: 50%;
  opacity: 0.25;
}

.watermark-bird-2 svg {
  width: 100%;
  height: 100%;
}

.hero .container,
.about .container {
  position: relative;
  z-index: 1;
}

.hero .container {
  max-width: var(--max-width);
  padding: 0 60px;
  width: 100%;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--blanc-creme);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

/* Texte + bouton colonne droite */
.hero-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-left: 0;
  max-width: 100%;
}

.hero-sub p {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.75;
  margin: 0;
}

.hero-sub .button {
  margin-top: 0;
  background: var(--bleu-clair);
  color: var(--bleu-nuit);
}

.hero-sub .button:hover {
  background: #b8d4f0;
}


/* Bandeau tagline entre hero et bénéfices */
.hero-tagline {
  background: var(--blanc-creme);
  padding: 80px 0;
  border-top: 1px solid rgba(29,27,52,0.08);
  border-bottom: 1px solid rgba(29,27,52,0.08);
}

.hero-tagline h2 {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.5px;
  max-width: 700px;
  margin: 0 auto;
}

/* ── BÉNÉFICES ── */
.benefices {
  background: var(--bleu-nuit);
  padding: 100px 0;
  color: white;
}

.benefices-header {
  max-width: 520px;
  margin-bottom: 20px;
}

.benefices-header h2 {
  color: white;
  margin-bottom: 16px;
}

.benefices-header p {
  font-size: 14px;
  opacity: 0.55;
  line-height: 1.7;
}

/* ── IMPACT / MESURER ── */
.impact {
  background: var(--bleu-nuit);
  padding: 100px 0;
  color: white;
}

.impact-inner {
  max-width: 520px;
  margin-left: auto;
}
  

.impact h2 {
  color: white;
  text-align: left;
  margin-bottom: 12px;
}

.impact-intro {
  font-size: 14px;
  opacity: 0.6;
  text-align: left;
  margin-bottom: 40px;
  line-height: 1.7;
}

.impact-criteres {
  margin-bottom: 50px;
}

.impact-criteres p {
  text-align: left;
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 8px;
}

.impact-criteres ul {
  text-align: left;
  padding-left: 0;
  list-style: none;
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.9;
}

.impact-criteres ul li::before {
  content: "• ";
}

/* Tableau comparatif */
.impact-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  font-size: 12px;
}

.impact-table th {
  text-align: left;
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.impact-table td {
  padding: 12px 16px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.impact-table tr:last-child td {
  border-bottom: none;
}

.score-badge {
  display: inline-block;
  background: var(--jaune);
  color: var(--bleu-nuit);
  font-family: var(--font-titre);
  font-weight: 800;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 4px;
}

.impact-note {
  font-size: 11px;
  opacity: 0.35;
  margin-top: 20px;
}


/* ── À PROPOS ── */
.about {
  background: var(--blanc-creme);
  padding: 120px 0 80px;
}

/* ── ABOUT BLUE BLOCK ── */
.about-blue {
  background: #D1E4F8;
  padding: 60px 0 80px;
  position: relative;
}
 
/* Titre pleine largeur au-dessus */
.about-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 50px;
  max-width: 700px;
}
 
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
 
.about-text p {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.75;
  margin-bottom: 14px;
}
 
.about-highlight {
  background: #D1E4F8;
  padding: 40px 30px;
  margin: 50px 0 30px;
  text-align: center;
}

.about-highlight p {
  font-family: var(--font-titre);
  font-size: 15px;
  font-weight: 700;
  opacity: 1;
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0;
  color: var(--bleu-nuit);
}

.about-highlight strong {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

.about-highlight-tagline {
  display: inline-block;
  background: #FCF9F5;
  border-radius: 4px;
  padding: 14px 32px;
  margin-top: 20px;
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bleu-nuit);
  letter-spacing: -0.3px;
}

/* ── PRESTATIONS ── */
.prestations {
  background: var(--blanc-creme);
  padding: 100px 0;
}

.prestations-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.prestations-left h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1.0;
}

.prestations-left p {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 340px;
}

.prestations-left .buttons {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ── ECOCONCU BANDEAU ── */
.ecoconcu {
  background: var(--bleu-nuit);
  color: white;
  padding: 40px 0;
}

.ecoconcu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ecoconcu-label {
  font-family: var(--font-titre);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 6px;
}

.ecoconcu-title {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

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

.ecoconcu-stat p {
  font-size: 16px;
  opacity: 0.55;
  line-height: 1.5;
}

.ecoconcu-score {
  text-align: right;
}

.score-label {
  font-size: 11px;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.score-value {
  font-family: var(--font-titre);
  font-size: 32px;
  font-weight: 800;
}

.score-grade {
  font-family: var(--font-titre);
  font-size: 48px;
  font-weight: 800;
  color: var(--jaune);
  line-height: 1;
}
