.elementor-110 .elementor-element.elementor-element-9e5ba60{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-110 .elementor-element.elementor-element-34608d0{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-110 .elementor-element.elementor-element-f26798e{--display:flex;--margin-top:-110px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-110 .elementor-element.elementor-element-6a60f4d{background-color:var( --e-global-color-astglobalcolor5 );border-radius:30px 30px 30px 30px;}@media(max-width:767px){.elementor-110 .elementor-element.elementor-element-f26798e{--margin-top:-30px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(min-width:768px){.elementor-110 .elementor-element.elementor-element-9e5ba60{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-6a60f4d *//* ==================================================
   VARIABLES
================================================== */
:root {
  --orange: #f9a13b;
  --corail: #f16153;
  --bleu: #47c6e7;
  --jaune: #ffba00;
  --or: #b88f30;

  --dark: #1f2933;
  --gray: #6b7280;

  --radius: 14px;
}

/* ==================================================
   BASE
================================================== */
body {
  background: #ffffff;
  color: var(--dark);
  line-height: 1.6;
}

a {
  color: var(--bleu);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ==================================================
   HERO
================================================== */
.solar-hero {
  padding: 80px 20px;
  text-align: center;
}

.solar-hero h1 {
  font-size: 2.4rem;
  max-width: 900px;
  margin: 0 auto 15px;
}

.solar-hero p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--gray);
}

/* ==================================================
   CTA
================================================== */
.solar-cta {
  display: inline-block;
  margin: 12px;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.solar-cta.primary {
  background: var(--orange);
  color: #000;
}

.solar-cta.primary:hover {
  transform: translateY(-2px);
}

.solar-cta.secondary {
  border: 2px solid var(--bleu);
  color: var(--bleu);
}

.solar-cta.secondary:hover {
  background: var(--bleu);
  color: #fff;
}

/* ==================================================
   SECTIONS
================================================== */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: auto;
}

/* ==================================================
   BLOCS TEXTE
================================================== */
.included-box {
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 900px;
  margin: auto;
}

/* ==================================================
   GRILLES
================================================== */
.advantages,
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* ==================================================
   CARTES
================================================== */
.advantage-card,
.included-grid > div {
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
}

/* ==================================================
   LISTES
================================================== */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding-left: 26px;
  margin-bottom: 10px;
  position: relative;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--jaune);
}

/* ==================================================
   IMAGES
================================================== */
.advantage-card img,
.included-grid img,
.zone-map img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 15px;
}

/* ==================================================
   ZONE D’INTERVENTION – VERSION ANIMÉE
================================================== */
.zone-section {
  position: relative;
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Texte */
.zone-text {
  border: 2px dashed var(--bleu);
  border-radius: var(--radius);
  padding: 35px;
  animation: fadeUp 0.8s ease forwards;
}

.zone-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.zone-list li {
  margin-bottom: 14px;
}

.zone-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--dark);
  transition: transform 0.25s ease, color 0.25s ease;
}

.zone-list a:hover {
  transform: translateX(6px);
  color: var(--bleu);
}

/* Points colorés */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-orange { background: var(--orange); }
.dot-blue   { background: var(--bleu); }
.dot-gold   { background: var(--or); }
.dot-coral  { background: var(--corail); }

/* Carte */
.zone-map-animated {
  animation: fadeInScale 0.9s ease forwards;
}

.zone-map-animated img {
  height: 500px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.zone-map-animated img:hover {
  transform: scale(1.03);
}

/* CTA zone */
.zone-cta {
  margin-top: 10px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==================================================
   CTA FINAL
================================================== */
.final-cta {
  border-top: 3px solid var(--jaune);
  padding: 80px 20px;
  text-align: center;
}

.final-cta .phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corail);
  margin-top: 15px;
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 768px) {

  .solar-hero h1 {
    font-size: 1.8rem;
  }

  .section-title h2,
  .zone-text h2,
  .final-cta h2 {
    font-size: 1.5rem;
  }

  .zone-grid {
    grid-template-columns: 1fr;
  }

  .zone-text {
    text-align: center;
  }

  .zone-list a {
    justify-content: center;
  }

  .zone-map-animated img {
    height: 300px;
  }
}/* End custom CSS */