/* ===== VARIABLES THEME ===== */
:root {
    --color-bg: #f3f8f5;
    --color-bg-card: #ffffff;
    --color-primary: #0AAA66;
    --color-primary-dark: #008b57;
    --color-text: #031634;
    --color-text-secondary: #53657a;
    --color-border: rgba(3, 22, 52, .07);
    --color-border-strong: #d9dfe3;
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --box-shadow-card: 0 20px 45px rgba(3, 22, 52, .05);
    --box-shadow-card-hover: 0 30px 60px rgba(3, 22, 52, .10);
    --border-radius-card: 28px;
    --border-radius-sm: 20px;
}

/* ===== STYLES GLOBAUX ===== */
body,
.skit,
.ne-parcours,
.noe-partners-wrap,
.maintenance-contracts {
    font-family: var(--font-family);
}

/* ===== HERO JOIN - UNIQUEMENT LES STYLES SPÉCIFIQUES ===== */
.hero-join {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
  width: 100%;
}

/* Image de fond */
.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
  filter: brightness(0.6) saturate(1.2);
}

/* ===== GRILLE PRINCIPALE ===== */
.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 1rem;
}

/* ===== CONTENU GAUCHE ===== */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  padding: 1rem 4rem;
  width: 100%;
}

.hero-content img {
  width: 200px;
  height: auto;
  display: block;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-bottom: 3rem;
}

.hero-content img:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* ===== CHECKLIST ===== */
.hero__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.hero__checklist li {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding-left 0.3s ease;
}

.hero__checklist li:hover {
  padding-left: 0.5rem;
}

.hero__checklist .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== TITRE DROITE ===== */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.btn-contener {
  align-items: center;
  text-align: center;
  align-self: flex-end;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  width: 700px;
}

.hero-title span {
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

/* ===== BOUTON HERO ===== */
.hero-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: #0AAA66;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(10, 170, 102, 0.35);
  width: fit-content;
  z-index: 10;
  position: relative;
}

.hero-btn:hover {
  background: #008b57;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(10, 170, 102, 0.45);
}

.hero-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Mobile */
@media (max-width: 640px) {
    .hero-btn {
        margin-top: 2.5rem;
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
}


/* ============================================
   RESPONSIVE - UNIQUEMENT ESPACEMENTS & TAILLES
   ============================================ */

/* ===== TABLETTES (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    justify-items: center;
  }

  .hero-content {
    align-items: center;
    max-width: 100%;
    padding: 1.5rem 1.5rem;
    gap: 1.5rem;
    text-align: center;
  }

  .hero-content img {
    width: 160px;
  }

  .hero__checklist {
    gap: 0.7rem;
  }

  .hero__checklist li {
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    gap: 0.5rem;
  }

  .hero__checklist .check {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }

  .hero-title {
    text-align: center;
    width: 100%;
    max-width: 700px;
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
}

/* ===== TABLETTES MOYENNES (max-width: 820px) ===== */
@media (max-width: 820px) {
  .hero-grid {
    padding: 1rem 1rem;
    gap: 1.2rem;
  }

  .hero-content {
    padding: 1rem 1rem;
    gap: 1rem;
  }

  .hero-content img {
    width: 140px;
  }

  .hero__checklist {
    gap: 0.5rem;
  }

  .hero__checklist li {
    font-size: 0.8rem;
    padding: 0.25rem 0;
    gap: 0.5rem;
  }

  .hero__checklist .check {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
}

/* ===== MOBILES (max-width: 640px) ===== */
@media (max-width: 640px) {
  .hero-grid {
    padding: 0.6rem 0.8rem;
    gap: 0.8rem;
  }

  .hero-content {
    padding: 1rem 0.8rem;
    gap: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-content img {
    width: 120px;
  }

  .hero-content img:hover {
    transform: scale(1.03);
  }

  .hero__checklist {
    gap: 0.4rem;
  }

  .hero__checklist li {
    font-size: 0.6rem;
    padding: 0.2rem 0;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .hero__checklist li:hover {
    padding-left: 0;
  }

  .hero__checklist .check {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
    min-width: 20px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
    width: 100%;
    text-align: center;
    line-height: 1.2;
    padding: 0 0.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  }

  .hero-title span {
    display: inline;
  }

  .hero-media {
    opacity: 0.2;
  }
}

/* ===== TRÈS PETITS MOBILES (max-width: 400px) ===== */
@media (max-width: 400px) {
  .hero-grid {
    padding: 0.5rem 0.8rem;
    gap: 0.8rem;
  }

  .hero-content {
    padding: 1rem 0.8rem;
    gap: 1rem;
    border-radius: 12px;
  }

  .hero-content img {
    width: 100px;
  }

  .hero__checklist {
    gap: 0.3rem;
  }

  .hero__checklist li {
    font-size: 0.6rem;
    padding: 0.15rem 0;
    gap: 0.3rem;
  }

  .hero__checklist .check {
    width: 18px;
    height: 18px;
    font-size: 0.55rem;
    min-width: 18px;
  }

  .hero-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
    padding: 0 0.3rem;
  }
}
/* ===== ORIENTATION PAYSAGE SUR MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
  }

  .hero-content {
    padding: 1rem 1rem;
    gap: 1rem;
  }

  .hero-content img {
    width: 90px;
  }

  .hero__checklist {
    gap: 0.3rem;
  }

  .hero__checklist li {
    font-size: 0.7rem;
    padding: 0.15rem 0;
    gap: 0.3rem;
  }

  .hero__checklist .check {
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
  }

  .hero-title {
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    width: 100%;
  }
}

/* ============================================
   ACCESSIBILITÉ & PERFORMANCE
   ============================================ */

/* Réduction des animations */
@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-title {
    opacity: 1;
    animation: none;
  }

  .hero-content img:hover {
    transform: none;
  }

  .hero__checklist li:hover {
    padding-left: 0;
  }
}

/* Support du scroll fluide */
@media (prefers-reduced-motion: no-preference) {
  .hero-join {
    scroll-behavior: smooth;
  }
}

/* ============================================================
   SECTION "QUEL KIT SOLAIRE CHOISIR ?" — slide 7 du prototype
   ============================================================ */

.skit {
  width: 100%;
  box-sizing: border-box;
  padding: 28px 5vw 64px;
  background: var(--color-bg);
  font-family: var(--font-family);
  margin: 0;
}

.skit-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.skit .sec-center {
  margin-bottom: 3rem;
}

/* ---------- Grille des 3 cartes ---------- */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.kit-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
  padding: 2.2rem 1.8rem 2rem;
  box-shadow: var(--box-shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}

.kit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-card-hover);
}

/* Carte mise en avant (Auto-consommation) : léger fond teinté */
.kit-card.is-featured {
  background: var(--color-bg);
  border-color: rgba(10, 184, 106, .18);
}

/* ---------- Icône ronde en tête de carte ---------- */
.kit-icon-wrap {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 10px 26px rgba(3, 22, 52, .08);
  flex-shrink: 0;
}

.kit-icon-wrap svg {
  width: 52px;
  height: 52px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Titre ---------- */
.kit-card h3 {
  font-family: var(--font-family);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 1.2rem;
}

.kit-divider {
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border: none;
  margin: 0 0 1.3rem;
  flex-shrink: 0;
}

/* ---------- Lignes de comparaison ---------- */
.kit-rows {
  display: flex;
  flex-direction: column;
}

.kit-row {
  display: grid;
  grid-template-columns: 26px 1fr 1fr;
  align-items: center;
  gap: .7rem;
  padding: 0;
  border-bottom: 1px solid rgba(3, 22, 52, .08);
  box-sizing: border-box;
}

.kit-rows .kit-row:last-child {
  border-bottom: none;
}

/* Hauteur fixe par ligne */
.kit-rows .kit-row:nth-child(1) { min-height: 68px; }
.kit-rows .kit-row:nth-child(2) { min-height: 87px; }
.kit-rows .kit-row:nth-child(3) { min-height: 53px; }

.kit-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kit-row-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kit-row-label {
  font-size: .88rem;
  color: var(--color-text-secondary);
  line-height: 1.3;
  min-width: 0;
}

.kit-row-value {
  font-size: .88rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.3;
  border-left: 1px solid rgba(3, 22, 52, .08);
  padding-left: .7rem;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Pied de carte : Panneaux / Batterie / Onduleur ---------- */
.kit-foot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: .6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(3, 22, 52, .08);
}

.kit-foot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 0 .4rem;
  border-left: 1px solid rgba(3, 22, 52, .06);
}

.kit-foot-col:first-child {
  border-left: none;
}

.kit-foot-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--color-text);
}

.kit-equip-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kit-status {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kit-status svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kit-status.is-yes { background: var(--color-primary); }
.kit-status.is-no { background: #e04444; }

/* Cas "ou" : deux statuts (check + croix) côte à côte */
.kit-status-group {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.kit-status-or {
  font-size: .72rem;
  font-weight: 600;
  color: #7a92a8;
  text-transform: lowercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .kit-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .skit {
    padding: 48px 5vw 56px;
  }

  .kit-card {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .kit-icon-wrap {
    width: 88px;
    height: 88px;
  }

  .kit-icon-wrap svg {
    width: 44px;
    height: 44px;
  }

  .kit-row {
    grid-template-columns: 22px 1fr 1fr;
    gap: .5rem;
  }

  .kit-row-label,
  .kit-row-value {
    font-size: .82rem;
  }
}

/** ============================================
   INTRO
   ============================================ */
.intro {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 52px 3vw 48px;
}

.intro p{
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: var(--font-family);
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    letter-spacing: .02em;
    font-weight: 800;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.card-item > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-label {
  font-weight: 500;
  color: #333;
}

.item-value {
  color: var(--color-primary);
  font-weight: 600;
}

.card-divider {
  border: 0;
  height: 1px;
  background: #e8ecef;
  margin: 4px 0;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #e8ecef;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  transition: background 0.3s ease;
}

.tag:hover {
  background: var(--color-bg);
}

.tag span {
  font-size: 12px;
  color: #555;
}

.stat {
  width: 100%;
  height: 4px;
  background: #e8ecef;
  border-radius: 2px;
}

/* ============================================
   PARCOURS
   ============================================ */
.ne-parcours {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 28px 5vw;
  margin: auto;
  background: var(--color-bg);
  font-family: var(--font-family);
  position: relative;
  box-sizing: border-box;
}

.ne-parcours-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0.5 auto;
  box-sizing: border-box;
}

.ne-parcours-head {
  text-align: center;
  margin-bottom: 4.5rem;
}

.ne-parcours-head h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--color-text);
}


.ne-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.ne-steps::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: var(--color-bg);
  border-radius: 9999px;
  z-index: 1;

}

.ne-step {
  background: var(--color-bg);
  border: 1px solid var(--color-primary);
  border-radius: var(--border-radius-sm);
  padding: 2rem 2rem 2rem 4.2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.ne-step:hover {
  transform: translateY(-8px);
  background: #e5f2e7;
  border-color: #9df8af;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ne-step::before {
  content: attr(data-n);
  position: absolute;
  left: -12px;
  top: 28px;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: var(--color-bg);
  font-size: 1.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #e5f2e7;
  z-index: 3;
  transition: all 0.4s ease;
}

.ne-step:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px #9df8af;
}

.ne-step h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.ne-step p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(3, 21, 53, 0.72);
  margin: 0;
}

@media (max-width: 640px) {
  .ne-parcours {
    padding: 70px 5vw 80px;
  }

  .ne-step {
    width: 100%;
    padding: 1.8rem 1.2rem 1.8rem 3.8rem;
  }

  .ne-step::before {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    left: -8px;
    top: 24px;
  }

  .ne-steps::before {
    left: 22px;
  }

  .ne-step h3 {
    font-size: 1.1rem;
  }

  .ne-step p {
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .ne-step {
    width: 100%;
    padding: 1.5rem 1rem 1.5rem 3.2rem;
  }

  .ne-step::before {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    left: -6px;
    top: 20px;
    box-shadow: 0 0 0 6px #9df8af;
  }

  .ne-steps::before {
    left: 18px;
  }
}

/* ============================================
   PARTENAIRES
   ============================================ */
.noe-partners-wrap {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 28px 5vw;
  background: var(--color-bg);
  font-family: var(--font-family);
  overflow: hidden;
}

.noe-partners-head{
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.noe-partners-head h2 {
  color: var(--color-text);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px 0;
  line-height: 1.05;
}

.noe-partners-head h2 span{
  color: var(--color-primary)
}

.noe-marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.noe-marquee-outer::before,
.noe-marquee-outer::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.noe-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.noe-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.noe-marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: noeScrollPremium 55s linear infinite;
}

.noe-marquee-track:hover {
  animation-play-state: paused;
}

.noe-logo-item {
  flex: 0 0 auto;
  width: 320px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  border-radius: var(--border-radius-card);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow:
    0 16px 40px rgba(3,22,52,0.08),
    0 6px 18px rgba(3,22,52,0.05);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.noe-logo-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--color-primary);
}

.noe-logo-item::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(10,184,106,0.10);
  pointer-events: none;
}

.noe-logo-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 50px rgba(3,22,52,0.12),
    0 8px 20px rgba(3,22,52,0.08);
  border-color: rgba(10,184,106,0.18);
}

.noe-logo-item img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  transition: transform .35s ease, filter .35s ease, opacity .35s ease;
  opacity: 0.95;
}

.noe-logo-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.03);
}

@keyframes noeScrollPremium {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

@media (max-width: 768px) {
  .noe-logo-item {
    width: 220px;
    height: 120px;
    border-radius: 22px;
    padding: 18px 20px;
  }

  .noe-logo-item img {
    max-height: 70px;
  }

  .noe-marquee-outer::before,
  .noe-marquee-outer::after {
    width: 60px;
  }
}

.call_to_action h2{
  color: white;
}

/* ===== VARIABLES THEME ===== */
:root {
    --color-bg: #f3f8f5;
    --color-bg-card: #ffffff;
    --color-primary: #0AAA66;
    --color-primary-dark: #008b57;
    --color-text: #031634;
    --color-text-secondary: #53657a;
    --color-border: rgba(3, 22, 52, .07);
    --color-border-strong: #d9dfe3;
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --box-shadow-card: 0 20px 45px rgba(3, 22, 52, .05);
    --box-shadow-card-hover: 0 30px 60px rgba(3, 22, 52, .10);
    --border-radius-card: 28px;
    --border-radius-sm: 20px;
}

/* ============================================================
   TABLEAU CONTRATS DE MAINTENANCE — VERSION OPTIMISÉE
   Espacement réduit, textes plus gros
   ============================================================ */

:root {
  --maintenance-green: #0AAA66;
  --maintenance-navy: #031634;
  --maintenance-bg: #f3f8f5;
  --maintenance-white: #ffffff;
  --maintenance-line: #e5e9ed;
  --maintenance-text: #031634;
  --maintenance-muted: #53657a;
  --maintenance-indent: 40%;
  --maintenance-radius: 20px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--maintenance-bg);
  color: var(--maintenance-text);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.maintenance-section {
  width: 100%;
  padding: clamp(28px, 4vw, 64px) 5vw;
  background: var(--maintenance-bg);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.maintenance-scroll {
  width: 100%;
  overflow-x: auto;
  padding: 2px;
}

.maintenance-table {
  position: relative;
  isolation: isolate;
  width: min(1180px, 100%);
  min-width: 960px;
  margin: 0 auto;
  color: var(--maintenance-text);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.maintenance-outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  overflow: visible;
  pointer-events: none;
}

.maintenance-outline path {
  fill: none;
  stroke: var(--maintenance-line);
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
  stroke-linecap: round;
}

/* ===== EN-TÊTE ===== */
.maintenance-head {
  width: calc(100% - var(--maintenance-indent));
  margin-left: var(--maintenance-indent);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--maintenance-white);
  border-radius: var(--maintenance-radius) var(--maintenance-radius) 0 0;
  overflow: hidden;
}

.head-cell {
  min-height: 62px; /* RÉDUIT : 74px → 62px */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px; /* RÉDUIT : 16px → 12px */
  font-size: clamp(14px, 1.2vw, 17px); /* AUGMENTÉ */
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  border-right: 1px solid var(--maintenance-line);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.head-cell:last-child { border-right: 0; }
.head-cell--plain { background: #fff; color: var(--maintenance-navy); }
.head-cell--standard { background: var(--maintenance-green); color: #fff; }
.head-cell--premium { background: var(--maintenance-navy); color: #fff; }

/* ===== CORPS ===== */
.maintenance-body {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}

.maintenance-body::before,
.maintenance-body::after {
  content: "";
  position: absolute;
  left: var(--maintenance-indent);
  right: 0;
  height: 1px;
  background: var(--maintenance-line);
  z-index: 8;
  pointer-events: none;
}

.maintenance-body::before { top: 0; }
.maintenance-body::after { bottom: 0; }

/* ===== GROUPES ===== */
.maintenance-group {
  display: grid;
  grid-template-columns: 16% 24% repeat(3, minmax(0, 20%));
  background: #fff;
  position: relative;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.maintenance-group + .maintenance-group {
  border-top: 1px solid var(--maintenance-line);
}

/* RÉDUCTION DES HAUTEURS DES LIGNES */
.maintenance-group--preventive {
  grid-template-rows:
    minmax(80px, auto)  /* CATÉGORIE : réduit 112px → 80px */
    minmax(44px, auto)  /* LIGNE 1 : réduit 72px → 44px */
    minmax(44px, auto)  /* LIGNE 2 : réduit 82px → 44px */
    minmax(44px, auto); /* LIGNE 3 : réduit 92px → 44px */
}

.maintenance-group--curative {
  grid-template-rows:
    minmax(80px, auto)  /* CATÉGORIE : réduit 84px → 80px */
    minmax(44px, auto)  /* LIGNE 1 : réduit 72px → 44px */
    minmax(44px, auto); /* LIGNE 2 : réduit 92px → 44px */
}

.maintenance-group--assistance {
  grid-template-rows:
    minmax(80px, auto)  /* CATÉGORIE : réduit 112px → 80px */
    minmax(44px, auto); /* LIGNE 1 : réduit 76px → 44px */
}

/* ===== CELLULES ===== */
.category-cell,
.label-cell,
.value-cell {
  min-width: 0;
  background: #fff;
  border-right: 1px solid var(--maintenance-line);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

/* CATÉGORIE */
.category-cell {
  grid-row: 1 / -1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px; /* RÉDUIT : 12px → 8px */
  padding: 14px 10px; /* RÉDUIT : 18px 12px → 14px 10px */
  text-align: center;
}

.category-cell strong {
  font-size: clamp(12px, 1vw, 14px); /* AUGMENTÉ */
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -.015em;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.category-icon {
  width: clamp(30px, 2.8vw, 40px); /* LÉGÈREMENT RÉDUIT */
  height: clamp(30px, 2.8vw, 40px);
  fill: none;
  stroke: var(--maintenance-green);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* LABEL */
.label-cell {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px; /* RÉDUIT : 12px 15px → 8px 12px */
  text-align: center;
  font-size: clamp(11px, 0.9vw, 13px); /* AUGMENTÉ */
  font-weight: 600;
  line-height: 1.3;
  color: var(--maintenance-text);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.label-cell span { font-size: .92em; }

/* VALUE */
.value-cell {
  display: flex;
  align-items: center;
  padding: 8px 14px; /* RÉDUIT : 12px 16px → 8px 14px */
  font-size: clamp(11px, 0.9vw, 13px); /* AUGMENTÉ */
  font-weight: 500;
  line-height: 1.3;
  color: var(--maintenance-text);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.value-cell--center {
  justify-content: center;
  text-align: center;
}

.value-cell--last { border-right: 0; }

.value-cell ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-cell li {
  position: relative;
  padding-left: 13px;
  font-size: clamp(10.5px, 0.85vw, 12.5px); /* AUGMENTÉ */
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.value-cell li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--maintenance-muted);
  font-weight: 800;
}

/* ===== PIED ===== */
.maintenance-footer {
  width: calc(100% - var(--maintenance-indent));
  margin-left: var(--maintenance-indent);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 0 0 var(--maintenance-radius) var(--maintenance-radius);
  overflow: hidden;
}

.price-cell {
  min-height: 58px; /* RÉDUIT : 68px → 58px */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px; /* RÉDUIT : 14px → 10px */
  font-size: clamp(14px, 1.2vw, 17px); /* AUGMENTÉ */
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  border-right: 1px solid var(--maintenance-line);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.price-cell:last-child { border-right: 0; }
.price-cell--plain { background: #fff; color: var(--maintenance-navy); }
.price-cell--standard { background: var(--maintenance-green); color: #fff; }
.price-cell--premium { background: var(--maintenance-navy); color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1050px) {
  .maintenance-section { padding-inline: 18px; }

  .maintenance-scroll {
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--maintenance-green) rgba(3,22,52,.08);
  }

  .maintenance-scroll::-webkit-scrollbar { height: 8px; }

  .maintenance-scroll::-webkit-scrollbar-track {
    background: rgba(3,22,52,.08);
    border-radius: 999px;
  }

  .maintenance-scroll::-webkit-scrollbar-thumb {
    background: var(--maintenance-green);
    border-radius: 999px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}

/* ============================================
   SECTION CLIENT
   ============================================ */
.sec {
    background: var(--color-bg);
    padding: 28px 5vw 64px;
    font-family: var(--font-family);
}

.sec .content {
    max-width: 1200px;
    margin: 0 auto;
}

.sec .content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.particulier,
.professionnel {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-card);
    padding: 2rem;
    box-shadow: var(--box-shadow-card);
    border: 1px solid var(--color-border);
    transition: transform .35s ease, box-shadow .35s ease;
}
.particulier:hover,
.professionnel:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-card-hover);
}

.particulier h3,
.professionnel h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.particulier ul,
.professionnel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.particulier ul li,
.professionnel ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.centrage {
    display: flex;
    align-items: center;    
    justify-content: center; 
    flex: 1;               
    width: 100%;
}

.particulier ul li:last-child,
.professionnel ul li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .client-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .particulier,
    .professionnel {
        padding: 1.5rem;
    }
}/* ============================================
   SECTION CLIENT - VERSION STYLISÉE
   ============================================ */
.client-section {
    background: var(--color-bg);
    padding: 48px 5vw 64px;
    font-family: var(--font-family);
}

.client-section .content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.client-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.client-header h2 span {
    color: var(--color-primary);
}

.client-header p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.client-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-card);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow-card);
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-card-hover);
    border-color: rgba(10, 184, 106, 0.2);
}

.client-card:hover::before {
    opacity: 1;
}

.client-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.client-card:hover .client-icon {
    background: var(--color-primary);
    color: white;
}

.client-icon svg {
    width: 28px;
    height: 28px;
}

.client-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.client-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.client-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(3, 22, 52, 0.05);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    transition: padding-left 0.3s ease;
}

.client-list li:last-child {
    border-bottom: none;
}

.client-list li:hover {
    padding-left: 0.5rem;
}

.client-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.client-list li:hover .client-list-icon {
    transform: scale(1.1);
}

.client-card-footer {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.client-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--color-bg);
    color: var(--color-primary);
}

.particulier .client-badge {
    background: #e8f5ee;
    color: #008b57;
}

.professionnel .client-badge {
    background: #e8f0fe;
    color: #1a73e8;
}

@media (max-width: 768px) {
    .client-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }

    .client-card {
        padding: 2rem 1.5rem;
    }

    .client-card-header {
        gap: 0.75rem;
    }

    .client-icon {
        width: 44px;
        height: 44px;
    }

    .client-icon svg {
        width: 24px;
        height: 24px;
    }

    .client-card h3 {
        font-size: 1.2rem;
    }

    .client-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
}

@media (max-width: 480px) {
    .client-section {
        padding: 32px 5vw 48px;
    }

    .client-card {
        padding: 1.5rem 1rem;
    }

    .client-header h2 {
        font-size: 1.6rem;
    }

    .client-header p {
        font-size: 0.95rem;
    }

    .client-list li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
}

.commit{
  margin: 1rem;
  text-align: center;
  align-items: center;
}