@charset "UTF-8";
:root {
--eko-green: #1a9d6b;
--eko-green-hover: #1fbd7a;
--eko-blue: #2980b9;
--eko-blue-dark: #1f5f8b;
--eko-grey-light: #f8f9fa;
--eko-grey-dark: #34495e;
--eko-radius: 2.2rem;
--eko-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
--eko-light: #fff;
--eko-green-light: #1fbd7a;
}
:root {
--eko-primary: #1a75d2;
--eko-text: #22223b;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: "Segoe UI", Arial, sans-serif;
background: var(--eko-grey-light);
min-height: 100vh;
display: flex;
flex-direction: column;
}

/* Focus visible pour tous les éléments interactifs */
*:focus-visible {
outline: 3px solid var(--eko-green);
outline-offset: 2px;
border-radius: 4px;
}

/* Focus spécifique pour les boutons */
.eko-btn:focus-visible {
outline: 3px solid var(--eko-green);
outline-offset: 2px;
box-shadow: 0 0 0 2px var(--eko-grey-light);
}

/* Focus pour les liens */
a:focus-visible {
outline: 2px solid var(--eko-green);
outline-offset: 1px;
text-decoration: underline;
}

/* Focus pour les éléments de formulaire */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
outline: 2px solid var(--eko-green);
outline-offset: 1px;
border-color: var(--eko-green);
}
main {
flex: 1 0 auto;
}
/* Header unifié - supprimé car redéfini plus bas */
.eko-nav {
position: relative;
z-index: 1100;
display: flex;
align-items: center;
}
.eko-nav__toggle {
display: none;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: var(--eko-green);
border: none;
border-radius: 50%;
color: #fff;
margin: 0 0 0 1rem;
z-index: 1200;
transition: background 0.2s, color 0.2s;
box-shadow: 0 2px 8px rgba(36, 198, 142, 0.12);
}
.eko-nav__toggle:hover,
.eko-nav__toggle:focus,
.eko-nav.open .eko-nav__toggle {
background: var(--eko-green-hover);
color: #fff;
transform: scale(1.1) rotate(90deg);
box-shadow: 0 4px 16px rgba(36, 198, 142, 0.3);
}
@media (max-width: 900px) {
.eko-nav__toggle {
display: flex;
}
}
.eko-nav__burger {
display: block;
width: 28px;
height: 3px;
background: #fff;
border-radius: 2px;
position: relative;
transition: all 0.3s;
}
.eko-nav__burger::before, .eko-nav__burger::after {
content: "";
display: block;
width: 28px;
height: 3px;
background: #fff;
border-radius: 2px;
position: absolute;
left: 0;
transition: all 0.3s;
}
.eko-nav__burger::before {
top: -9px;
}
.eko-nav__burger::after {
top: 9px;
}
.eko-menu {
display: flex;
align-items: center;
list-style: none;
margin: 0;
padding: 0;
flex-direction: row;
position: static;
width: auto;
background: none;
box-shadow: none;
max-width: 100%;
justify-content: center;
flex: 1;
gap: 0.3rem;
}
.eko-menu__item {
position: relative;
margin-left: 0.3rem;
}

.eko-menu__item:first-child {
margin-left: 0;
}

/* Supprimé - plus nécessaire car bouton séparé */
.eko-menu__item > a {
color: #fff;
text-decoration: none;
font-weight: 500;
padding: 0.7rem 0.6rem;
border-radius: var(--eko-radius);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
display: inline-block;
position: relative;
overflow: hidden;
}

.eko-menu__item > a::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
transition: left 0.5s;
z-index: 1;
}

.eko-menu__item > a:hover, .eko-menu__item > a:focus {
background: var(--eko-green);
color: var(--eko-grey-dark);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(36, 198, 142, 0.25);
}

.eko-menu__item > a:hover::before {
left: 100%;
}

.eko-menu__item > a:active {
transform: translateY(0px);
transition: transform 0.1s;
}
.eko-menu__item--has-submenu > a::after {
content: none !important;
}
.eko-menu__item--open > a {
color: var(--eko-green-light);
background: var(--eko-grey-dark);
}
.eko-btn--cta {
background: linear-gradient(135deg, var(--eko-green) 0%, #20b2aa 100%);
color: #fff;
border-radius: var(--eko-radius);
padding: 0.7rem 1.5rem;
font-weight: 700;
margin-left: 0;
box-shadow: 0 2px 8px rgba(36, 198, 142, 0.08);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
border: none;
}

.eko-btn--cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--eko-green-hover) 0%, #1ba3a1 100%);
opacity: 0;
transition: opacity 0.3s ease;
z-index: 0;
}

.eko-btn--cta span,
.eko-btn--cta {
position: relative;
z-index: 1;
}

/* Assurer que le texte reste au-dessus du gradient */
.eko-btn--cta > * {
position: relative;
z-index: 1;
}

/* Styles spécifiques pour le bouton CTA dans le header */
.eko-header-spacer .eko-btn--cta {
background: var(--eko-green) !important;
transform: none !important;
box-shadow: 0 2px 8px rgba(26, 157, 107, 0.15);
transition: all 0.2s ease;
font-size: 0.9rem;
padding: 0.6rem 1.2rem;
border: none;
position: relative;
color: #fff !important;
z-index: 1;
}

.eko-header-spacer .eko-btn--cta::before {
background: #147a55 !important;
z-index: -1;
}

.eko-header-spacer .eko-btn--cta:hover {
background: #147a55 !important;
transform: translateY(-1px) !important;
box-shadow: 0 4px 12px rgba(26, 157, 107, 0.3);
scale: 1 !important;
color: #fff !important;
}

.eko-header-spacer .eko-btn--cta:hover::before {
opacity: 0;
}

.eko-header-spacer .eko-btn--cta:active {
transform: translateY(0) !important;
}

.eko-btn--cta:hover, .eko-btn--cta:focus {
transform: translateY(-3px) scale(1.02);
box-shadow: 0 8px 25px rgba(36, 198, 142, 0.25);
color: #fff;
}

.eko-btn--cta:hover::before {
opacity: 1;
}

.eko-btn--cta:active {
transform: translateY(-1px) scale(1.01);
transition: transform 0.1s;
}
@media (min-width: 901px) {
.eko-nav__toggle {
display: none;
}
.eko-menu {
display: flex;
flex-direction: row;
position: static;
width: auto;
background: none;
box-shadow: none;
max-width: 100%;
padding: 0;
}
.eko-menu__item--has-submenu {
position: relative;
}
.eko-megamenu {
position: absolute;
left: 0;
top: 100%;
width: 700px;
background: var(--eko-grey-dark);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
border-radius: var(--eko-radius);
display: none;
flex-direction: row;
padding: 1.5rem 2rem;
gap: 2rem;
z-index: 1200;
color: #fff;
opacity: 0;
transform: translateY(-10px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(36, 198, 142, 0.1);
backdrop-filter: blur(10px);
}

.eko-menu__item--has-submenu:hover > .eko-megamenu,
.eko-menu__item--has-submenu:focus-within > .eko-megamenu {
display: flex;
opacity: 1;
transform: translateY(0);
}

.eko-megamenu::before {
content: '';
position: absolute;
top: -8px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid var(--eko-grey-dark);
z-index: 1201;
}
.eko-megamenu__column {
flex: 1;
min-width: 120px;
}
.eko-megamenu__column h4 {
margin-bottom: 0.5rem;
color: var(--eko-green-light);
font-size: 1.1rem;
transition: all 0.3s ease;
position: relative;
}

.eko-megamenu__column h4::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--eko-green), var(--eko-green-light));
transition: width 0.4s ease;
}

.eko-megamenu__column:hover h4::after {
width: 100%;
}

.eko-megamenu__column h4 a:hover,
.eko-megamenu__column h4 a:focus {
color: var(--eko-green);
transform: translateX(4px);
transition: all 0.3s ease;
}
.eko-megamenu__column ul {
list-style: none;
padding: 0;
}
.eko-megamenu__column ul li a {
display: block;
padding: 0.5rem 0.75rem;
color: #fff;
text-decoration: none;
background: none;
border-radius: 6px;
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
margin: 2px 0;
}

.eko-megamenu__column ul li a:hover,
.eko-megamenu__column ul li a:focus {
color: var(--eko-green);
background: rgba(36, 198, 142, 0.1);
transform: translateX(8px);
box-shadow: 0 2px 8px rgba(36, 198, 142, 0.15);
padding-left: 1rem;
}
.eko-menu__item--has-submenu:nth-child(3) > .eko-megamenu {
width: 350px;
min-width: 220px;
max-width: 95vw;
left: 0;
transform: none;
right: auto;
}
}
@media (max-width: 900px) {
.eko-header__container {
flex-direction: row;
padding: 0 1rem;
height: 60px;
gap: 1rem;
}

.eko-nav {
position: static;
transform: none;
justify-content: flex-end;
flex: none;
max-width: none;
}

.eko-logo {
position: static;
left: auto;
flex: none;
margin: 0;
padding: 0;
}

.eko-header-spacer {
display: none;
position: static;
right: auto;
}

/* Gestion responsive du bouton CTA */
@media (max-width: 900px) {
  .eko-header-spacer {
    display: none !important;
  }
  
  /* Le bouton sera réinjecté dans le menu par JavaScript */
  .eko-menu-mobile-cta {
    display: block !important;
    margin: 1rem;
    text-align: center;
  }
  
  .eko-menu-mobile-cta .eko-btn--cta {
    width: calc(100% - 2rem);
    margin: 0;
    padding: 0.8rem 1.5rem;
  }
}
.eko-nav__toggle {
display: flex;
}
.eko-menu {
display: none;
flex-direction: column;
position: fixed;
top: 60px;
left: 0;
right: 0;
width: 100vw;
background: var(--eko-grey-dark);
z-index: 1000;
max-width: 100vw;
max-height: calc(100vh - 60px);
overflow-y: auto;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
border-radius: 0 0 var(--eko-radius) var(--eko-radius);
padding: 1rem 0 2rem 0;
}
.eko-nav.open .eko-menu {
display: flex;
}
.eko-menu__item {
margin: 0;
}
.eko-menu__item > a {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 1.5rem;
color: #fff;
background: none;
}
.eko-menu__item--has-submenu > a::after {
content: "▸";
font-size: 1.1rem;
color: #fff;
margin-left: 8px;
transition: transform 0.3s;
vertical-align: middle;
}
.eko-menu__item.eko-menu__item--open > a {
color: var(--eko-green-light);
background: #222;
}
.eko-menu__item.eko-menu__item--open > a::after {
transform: rotate(90deg);
color: var(--eko-green-light);
}
.eko-megamenu {
position: static;
width: 100%;
max-width: 100vw;
box-sizing: border-box;
flex-direction: column;
padding: 0 1rem 1rem 1rem;
display: none;
background: var(--eko-grey-dark);
box-shadow: none;
border-radius: 0;
color: #fff;
overflow-wrap: break-word;
white-space: normal;
}
.eko-menu__item.eko-menu__item--open > .eko-megamenu {
display: flex;
}
.eko-megamenu__column {
margin-bottom: 1rem;
}
.eko-megamenu__column h4 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
cursor: pointer;
color: var(--eko-green-light);
}
.eko-megamenu__column ul {
padding-left: 1rem;
}
.eko-megamenu__column ul li a {
color: #fff;
background: none;
display: block;
padding: 0.25rem 0;
text-decoration: none;
word-break: break-word;
}
.eko-megamenu__column ul li a:hover,
.eko-megamenu__column ul li a:focus {
color: var(--eko-green);
background: #222;
}
.eko-btn--cta {
display: block;
margin: 1.5rem auto 0 auto;
width: 100%;
max-width: 320px;
text-align: center;
font-size: 1.1rem;
background: var(--eko-green) !important;
color: #fff !important;
border-radius: var(--eko-radius);
box-shadow: 0 2px 8px rgba(36, 198, 142, 0.12);
font-weight: 700;
padding: 1rem 0;
transition: background 0.2s, color 0.2s;
line-height: 1.2;
box-sizing: border-box;
}
.eko-btn--cta:hover,
.eko-btn--cta:focus {
background: var(--eko-green-hover) !important;
color: #fff !important;
}
}
.eko-menu__item > a:focus-visible {
outline: 2px solid var(--eko-green);
outline-offset: 2px;
background: #222;
}
.eko-menu__item--has-submenu > a .eko-arrow {
display: inline-block;
margin-left: 6px;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
color: #fff;
}
.eko-footer {
background: var(--eko-grey-dark);
color: #fff;
padding: 3.2rem 1.2rem 1.2rem 1.2rem;
width: 100vw;
max-width: none;
position: relative;
left: 50%;
right: 50%;
transform: translateX(-50%);
box-sizing: border-box;
z-index: 2;
font-size: 1rem;
}
.eko-footer__container {
display: flex;
flex-direction: column;
gap: 2.5rem;
max-width: 1200px;
margin: 0 auto;
}
.eko-footer__col {
margin-bottom: 1.5rem;
}
.eko-footer__col--identite {
display: block !important;
max-width: 280px;
width: 100%;
}

.eko-footer__logo {
display: block !important;
font-size: 1.8rem !important;
font-weight: 700 !important;
color: #fff !important;
text-decoration: none !important;
letter-spacing: 0.02em !important;
margin: 0 0 1rem 0 !important;
line-height: 1.2 !important;
word-wrap: break-word !important;
max-width: 100% !important;
width: 100% !important;
position: static !important;
float: none !important;
clear: both !important;
}

.eko-footer__logo .eko-logo__k {
color: var(--eko-green);
font-weight: 900;
}

.eko-footer__baseline {
display: block !important;
font-size: 1rem !important;
color: var(--eko-green-light) !important;
font-weight: 500 !important;
margin: 0 0 1rem 0 !important;
line-height: 1.4 !important;
word-wrap: break-word !important;
max-width: 100% !important;
width: 100% !important;
clear: both !important;
position: static !important;
float: none !important;
}
.eko-footer__instagram {
display: inline-flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
border-radius: 50%;
background: transparent;
color: #fff;
transition: background 0.2s, color 0.2s;
margin: 0;
outline: none;
clear: both;
}
.eko-footer__instagram:focus-visible {
outline: 2px solid var(--eko-green);
outline-offset: 2px;
background: #222;
}
.eko-footer__instagram:hover {
color: var(--eko-green);
background: rgba(255, 255, 255, 0.0666666667);
}
.eko-footer__title {
font-size: 1.1rem;
color: var(--eko-green-light);
font-weight: 700;
margin-bottom: 1em;
letter-spacing: 0.03em;
}
.eko-footer__list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 0.7em;
}
.eko-footer__list a {
color: #fff;
text-decoration: none;
transition: color 0.2s;
font-weight: 500;
}
.eko-footer__list a:hover,
.eko-footer__list a:focus {
color: var(--eko-green);
text-decoration: underline;
}
.eko-footer__list--contact span,
.eko-footer__list--contact a {
font-size: 1.01rem;
color: #fff;
font-weight: 400;
}
.eko-footer__adresse {
display: block;
margin-bottom: 0.2em;
}
.eko-footer__horaire {
display: block;
color: var(--eko-green-light);
font-size: 0.98rem;
margin-top: 0.1em;
}
.eko-footer__copyright {
text-align: center;
color: #fff;
font-size: 0.98rem;
margin-top: 2.5rem;
opacity: 0.7;
letter-spacing: 0.01em;
}
@media (min-width: 900px) {
.eko-footer__container {
flex-direction: row;
gap: 2.5rem;
justify-content: space-between;
align-items: flex-start;
}
.eko-footer__col {
flex: 1 1 0;
min-width: 0;
margin-bottom: 0;
}

/* Forcer la colonne identité à rester en block même sur desktop */
.eko-footer__col--identite {
display: block !important;
flex-direction: column !important;
}

.eko-footer__logo {
display: block !important;
width: 100% !important;
margin-bottom: 1rem !important;
}

.eko-footer__baseline {
display: block !important;
width: 100% !important;
margin-bottom: 1rem !important;
clear: both !important;
}
/* Supprimé - redondant avec le style principal */
}
.eko-labels-carousel {
width: 100vw;
overflow: hidden;
background: #fff;
padding: 1.5rem 0;
margin: 0;
position: relative;
left: 50%;
right: 50%;
transform: translateX(-50%);
}
.eko-labels-carousel__track {
display: flex;
align-items: center;
gap: 3rem;
animation: scroll-labels 35s linear infinite;
width: max-content;
}
.eko-labels-carousel__track img {
height: 60px;
width: auto;
object-fit: contain;
filter: grayscale(0.2) brightness(1.1);
transition: filter 0.2s;
}
.eko-labels-carousel__track img:hover,
.eko-labels-carousel__track img:focus {
filter: none;
}
@keyframes scroll-labels {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
@media (max-width: 600px) {
.eko-labels-carousel__track img {
height: 38px;
gap: 1.2rem;
}
}
.eko-hero {
position: relative;
min-height: calc(100vh - 60px);
margin-top: 60px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
text-align: center;
isolation: isolate;
}
.eko-hero__bg {
position: absolute;
inset: 0;
background: url("assets/images/image-hero.jpg") center/cover no-repeat;
z-index: 1;
transition: transform 0.5s;
will-change: transform;
}
.eko-hero__overlay {
position: absolute;
inset: 0;
background: rgba(44, 62, 80, 0.45);
z-index: 2;
}
.eko-hero__content {
position: relative;
z-index: 3;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
max-width: 600px;
margin: 0 auto;
padding: 2rem 1.2rem;
}
.eko-hero h1 {
color: #fff;
font-size: 2.2rem;
font-weight: 800;
text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
margin-bottom: 1.1rem;
line-height: 1.15;
letter-spacing: 0.01em;
}
.eko-hero__subtitle {
color: #fff;
font-size: 1.15rem;
font-weight: 400;
margin-bottom: 2rem;
text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
line-height: 1.4;
}
/* Ancien style hero - remplacé par le style moderne ci-dessous */
.eko-hero__cta:focus-visible {
outline: 2px solid var(--eko-green, #2af598);
outline-offset: 2px;
}
.eko-hero__question {
color: #fff;
font-size: 1.3rem;
font-weight: 600;
margin: 1.5rem 0 2rem 0;
text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
}
.eko-hero__buttons {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
width: 100%;
}
.eko-hero__contact {
font-size: 1.05rem;
font-weight: 600;
background: rgba(255, 255, 255, 0.15);
color: #fff !important; /* Texte blanc par défaut */
border: 2px solid rgba(255, 255, 255, 0.9);
border-radius: var(--eko-radius, 2.2rem);
padding: 0.9rem 2rem;
text-decoration: none;
transition: all 0.3s ease;
outline: none;
display: inline-block;
backdrop-filter: blur(10px);
}
.eko-hero__contact:hover,
.eko-hero__contact:focus {
background: rgba(255, 255, 255, 0.95); /* Fond blanc presque opaque */
border-color: #fff;
color: var(--eko-green, #1a9d6b) !important; /* Texte vert au hover */
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(15px);
}
@media (min-width: 600px) {
.eko-hero h1 {
font-size: 2.8rem;
}
.eko-hero__content {
padding: 3.5rem 2rem;
}
.eko-hero__question {
font-size: 1.5rem;
}
.eko-hero__buttons {
flex-direction: row;
gap: 1.5rem;
justify-content: center;
}
}
@media (min-width: 900px) {
.eko-hero h1 {
font-size: 3.2rem;
}
.eko-hero__content {
max-width: 700px;
}
.eko-hero__question {
font-size: 1.6rem;
}
}
.eko-how {
background: linear-gradient(135deg, #f8f9fa 0%, #e0f7ef 100%);
padding: 3.5rem 1.2rem 3rem 1.2rem;
margin: 0;
width: 100vw;
max-width: none;
position: relative;
left: 50%;
right: 50%;
transform: translateX(-50%);
box-sizing: border-box;
z-index: 2;
}
.eko-how h2 {
text-align: center;
font-size: 2rem;
color: var(--eko-grey-dark);
margin-bottom: 2.5rem;
font-weight: 900;
letter-spacing: 0.04em;
font-family: "Montserrat", Arial, sans-serif;
}
.eko-how__steps {
display: flex;
flex-direction: column;
gap: 2.2rem;
list-style: none;
padding: 0;
margin: 0 auto;
max-width: 700px;
counter-reset: step;
}
.eko-how__steps li {
background: var(--eko-grey-light);
border-radius: 1.5rem;
box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
padding: 2rem 1.2rem 1.5rem 1.2rem;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
transition: box-shadow 0.25s, transform 0.25s;
opacity: 0;
animation: fadeInUp 0.7s both;
}
.eko-how__steps li:hover,
.eko-how__steps li:focus-within {
box-shadow: 0 8px 24px rgba(44, 62, 80, 0.13);
transform: translateY(-4px) scale(1.03);
}
.eko-how__steps li:nth-child(1) {
animation-delay: 0.1s;
}
.eko-how__steps li:nth-child(2) {
animation-delay: 0.25s;
}
.eko-how__steps li:nth-child(3) {
animation-delay: 0.4s;
}
.eko-how__steps li::before {
content: counter(step, decimal);
counter-increment: step;
position: absolute;
top: -1.2rem;
left: 50%;
transform: translateX(-50%);
background: var(--eko-green);
color: #fff;
font-weight: 700;
font-size: 1.3rem;
width: 2.4rem;
height: 2.4rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 8px rgba(36, 198, 142, 0.1);
z-index: 2;
}
.eko-how__icon {
display: block;
margin-bottom: 0.7em;
width: 44px;
height: 44px;
}
.eko-how__icon img {
width: 100%;
height: 100%;
display: block;
filter: drop-shadow(0 2px 8px rgba(44, 62, 80, 0.1));
}
.eko-how__steps h3 {
margin-top: 1.2rem;
margin-bottom: 0.7rem;
font-size: 1.25rem;
color: var(--eko-blue-dark);
font-weight: 700;
text-align: center;
font-family: "Montserrat", Arial, sans-serif;
letter-spacing: 0.02em;
}
.eko-how__steps p {
color: var(--eko-grey-dark);
font-size: 1.05rem;
text-align: center;
margin: 0;
line-height: 1.5;
}
@media (min-width: 900px) {
.eko-how__steps {
flex-direction: row;
gap: 2.5rem;
max-width: 1100px;
}
.eko-how__steps li {
flex: 1 1 0;
min-width: 0;
align-items: center;
padding: 2.5rem 1.5rem 2rem 1.5rem;
}
.eko-how__steps li::before {
top: -1.5rem;
font-size: 1.5rem;
width: 2.8rem;
height: 2.8rem;
}
.eko-how h2 {
font-size: 2.3rem;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: none;
}
}
.eko-services {
background: #fff;
padding: 3.5rem 1.2rem 3rem 1.2rem;
margin: 0;
width: 100vw;
max-width: none;
position: relative;
left: 50%;
right: 50%;
transform: translateX(-50%);
box-sizing: border-box;
z-index: 2;
}
.eko-services h2 {
text-align: center;
font-size: 2rem;
color: var(--eko-grey-dark);
margin-bottom: 2.5rem;
font-weight: 900;
letter-spacing: 0.04em;
font-family: "Montserrat", Arial, sans-serif;
}
.eko-services__grid {
display: grid;
grid-template-columns: 1fr;
gap: 2.2rem;
max-width: 1000px;
margin: 0 auto;
}
.eko-service {
background: var(--eko-grey-light);
border-radius: 1.5rem;
box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
padding: 2.2rem 1.2rem 2rem 1.2rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
transition: box-shadow 0.25s, transform 0.25s;
position: relative;
outline: none;
opacity: 0;
animation: fadeInUpCard 0.8s both;
}
.eko-service:focus-within {
outline: 2px solid var(--eko-green, #2af598);
outline-offset: 2px;
box-shadow: 0 8px 24px rgba(44, 62, 80, 0.18);
z-index: 2;
}
.eko-service:hover .eko-service__icon img,
.eko-service:focus-within .eko-service__icon img {
transform: scale(1.13) rotate(-6deg);
filter: drop-shadow(0 4px 16px rgba(36, 198, 142, 0.13));
}
.eko-service__icon {
display: block;
margin-bottom: 1.1em;
width: 54px;
height: 54px;
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.eko-service__icon img {
width: 100%;
height: 100%;
display: block;
filter: drop-shadow(0 2px 8px rgba(44, 62, 80, 0.1));
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s;
}
.eko-service h3 {
font-size: 1.22rem;
color: var(--eko-blue-dark);
font-weight: 700;
margin-bottom: 1.1em;
font-family: "Montserrat", Arial, sans-serif;
letter-spacing: 0.02em;
}
.eko-service__link {
display: inline-block;
margin-top: auto;
background: var(--eko-green, #2af598);
color: var(--eko-grey-dark, #2c3e50);
border-radius: var(--eko-radius, 2.2rem);
padding: 0.7rem 1.7rem;
font-weight: 700;
font-size: 1.05rem;
text-decoration: none;
box-shadow: 0 2px 8px rgba(36, 198, 142, 0.1);
transition: background 0.2s, color 0.2s, box-shadow 0.2s;
outline: none;
}
.eko-service__link:hover,
.eko-service__link:focus {
background: var(--eko-green-hover, #24c68e);
color: #fff;
box-shadow: 0 4px 18px rgba(36, 198, 142, 0.18);
}
.eko-service__link:focus-visible {
outline: 2px solid var(--eko-green, #2af598);
outline-offset: 2px;
}
@media (min-width: 600px) {
.eko-services__grid {
grid-template-columns: 1fr 1fr;
gap: 2.5rem;
}
}
@media (min-width: 1100px) {
.eko-services__grid {
grid-template-columns: 1fr 1fr 1fr 1fr;
gap: 2.5rem;
}
.eko-services {
padding-left: 0;
padding-right: 0;
}
}
@keyframes fadeInUpCard {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: none;
}
}
.eko-services__grid > .eko-service:nth-child(1) {
animation-delay: 0.1s;
}
.eko-services__grid > .eko-service:nth-child(2) {
animation-delay: 0.22s;
}
.eko-services__grid > .eko-service:nth-child(3) {
animation-delay: 0.34s;
}
.eko-services__grid > .eko-service:nth-child(4) {
animation-delay: 0.46s;
}
.eko-service {
display: none;
}
.eko-service[hidden] {
display: none !important;
}
.eko-service:not([hidden]) {
display: flex;
}
.eko-how__container {
display: flex;
flex-direction: row;
gap: 2.5rem;
align-items: stretch;
max-width: 1100px;
margin: 0 auto;
padding: 2.5rem 1.2rem 2.5rem 1.2rem;
}
.eko-accordion {
flex: 1 1 0;
min-width: 0;
max-width: 100%;
display: flex;
flex-direction: column;
gap: 1.2rem;
}
.eko-how__image {
flex: 1 1 0;
min-width: 0;
max-width: 100%;
height: 100%;
align-self: stretch;
display: flex;
align-items: stretch;
justify-content: center;
}
.eko-how__image img {
height: 100%;
width: 100%;
max-width: 480px;
min-height: 320px;
object-fit: cover;
border-radius: 1.2rem;
box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
}
.eko-accordion__item {
background: linear-gradient(90deg, #f8f9fa 0%, #e0f7ef 100%);
border-radius: 1.5rem;
box-shadow: 0 4px 18px rgba(44, 62, 80, 0.1);
margin-bottom: 0.5rem;
border: 1.5px solid #e0f7ef;
transition: box-shadow 0.22s, border-color 0.22s;
position: relative;
}
.eko-accordion__item:focus-within,
.eko-accordion__item:hover {
box-shadow: 0 8px 32px rgba(36, 198, 142, 0.13);
border-color: var(--eko-green);
}
.eko-accordion__title {
display: flex;
align-items: center;
gap: 1.3rem;
width: 100%;
background: none;
border: none;
font-size: 1.25rem;
font-weight: 800;
color: #2c3e50;
padding: 1.5rem 2rem 1.5rem 1.5rem;
cursor: pointer;
outline: none;
transition: background 0.18s, color 0.18s;
border-bottom: 1px solid #e0f7ef;
letter-spacing: 0.01em;
font-family: "Montserrat", Arial, sans-serif;
position: relative;
z-index: 2;
border-radius: 1.5rem 1.5rem 0 0;
}
.eko-accordion__title:focus-visible {
outline: 2.5px solid var(--eko-green);
outline-offset: 2px;
background: #e0f7ef;
}
.eko-accordion__title[aria-expanded=true] {
color: var(--eko-green);
background: #e0f7ef;
}
.eko-accordion__num {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.8rem;
height: 2.8rem;
border-radius: 50%;
background: linear-gradient(135deg, var(--eko-green), var(--eko-green-light));
color: #fff;
font-weight: 900;
font-size: 1.35rem;
margin-right: 0.3em;
box-shadow: 0 2px 12px rgba(36, 198, 142, 0.13);
border: 2.5px solid #fff;
transition: background 0.18s, box-shadow 0.18s;
position: relative;
z-index: 2;
box-shadow: 0 2px 12px rgba(36, 198, 142, 0.13);
transition: background 0.18s, box-shadow 0.18s, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.eko-accordion__title[aria-expanded=true] .eko-accordion__num {
background: linear-gradient(135deg, var(--eko-green-hover), var(--eko-green));
box-shadow: 0 4px 18px rgba(36, 198, 142, 0.18);
transform: scale(1.18) rotate(-6deg);
animation: popNum 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.eko-accordion__panel {
padding: 2rem 2.2rem 2rem 4.2rem;
background: #fff;
color: var(--eko-grey-dark);
font-size: 1.13rem;
line-height: 1.7;
border-radius: 0 0 1.5rem 1.5rem;
box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
margin-top: -0.5rem;
animation: fadeInPanel 0.45s cubic-bezier(0.4, 0, 0.2, 1), slideInPanel 0.45s cubic-bezier(0.4, 0, 0.2, 1);
border-top: 1px solid #e0f7ef;
position: relative;
z-index: 1;
}
.eko-accordion__panel p {
margin: 0;
font-size: 1.13rem;
color: var(--eko-grey-dark);
}
@keyframes fadeInPanel {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: none;
}
}
@keyframes slideInPanel {
from {
transform: translateY(30px);
}
to {
transform: none;
}
}
.eko-accordion__arrow {
display: flex;
align-items: center;
margin-left: auto;
transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.eko-accordion__title[aria-expanded=true] .eko-accordion__arrow {
transform: rotate(180deg);
}
.eko-accordion__item {
position: relative;
}
.eko-accordion__item:not(:last-child)::before {
content: "";
position: absolute;
left: 36px;
top: 3.2rem;
bottom: -1.2rem;
width: 3.5px;
background: linear-gradient(180deg, var(--eko-green-light) 0%, var(--eko-green) 100%);
border-radius: 2px;
z-index: 0;
opacity: 0.18;
}
@keyframes popNum {
0% {
transform: scale(1) rotate(0deg);
}
60% {
transform: scale(1.25) rotate(8deg);
}
100% {
transform: scale(1.18) rotate(-6deg);
}
}
@media (max-width: 900px) {
.eko-how__container {
flex-direction: column;
gap: 1.8rem;
padding: 2rem 0.5rem 2rem 0.5rem;
}
.eko-how__image {
height: auto;
align-self: auto;
margin-top: 1.2rem;
}
.eko-how__image img {
height: auto;
min-height: 0;
max-width: 100%;
width: 100%;
}
.eko-accordion__panel {
padding: 1.3rem 1.2rem 1.3rem 3.2rem;
}
.eko-accordion__title {
font-size: 1.12rem;
padding: 1.1rem 1.1rem 1.1rem 1.1rem;
}
.eko-accordion__num {
width: 2.1rem;
height: 2.1rem;
font-size: 1.05rem;
}
}
@media (max-width: 600px) {
.eko-how__image {
display: none;
}
.eko-accordion__panel {
padding: 1.1rem 0.7rem 1.1rem 2.2rem;
font-size: 1.01rem;
}
}
.eko-services__families {
display: flex;
gap: 0.7rem;
margin: 0 auto 2.2rem auto;
justify-content: center;
flex-wrap: wrap;
overflow-x: auto;
padding-bottom: 0.5rem;
}
.eko-services__family-btn {
background: #e0f7ef;
color: var(--eko-grey-dark);
border: none;
border-radius: var(--eko-radius);
font-size: 1.08rem;
font-weight: 600;
padding: 0.7em 1.3em;
cursor: pointer;
transition: background 0.18s, color 0.18s, box-shadow 0.18s;
box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
outline: none;
min-width: 44px;
}
.eko-services__family-btn:focus-visible {
outline: 2px solid var(--eko-green);
outline-offset: 2px;
background: #b2f2e5;
color: var(--eko-grey-dark);
}
.eko-services__family-btn[aria-selected=true] {
background: var(--eko-green);
color: #fff;
box-shadow: 0 4px 16px rgba(36, 198, 142, 0.13);
}
.eko-services__family-btn:hover:not([aria-selected=true]),
.eko-services__family-btn:focus:not([aria-selected=true]) {
background: var(--eko-green-light);
color: var(--eko-grey-dark);
}
.eko-modal {
position: fixed;
inset: 0;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0,0,0,0.15);
min-height: 100vh;
min-width: 100vw;
overflow-y: auto;
padding-top: 60px;
box-sizing: border-box;
}
@media (max-width: 600px) {
.eko-modal { padding-top: 50px; }
}
.eko-modal__overlay {
position: absolute; left: 0; top: 0; width: 100vw; height: 100vh;
background: rgba(0,0,0,0.5);
}
.eko-modal__content {
margin: auto;
max-height: 95vh;
overflow-y: auto;
}
.eko-modal__content {
position: relative; background: #fff; border-radius: 16px; padding: 2.5rem 2rem 2rem 2rem; max-width: 440px; width: 95vw;
box-shadow: 0 8px 32px rgba(0,0,0,0.25);
z-index: 1;
animation: modalIn 0.25s cubic-bezier(.4,1.4,.6,1) both;
}
@keyframes modalIn { from { transform: translateY(40px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.eko-modal__close {
position: absolute; top: 1.2rem; right: 1.2rem; background: none; border: none; font-size: 2.2rem; cursor: pointer; color: #888;
transition: color 0.2s;
}
.eko-modal__close:hover, .eko-modal__close:focus { color: #009688; outline: none; }
#eligibilite-title {
margin-top: 0; margin-bottom: 1.2em; font-size: 1.5em; text-align: center; color: #009688;
}
#eligibilite-form label, #eligibilite-form fieldset { display: block; margin: 1.1em 0 0.7em; }
#eligibilite-form input[type="text"], #eligibilite-form input[type="email"] {
width: 100%; padding: 0.6em; border: 1px solid #ccc; border-radius: 4px; margin-top: 0.2em; font-size: 1em;
}
#eligibilite-form input[type="range"] { width: 80%; margin-right: 0.5em; }
#surface-value { font-weight: bold; color: #009688; }
#eligibilite-form fieldset { border: none; padding: 0; }
#eligibilite-form legend { font-weight: 600; color: #444; margin-bottom: 0.3em; font-size: 1em; }
#eligibilite-form input[type="radio"], #eligibilite-form input[type="checkbox"] { accent-color: #009688; margin-right: 0.5em; }
#eligibilite-form button[type="submit"] {
margin-top: 1.5em; width: 100%; background: #009688; color: #fff; border: none; padding: 0.9em; border-radius: 6px; font-size: 1.15em; cursor: pointer; font-weight: 600; letter-spacing: 0.02em;
box-shadow: 0 2px 8px rgba(0,150,136,0.08);
transition: background 0.2s;
}
#eligibilite-form button[type="submit"]:hover, #eligibilite-form button[type="submit"]:focus { background: #00796b; outline: none; }
#eligibilite-resultat { margin-top: 2em; font-weight: bold; color: #009688; text-align: center; font-size: 1.1em; }
@media (max-width: 600px) {
.eko-modal__content { padding: 1.2rem 0.5rem 1.2rem 0.5rem; max-width: 98vw; }
#eligibilite-title { font-size: 1.15em; }
}
.wizard-step { animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity:0; transform: translateY(20px);} to { opacity:1; transform:none; } }
.wizard-title {
text-align: center;
color: #009688;
font-size: 1.25em;
margin-bottom: 1em;
margin-top: 0.2em;
}
.wizard-nav {
display: flex;
justify-content: space-between;
gap: 1em;
margin-top: 1.5em;
}
.wizard-next, .wizard-prev, .wizard-submit {
background: #009688;
color: #fff;
border: none;
border-radius: 6px;
padding: 0.7em 1.5em;
font-size: 1em;
font-weight: 600;
cursor: pointer;
box-shadow: 0 2px 8px rgba(0,150,136,0.08);
transition: background 0.2s, transform 0.15s;
}
.wizard-next:hover, .wizard-prev:hover, .wizard-submit:hover,
.wizard-next:focus, .wizard-prev:focus, .wizard-submit:focus {
background: #00796b;
outline: none;
transform: translateY(-2px) scale(1.03);
}
.wizard-prev {
background: #e0e0e0;
color: #333;
}
.wizard-prev:hover, .wizard-prev:focus {
background: #bdbdbd;
}
.wizard-error {
animation: shake 0.3s;
border-radius: 8px;
box-shadow: 0 0 0 2px #e57373;
}
@keyframes shake {
10%, 90% { transform: translateX(-2px); }
20%, 80% { transform: translateX(4px); }
30%, 50%, 70% { transform: translateX(-8px); }
40%, 60% { transform: translateX(8px); }
}
@media (max-width: 600px) {
.wizard-title { font-size: 1em; }
.wizard-next, .wizard-prev, .wizard-submit { font-size: 0.95em; padding: 0.6em 1em; }
}
.eko-menu__item--has-submenu:nth-child(4) > .eko-megamenu {
width: 280px;
left: 0;
right: auto;
}
.eko-menu__item--has-submenu:nth-child(4) > a {
white-space: nowrap;
}
.eko-menu__item > a {
white-space: nowrap;
}
.eko-logo {
white-space: nowrap;
}
.eko-megamenu__column h4 a {
color: var(--eko-green);
text-decoration: none;
font-weight: 600;
transition: color 0.2s;
}
.eko-megamenu__column h4 a:hover,
.eko-megamenu__column h4 a:focus {
color: var(--eko-green-hover);
outline: none;
}
.eko-hero--isolation {
background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../assets/images/combles-perdus-isolation.jpg');
}
.eko-hero--chauffage {
background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../assets/images/renovation.jpg');
}
.eko-hero--solaire {
background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../assets/images/etude.jpg');
}
.eko-hero--aides {
background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../assets/images/economie.jpg');
}
.eko-hero-isolation {
background: linear-gradient(135deg, #f8f9fa 0%, #e0f7ef 100%);
padding: 3rem 1.2rem;
margin-top: 60px;
min-height: 50vh;
display: flex;
align-items: center;
}
.eko-hero-isolation__container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
/* Hero murs - Layout divisé gauche/droite */
.eko-hero-isolation .eko-hero-isolation__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

.eko-hero-isolation .eko-hero-isolation__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}

.eko-hero-isolation .eko-hero-isolation__images {
  justify-self: end;
  max-width: 100%;
  padding-left: 2rem;
}
.eko-hero-isolation__content h1 {
font-size: 2.2rem;
font-weight: 800;
color: var(--eko-grey-dark);
margin-bottom: 1rem;
line-height: 1.2;
}
.eko-hero-isolation__subtitle {
font-size: 1.1rem;
color: #666;
margin-bottom: 2rem;
line-height: 1.5;
}
.eko-hero-isolation__cta {
font-size: 1.1rem;
font-weight: 700;
background: var(--eko-green);
color: var(--eko-grey-dark);
border-radius: var(--eko-radius);
padding: 0.9rem 2rem;
box-shadow: 0 2px 12px rgba(36, 198, 142, 0.13);
border: none;
text-decoration: none;
transition: background 0.2s, color 0.2s, box-shadow 0.2s;
outline: none;
display: inline-block;
}
.eko-hero-isolation__cta:hover,
.eko-hero-isolation__cta:focus {
background: var(--eko-green-hover);
color: #fff;
box-shadow: 0 4px 18px rgba(36, 198, 142, 0.18);
}
.eko-hero-isolation__images {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 0.8rem;
height: 300px;
}
.eko-hero-isolation__image {
overflow: hidden;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.eko-hero-isolation__image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.eko-hero-isolation__image:hover img {
transform: scale(1.05);
}
@media (max-width: 900px) {
.eko-hero-isolation__container {
grid-template-columns: 1fr;
gap: 2rem;
}
.eko-hero-isolation__content h1 {
font-size: 1.8rem;
}
.eko-hero-isolation__images {
height: 250px;
}
}
@media (max-width: 600px) {
.eko-hero-isolation {
padding: 2rem 1rem;
}
.eko-hero-isolation__content h1 {
font-size: 1.5rem;
}
.eko-hero-isolation__images {
height: 200px;
gap: 0.5rem;
}
}
.eko-en-bref {
background: #fff;
padding: 4rem 1.2rem;
}
.eko-en-bref__container {
max-width: 1200px;
margin: 0 auto;
}
.eko-en-bref h2 {
text-align: center;
font-size: 2.2rem;
color: var(--eko-grey-dark);
margin-bottom: 3rem;
font-weight: 800;
}
.eko-en-bref__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.eko-en-bref__item {
text-align: center;
padding: 2rem 1.5rem;
background: linear-gradient(135deg, #f8f9fa 0%, #e0f7ef 100%);
border-radius: 16px;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eko-en-bref__item:hover {
transform: translateY(-8px);
box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.eko-en-bref__icon {
font-size: 3rem;
margin-bottom: 1rem;
display: block;
}
.eko-en-bref__item h3 {
font-size: 1.3rem;
font-weight: 700;
color: var(--eko-grey-dark);
margin-bottom: 0.8rem;
}
.eko-en-bref__item p {
font-size: 1.1rem;
color: #666;
line-height: 1.5;
margin: 0;
}
@media (max-width: 768px) {
.eko-en-bref {
padding: 3rem 1rem;
}
.eko-en-bref h2 {
font-size: 1.8rem;
margin-bottom: 2rem;
}
.eko-en-bref__grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.eko-en-bref__item {
padding: 1.5rem 1rem;
}
.eko-en-bref__icon {
font-size: 2.5rem;
}
}
.eko-definition {
background: linear-gradient(135deg, #f8f9fa 0%, #e0f7ef 100%);
padding: 4rem 1.2rem;
}
.eko-definition__container {
max-width: 1200px;
margin: 0 auto;
}
.eko-definition h2 {
text-align: center;
font-size: 2.2rem;
color: var(--eko-grey-dark);
margin-bottom: 3rem;
font-weight: 800;
}
.eko-definition__content {
display: flex;
flex-direction: column;
gap: 3rem;
}
.eko-definition__text h3,
.eko-definition__table h3,
.eko-definition__description h3 {
font-size: 1.4rem;
color: var(--eko-grey-dark);
margin-bottom: 1.5rem;
font-weight: 700;
}
.eko-definition__text p,
.eko-definition__description p {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.eko-definition__text ul,
.eko-definition__description ul {
margin-bottom: 2rem;
padding-left: 1.5rem;
}
.eko-definition__text li,
.eko-definition__description li {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
margin-bottom: 0.8rem;
}
.eko-definition__text strong,
.eko-definition__description strong {
color: var(--eko-grey-dark);
font-weight: 700;
}
.eko-table {
width: 100%;
border-collapse: collapse;
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
margin: 1rem 0;
}
.eko-table thead {
background: var(--eko-green);
}
.eko-table th {
padding: 1.2rem 1rem;
text-align: left;
font-weight: 700;
color: var(--eko-grey-dark);
font-size: 1rem;
}
.eko-table td {
padding: 1rem;
border-bottom: 1px solid #eee;
font-size: 1rem;
color: #555;
line-height: 1.4;
}
.eko-table tbody tr:last-child td {
border-bottom: none;
}
.eko-table tbody tr:hover {
background: #f8f9fa;
}
@media (max-width: 768px) {
.eko-definition {
padding: 3rem 1rem;
}
.eko-definition h2 {
font-size: 1.8rem;
margin-bottom: 2rem;
}
.eko-definition__content {
gap: 2rem;
}
.eko-table {
font-size: 0.9rem;
}
.eko-table th,
.eko-table td {
padding: 0.8rem 0.6rem;
}
}
.eko-reasons {
background: #fff;
padding: 4rem 1.2rem;
}
.eko-reasons__container {
max-width: 1200px;
margin: 0 auto;
}
.eko-reasons h2 {
text-align: center;
font-size: 2.2rem;
color: var(--eko-grey-dark);
margin-bottom: 3rem;
font-weight: 800;
}
.eko-reasons__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}
.eko-reason-card {
background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
border-radius: 16px;
padding: 2rem;
box-shadow: 0 8px 32px rgba(0,0,0,0.08);
border: 1px solid #e9ecef;
position: relative;
transition: all 0.3s ease;
}
.eko-reason-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.eko-reason-card__number {
position: absolute;
top: -15px;
left: 2rem;
width: 40px;
height: 40px;
background: var(--eko-green);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 1.2rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.eko-reason-card__content {
margin-top: 1rem;
}
.eko-reason-card h3 {
font-size: 1.3rem;
color: var(--eko-grey-dark);
margin-bottom: 1.2rem;
font-weight: 700;
line-height: 1.3;
}
.eko-reason-card p {
font-size: 1rem;
color: #555;
line-height: 1.6;
margin-bottom: 1rem;
}
.eko-reason-card p:last-child {
margin-bottom: 0;
}
@media (max-width: 768px) {
.eko-reasons {
padding: 3rem 1rem;
}
.eko-reasons h2 {
font-size: 1.8rem;
margin-bottom: 2rem;
}
.eko-reasons__grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.eko-reason-card {
padding: 1.5rem;
}
.eko-reason-card__number {
width: 35px;
height: 35px;
font-size: 1.1rem;
top: -12px;
left: 1.5rem;
}
}
.eko-diagnostic {
background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
padding: 4rem 1.2rem;
}
.eko-diagnostic__container {
max-width: 1200px;
margin: 0 auto;
}
.eko-diagnostic h2 {
text-align: center;
font-size: 2.2rem;
color: var(--eko-grey-dark);
margin-bottom: 3rem;
font-weight: 800;
}
.eko-diagnostic__content {
display: flex;
flex-direction: column;
gap: 3rem;
}
.eko-diagnostic__intro p,
.eko-diagnostic__method p {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.eko-diagnostic__intro strong,
.eko-diagnostic__method strong {
color: var(--eko-grey-dark);
font-weight: 700;
}
.eko-diagnostic__method h3,
.eko-diagnostic__value h3 {
font-size: 1.4rem;
color: var(--eko-grey-dark);
margin-bottom: 1.5rem;
font-weight: 700;
}
.eko-diagnostic__method ul {
margin-bottom: 2rem;
padding-left: 1.5rem;
}
.eko-diagnostic__method li {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
margin-bottom: 0.8rem;
}
.eko-diagnostic__method li strong {
color: var(--eko-grey-dark);
font-weight: 700;
}
.eko-value-card {
background: #fff;
border-radius: 16px;
padding: 2rem;
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
border: 2px solid var(--eko-green);
display: flex;
gap: 1.5rem;
align-items: flex-start;
}
.eko-value-card__icon {
font-size: 2.5rem;
flex-shrink: 0;
}
.eko-value-card__content {
flex: 1;
}
.eko-value-card__content p {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.eko-value-card__content p:last-child {
margin-bottom: 0;
}
.eko-value-card__highlight {
background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
border-radius: 12px;
padding: 1.5rem;
border-left: 4px solid var(--eko-green);
margin-top: 1.5rem;
}
.eko-value-card__highlight p {
margin-bottom: 1rem;
font-size: 1.1rem;
color: var(--eko-grey-dark);
}
.eko-value-card__highlight p:last-child {
margin-bottom: 0;
}
.eko-value-card__highlight strong {
color: var(--eko-green);
font-weight: 700;
}
@media (max-width: 768px) {
.eko-diagnostic {
padding: 3rem 1rem;
}
.eko-diagnostic h2 {
font-size: 1.8rem;
margin-bottom: 2rem;
}
.eko-diagnostic__content {
gap: 2rem;
}
.eko-value-card {
flex-direction: column;
padding: 1.5rem;
gap: 1rem;
}
.eko-value-card__icon {
font-size: 2rem;
text-align: center;
}
.eko-value-card__highlight {
padding: 1rem;
}
}
.eko-techniques {
background: #fff;
padding: 4rem 1.2rem;
}
.eko-techniques__container {
max-width: 1200px;
margin: 0 auto;
}
.eko-techniques h2 {
text-align: center;
font-size: 2.2rem;
color: var(--eko-grey-dark);
margin-bottom: 3rem;
font-weight: 800;
}
.eko-techniques__content {
display: flex;
flex-direction: column;
gap: 4rem;
}
.eko-technique-category {
background: linear-gradient(135deg, #f8f9fa 0%, #e0f7ef 100%);
border-radius: 20px;
padding: 2.5rem;
box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.eko-technique-category__title {
display: flex;
align-items: center;
gap: 1rem;
font-size: 1.6rem;
color: var(--eko-grey-dark);
margin-bottom: 1.5rem;
font-weight: 700;
}
.eko-technique-category__icon {
font-size: 2rem;
background: var(--eko-green);
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.eko-technique-category__intro {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
margin-bottom: 2rem;
font-weight: 500;
}
.eko-technique-methods {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2rem;
}
.eko-technique-method {
background: #fff;
border-radius: 16px;
padding: 2rem;
box-shadow: 0 4px 16px rgba(0,0,0,0.06);
border: 1px solid #e9ecef;
transition: all 0.3s ease;
}
.eko-technique-method:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.eko-technique-method h4 {
font-size: 1.3rem;
color: var(--eko-grey-dark);
margin-bottom: 1.2rem;
font-weight: 700;
}
.eko-technique-method p {
font-size: 1rem;
color: #555;
line-height: 1.6;
margin-bottom: 1.2rem;
}
.eko-technique-method p:last-of-type {
margin-bottom: 1.5rem;
}
.eko-technique-method strong {
color: var(--eko-grey-dark);
font-weight: 700;
}
.eko-technique-method ul {
margin-bottom: 1.5rem;
padding-left: 1.5rem;
}
.eko-technique-method li {
font-size: 1rem;
color: #555;
line-height: 1.6;
margin-bottom: 0.5rem;
}
.eko-technique-method li strong {
color: var(--eko-grey-dark);
font-weight: 700;
}
.eko-technique-method__pros {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
margin-top: 1.5rem;
}
.eko-pro-tag {
background: var(--eko-green);
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
display: inline-block;
}
@media (max-width: 768px) {
.eko-techniques {
padding: 3rem 1rem;
}
.eko-techniques h2 {
font-size: 1.8rem;
margin-bottom: 2rem;
}
.eko-techniques__content {
gap: 3rem;
}
.eko-technique-category {
padding: 2rem 1.5rem;
}
.eko-technique-category__title {
font-size: 1.4rem;
flex-direction: column;
text-align: center;
gap: 0.8rem;
}
.eko-technique-category__icon {
width: 45px;
height: 45px;
font-size: 1.8rem;
}
.eko-technique-methods {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.eko-technique-method {
padding: 1.5rem;
}
.eko-technique-method__pros {
gap: 0.6rem;
}
.eko-pro-tag {
font-size: 0.85rem;
padding: 0.4rem 0.8rem;
}
}
.eko-materials {
background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
padding: 4rem 1.2rem;
}
.eko-materials__container {
max-width: 1200px;
margin: 0 auto;
}
.eko-materials h2 {
text-align: center;
font-size: 2.2rem;
color: var(--eko-grey-dark);
margin-bottom: 3rem;
font-weight: 800;
}
.eko-materials__content {
display: flex;
flex-direction: column;
gap: 4rem;
}
.eko-materials-category {
background: #fff;
border-radius: 20px;
padding: 2.5rem;
box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.eko-materials-category__title {
display: flex;
align-items: center;
gap: 1rem;
font-size: 1.6rem;
color: var(--eko-grey-dark);
margin-bottom: 2rem;
font-weight: 700;
}
.eko-materials-category__icon {
font-size: 2rem;
background: var(--eko-green);
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.eko-materials-table-wrapper {
overflow-x: auto;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.eko-materials-table {
width: 100%;
border-collapse: collapse;
background: #fff;
font-size: 0.95rem;
}
.eko-materials-table thead {
background: var(--eko-green);
}
.eko-materials-table th {
padding: 1.2rem 1rem;
text-align: left;
font-weight: 700;
color: var(--eko-grey-dark);
font-size: 1rem;
white-space: nowrap;
}
.eko-materials-table td {
padding: 1rem;
border-bottom: 1px solid #eee;
color: #555;
line-height: 1.4;
vertical-align: top;
}
.eko-materials-table tbody tr:last-child td {
border-bottom: none;
}
.eko-materials-table tbody tr:hover {
background: #f8f9fa;
}
.eko-materials-table strong {
color: var(--eko-grey-dark);
font-weight: 700;
}
.eko-fire-tag {
padding: 0.3rem 0.8rem;
border-radius: 12px;
font-size: 0.85rem;
font-weight: 600;
display: inline-block;
}
.eko-fire-none {
background: #d4edda;
color: #155724;
}
.eko-fire-medium {
background: #fff3cd;
color: #856404;
}
.eko-fire-high {
background: #f8d7da;
color: #721c24;
}
.eko-fire-dangerous {
background: #721c24;
color: #f8d7da;
}
.eko-acoustic-tag {
padding: 0.3rem 0.8rem;
border-radius: 12px;
font-size: 0.85rem;
font-weight: 600;
display: inline-block;
}
.eko-acoustic-excellent {
background: #d1ecf1;
color: #0c5460;
}
.eko-acoustic-good {
background: #d4edda;
color: #155724;
}
.eko-acoustic-medium {
background: #fff3cd;
color: #856404;
}
.eko-acoustic-poor {
background: #f8d7da;
color: #721c24;
}
@media (max-width: 768px) {
.eko-materials {
padding: 3rem 1rem;
}
.eko-materials h2 {
font-size: 1.8rem;
margin-bottom: 2rem;
}
.eko-materials__content {
gap: 3rem;
}
.eko-materials-category {
padding: 2rem 1.5rem;
}
.eko-materials-category__title {
font-size: 1.4rem;
flex-direction: column;
text-align: center;
gap: 0.8rem;
}
.eko-materials-category__icon {
width: 45px;
height: 45px;
font-size: 1.8rem;
}
.eko-materials-table {
font-size: 0.85rem;
}
.eko-materials-table th,
.eko-materials-table td {
padding: 0.8rem 0.6rem;
}
}
.eko-pricing {
background: #fff;
padding: 4rem 1.2rem;
}
.eko-pricing__container {
max-width: 100%;
margin: 0 auto;
width: 100%;
}
.eko-pricing h2 {
text-align: center;
font-size: 2.2rem;
color: var(--eko-grey-dark);
margin-bottom: 3rem;
font-weight: 800;
}
.eko-pricing__content {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
margin-bottom: 3rem;
width: 100%;
max-width: 100%;
}
.eko-pricing-card {
background: linear-gradient(135deg, #f8f9fa 0%, #e0f7ef 100%);
border-radius: 20px;
padding: 2.5rem;
box-shadow: 0 8px 32px rgba(0,0,0,0.08);
border: 2px solid transparent;
transition: all 0.3s ease;
}
.eko-pricing-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.eko-pricing-card--premium {
background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
border-color: var(--eko-green);
}
.eko-pricing-card__header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 2rem;
}
.eko-pricing-card__icon {
font-size: 2.5rem;
background: var(--eko-green);
color: white;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.eko-pricing-card h3 {
font-size: 1.4rem;
color: var(--eko-grey-dark);
font-weight: 700;
line-height: 1.3;
}
.eko-pricing-card__body p {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.eko-pricing-card__body strong {
color: var(--eko-grey-dark);
font-weight: 700;
}
.eko-pricing-card__body ul {
margin-bottom: 1.5rem;
padding-left: 1.5rem;
}
.eko-pricing-card__body li {
font-size: 1rem;
color: #555;
line-height: 1.6;
margin-bottom: 0.5rem;
}
.eko-pricing-highlight {
background: #fff;
border-radius: 16px;
padding: 2rem;
margin: 2rem 0;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
text-align: center;
border: 2px solid var(--eko-green);
}
.eko-pricing-range {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin-bottom: 0.5rem;
}
.eko-pricing-min,
.eko-pricing-max {
font-size: 1.8rem;
font-weight: 800;
color: var(--eko-green);
}
.eko-pricing-separator {
font-size: 1.2rem;
color: #666;
font-weight: 600;
}
.eko-pricing-note {
font-size: 0.9rem;
color: #666;
font-style: italic;
}
.eko-pricing__info {
max-width: 800px;
margin: 0 auto;
}
.eko-pricing__info--side-by-side {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
max-width: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.eko-info-card {
background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
border-radius: 16px;
padding: 2rem;
display: flex;
gap: 1.5rem;
align-items: flex-start;
border-left: 4px solid #f39c12;
height: 100%;
min-height: 200px;
}
.eko-info-card__icon {
font-size: 2rem;
flex-shrink: 0;
}
.eko-info-card__content h4 {
font-size: 1.2rem;
color: var(--eko-grey-dark);
margin-bottom: 1rem;
font-weight: 700;
}
.eko-info-card__content p {
font-size: 1rem;
color: #555;
line-height: 1.6;
}
.eko-info-card__content strong {
color: var(--eko-grey-dark);
font-weight: 700;
}
@media (max-width: 768px) {
.eko-pricing {
padding: 3rem 1rem;
}
.eko-pricing h2 {
font-size: 1.8rem;
margin-bottom: 2rem;
}
.eko-pricing__content {
grid-template-columns: 1fr;
gap: 1.5rem;
margin-bottom: 2rem;
}
.eko-pricing-card {
padding: 2rem 1.5rem;
}
.eko-pricing-card__header {
flex-direction: column;
text-align: center;
gap: 1rem;
}
.eko-pricing-card__icon {
width: 50px;
height: 50px;
font-size: 2rem;
}
.eko-pricing-highlight {
padding: 1.5rem;
}
.eko-pricing-range {
flex-direction: column;
gap: 0.5rem;
}
.eko-pricing-min,
.eko-pricing-max {
font-size: 1.5rem;
}
.eko-info-card {
flex-direction: column;
text-align: center;
gap: 1rem;
}
.eko-info-card__icon {
font-size: 1.8rem;
}
.eko-pricing__info--side-by-side {
grid-template-columns: 1fr;
gap: 1.5rem;
}
}
.eko-aides {
background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
padding: 4rem 1.2rem;
}
.eko-aides__container {
max-width: 1200px;
margin: 0 auto;
}
.eko-aides h2 {
text-align: center;
font-size: 2.2rem;
color: var(--eko-grey-dark);
margin-bottom: 3rem;
font-weight: 800;
}
.eko-aides__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-bottom: 3rem;
}
.eko-aide-card {
background: #fff;
border-radius: 16px;
padding: 2rem;
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
border: 2px solid transparent;
transition: all 0.3s ease;
text-align: center;
}
.eko-aide-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,0,0,0.15);
border-color: var(--eko-green);
}
.eko-aide-card__header {
margin-bottom: 1.5rem;
}
.eko-aide-card__icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.eko-aide-card h3 {
font-size: 1.3rem;
color: var(--eko-grey-dark);
font-weight: 700;
margin-bottom: 0.5rem;
}
.eko-aide-card__body {
display: flex;
flex-direction: column;
gap: 1rem;
}
.eko-aide-card__amount {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.eko-aide-amount {
font-size: 1.8rem;
font-weight: 800;
color: var(--eko-green);
}
.eko-aide-target {
font-size: 1rem;
color: #555;
font-weight: 500;
}
.eko-aide-card p {
font-size: 1rem;
color: #555;
line-height: 1.5;
margin: 0;
}
.eko-aide-card strong {
color: var(--eko-grey-dark);
font-weight: 700;
}
.eko-aides__cta {
max-width: 800px;
margin: 0 auto;
}
.eko-cta-card {
background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
border-radius: 20px;
padding: 2.5rem;
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
border: 2px solid var(--eko-green);
display: flex;
align-items: center;
gap: 2rem;
text-align: left;
}
.eko-cta-card__icon {
font-size: 3rem;
flex-shrink: 0;
}
.eko-cta-card__content {
flex: 1;
text-align: center;
}
.eko-cta-card h3 {
font-size: 1.5rem;
color: var(--eko-grey-dark);
margin-bottom: 1rem;
font-weight: 700;
}
.eko-cta-card p {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.eko-btn {
display: inline-block;
padding: 1rem 2rem;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
border: none;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
}
.eko-btn--primary {
background: var(--eko-green);
color: white;
}
.eko-btn--primary:hover {
background: #28a745;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}
@media (max-width: 768px) {
.eko-aides {
padding: 3rem 1rem;
}
.eko-aides h2 {
font-size: 1.8rem;
margin-bottom: 2rem;
}
.eko-aides__grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
margin-bottom: 2rem;
}
.eko-aide-card {
padding: 1.5rem;
}
.eko-aide-card__icon {
font-size: 2rem;
}
.eko-aide-amount {
font-size: 1.5rem;
}
.eko-cta-card {
flex-direction: column;
text-align: center;
padding: 2rem 1.5rem;
gap: 1.5rem;
}
.eko-cta-card__icon {
font-size: 2.5rem;
}
.eko-cta-card h3 {
font-size: 1.3rem;
}
.eko-cta-card p {
font-size: 1rem;
}
}
@media (max-width: 480px) {
.eko-aides__grid {
grid-template-columns: 1fr;
}
}
.eko-brief {
padding: 4rem 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.eko-brief__container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.eko-brief h2 {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
color: var(--eko-grey-dark);
margin-bottom: 3rem;
}
.eko-brief__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.eko-brief-card {
background: white;
border-radius: 16px;
padding: 2rem;
text-align: center;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-left: 4px solid var(--eko-green);
}
.eko-brief-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.eko-brief-card__icon {
font-size: 3rem;
margin-bottom: 1rem;
display: block;
}
.eko-brief-card__content h3 {
font-size: 1.3rem;
font-weight: 600;
color: var(--eko-grey-dark);
margin-bottom: 0.5rem;
}
.eko-brief-card__highlight {
font-size: 1.1rem;
font-weight: 700;
color: var(--eko-green);
margin: 0;
}
@media (max-width: 768px) {
.eko-brief {
padding: 3rem 0;
}
.eko-brief h2 {
font-size: 2rem;
margin-bottom: 2rem;
}
.eko-brief__grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.eko-brief-card {
padding: 1.5rem;
}
.eko-brief-card__icon {
font-size: 2.5rem;
}
}
.eko-insulants {
padding: 4rem 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.eko-insulants__container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.eko-insulants h2 {
text-align: center;
font-size: 2.2rem;
font-weight: 700;
color: var(--eko-grey-dark);
margin-bottom: 3rem;
}
.eko-insulants__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
}
.eko-insulant-card {
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 2rem 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
transition: box-shadow 0.3s, transform 0.3s;
border-left: 4px solid var(--eko-green);
}
.eko-insulant-card:hover {
box-shadow: 0 8px 30px rgba(0,0,0,0.13);
transform: translateY(-5px);
}
.eko-insulant-card__icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.eko-insulant-card__content h3 {
font-size: 1.2rem;
font-weight: 600;
color: var(--eko-grey-dark);
margin-bottom: 0.5rem;
text-align: center;
}
.eko-insulant-card__content p {
font-size: 1rem;
color: var(--eko-grey-dark);
text-align: center;
}
@media (max-width: 768px) {
.eko-insulants {
padding: 2.5rem 0;
}
.eko-insulants h2 {
font-size: 1.5rem;
margin-bottom: 2rem;
}
.eko-insulants__grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.eko-insulant-card {
padding: 1.2rem 1rem;
}
.eko-insulant-card__icon {
font-size: 2rem;
}
}
.eko-pricing__table {
width: 100%;
border-collapse: collapse;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
margin: 2rem 0;
}
.eko-pricing__table th {
background: var(--eko-green);
color: white;
padding: 1.2rem 1rem;
text-align: left;
font-weight: 600;
font-size: 1rem;
}
.eko-pricing__table td {
padding: 1rem;
border-bottom: 1px solid #e9ecef;
vertical-align: top;
}
.eko-pricing__table tr:last-child td {
border-bottom: none;
}
.eko-pricing__table tr:hover {
background-color: #f8f9fa;
}
.eko-pricing__price {
font-weight: 700;
color: var(--eko-green);
font-size: 1.1rem;
}
.eko-pricing__table td:first-child {
font-weight: 600;
color: var(--eko-grey-dark);
}
.eko-pricing__table td:last-child {
color: #6c757d;
font-size: 0.95rem;
line-height: 1.4;
}
.eko-section-services {
background: linear-gradient(135deg, #f8f9fa 0%, #e0f7ef 100%);
padding: 3.5rem 1.2rem 3rem 1.2rem;
margin: 0;
max-width: none;
border-radius: 0;
box-shadow: none;
position: relative;
width: 100vw;
left: 50%;
right: 50%;
transform: translateX(-50%);
}
.eko-section-services__container {
padding: 0;
max-width: 1200px;
margin: 0 auto;
box-sizing: border-box;
}
.eko-section-services .eko-services-intro {
text-align: center;
margin-bottom: 18px;
}
.eko-section-services h2 {
text-align: center;
font-size: 2rem;
color: var(--eko-grey-dark);
margin-bottom: 2.5rem;
font-weight: 900;
letter-spacing: 0.04em;
font-family: "Montserrat", Arial, sans-serif;
margin-top: 0;
}
.eko-section-services .eko-services-lead {
color: #444;
font-size: 1.13em;
margin-bottom: 0;
font-family: 'Segoe UI', Arial, sans-serif;
}
.eko-section-services .eko-families-bar {
display: flex;
gap: 18px;
justify-content: center;
margin-bottom: 32px;
flex-wrap: wrap;
}
.eko-section-services .family-btn {
background: #fff;
color: #009688;
border: 2px solid #009688;
border-radius: 32px;
padding: 13px 32px;
font-size: 1.08em;
font-family: 'Segoe UI', Arial, sans-serif;
font-weight: 600;
cursor: pointer;
transition: background 0.15s, color 0.15s, box-shadow 0.15s;
margin-bottom: 8px;
box-shadow: 0 2px 8px 0 rgba(0,150,136,0.07);
outline: none;
position: relative;
letter-spacing: 0.5px;
}
.eko-section-services .family-btn.selected, .eko-section-services .family-btn:focus {
background: #009688;
color: #fff;
box-shadow: 0 4px 16px 0 rgba(0,150,136,0.13);
border-color: #009688;
z-index: 1;
}
.eko-section-services .family-btn:hover {
background: #10b981;
color: #fff;
border-color: #10b981;
}
.eko-section-services .family-btn:focus-visible {
outline: 2px solid #10b981;
}
.carousel-arrow {
background: #fff;
color: #009688;
border: 2px solid #009688;
border-radius: 50%;
width: 44px;
height: 44px;
font-size: 2rem;
font-weight: bold;
cursor: pointer;
transition: background 0.15s, color 0.15s;
display: flex;
align-items: center;
justify-content: center;
margin: 0 8px;
box-shadow: 0 2px 8px 0 rgba(0,150,136,0.07);
}
.carousel-arrow:focus-visible {
outline: 2px solid #10b981;
}
.carousel-arrow:hover {
background: #009688;
color: #fff;
}
.eko-section-services .eko-services-cards-row {
display: flex;
gap: 48px;
justify-content: center;
margin: 48px 0 0 0;
padding: 32px 0;
background: transparent;
border-radius: 18px;
box-shadow: none;
}
.eko-section-services .v6-card {
width: 320px;
min-width: 320px;
max-width: 320px;
height: 260px;
min-height: 260px;
max-height: 260px;
border-radius: 1.5rem;
box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
background: var(--eko-grey-light);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
justify-content: flex-end;
overflow: hidden;
position: relative;
transition: box-shadow 0.25s, transform 0.25s, opacity 0.3s;
opacity: 1;
}
.eko-section-services .v6-card:hover {
box-shadow: 0 8px 24px rgba(44, 62, 80, 0.13);
transform: translateY(-4px) scale(1.03);
z-index: 2;
}
.eko-section-services .v6-card .eko-card-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg,rgba(0,0,0,0.32) 0%,rgba(0,0,0,0.60) 100%);
z-index: 1;
pointer-events: none;
transition: background 0.2s;
}
.eko-section-services .v6-card-content {
background: linear-gradient(180deg,rgba(0,150,136,0.10) 0%,rgba(0,0,0,0.55) 100%);
color: #fff;
padding: 22px 20px 18px 20px;
border-radius: 0 0 18px 18px;
width: 100%;
box-sizing: border-box;
min-height: 110px;
display: flex;
flex-direction: column;
justify-content: flex-end;
position: relative;
z-index: 2;
}
.eko-section-services .v6-card-content h3 {
margin: 0 0 8px 0;
color: #fff;
font-size: 1.18rem;
font-family: 'Segoe UI', Arial, sans-serif;
font-weight: 700;
}
.eko-section-services .v6-card-content p {
margin: 0 0 8px 0;
color: #e0f7fa;
font-size: 1em;
font-family: 'Segoe UI', Arial, sans-serif;
}
.eko-section-services .v6-card-content a {
display: inline-block;
margin-top: 10px;
background: #009688;
color: #fff;
border-radius: 7px;
padding: 8px 20px;
font-size: 1em;
font-weight: 500;
text-decoration: none;
transition: background 0.18s;
font-family: 'Segoe UI', Arial, sans-serif;
align-self: flex-start;
}
.eko-section-services .v6-card-content a:hover {
background: #10b981;
}
#service-count {
text-align: center;
color: #009688;
font-size: 1.08em;
margin-bottom: 18px;
font-weight: 500;
}

/* ===== NOUVELLE PRÉSENTATION CATÉGORIES ===== */
.eko-context-bar {
background: linear-gradient(135deg, #e0f7ef 0%, #f0f9ff 100%);
border: 2px solid #009688;
border-radius: 16px;
padding: 16px 20px;
margin: 20px 0 30px 0;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 12px rgba(0, 150, 136, 0.1);
transition: all 0.3s ease;
}

.eko-context-bar:hover {
box-shadow: 0 6px 20px rgba(0, 150, 136, 0.15);
transform: translateY(-1px);
}

.eko-context-info {
display: flex;
align-items: center;
gap: 12px;
font-family: 'Segoe UI', Arial, sans-serif;
}

.eko-context-count {
background: #009688;
color: white;
padding: 6px 14px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
}

.eko-context-separator {
color: #009688;
font-weight: bold;
font-size: 1.2rem;
}

.eko-context-family {
color: #006b5d;
font-size: 1.1rem;
font-weight: 700;
}

.eko-context-close {
background: white;
border: 2px solid #009688;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
color: #009688;
}

.eko-context-close:hover,
.eko-context-close:focus {
background: #009688;
color: white;
transform: scale(1.05);
}

.eko-context-close:focus-visible {
outline: 2px solid #10b981;
outline-offset: 2px;
}

.eko-services-grid-category {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
margin: 30px 0;
}

.v6-card-category {
background: var(--eko-grey-light);
border-radius: 16px;
box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
overflow: hidden;
position: relative;
transition: all 0.3s ease;
min-height: 320px;
display: flex;
flex-direction: column;
justify-content: flex-end;
}

.v6-card-category:hover {
box-shadow: 0 8px 25px rgba(44, 62, 80, 0.15);
transform: translateY(-4px) scale(1.02);
}

.v6-card-category .eko-card-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
z-index: 1;
}

.v6-card-category .v6-card-content {
background: linear-gradient(180deg, rgba(0,150,136,0.15) 0%, rgba(0,0,0,0.65) 100%);
color: white;
padding: 20px;
position: relative;
z-index: 2;
}

.v6-card-category .v6-card-content h3 {
color: white;
font-size: 1.3rem;
font-weight: 700;
margin: 0 0 10px 0;
font-family: 'Segoe UI', Arial, sans-serif;
}

.v6-card-category .v6-card-desc {
color: rgba(255, 255, 255, 0.9);
font-size: 0.95rem;
line-height: 1.4;
margin: 0 0 15px 0;
}

.v6-card-category .v6-card-link {
background: #009688;
color: white;
padding: 10px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
display: inline-block;
transition: all 0.2s ease;
}

.v6-card-category .v6-card-link:hover,
.v6-card-category .v6-card-link:focus {
background: #10b981;
transform: translateY(-1px);
}

@media (max-width: 768px) {
.eko-context-bar {
flex-direction: column;
gap: 15px;
text-align: center;
padding: 20px;
}

.eko-context-info {
flex-direction: column;
gap: 8px;
}

.eko-services-grid-category {
grid-template-columns: 1fr;
gap: 20px;
}

.v6-card-category {
min-height: 280px;
}
}

@media (max-width: 900px) {
.eko-section-services h2 {
font-size: 1.3rem;
}
.eko-section-services__container {
padding: 0;
}
.eko-section-services .eko-services-cards-row {
gap: 24px;
margin: 24px 0 0 0;
padding: 18px 0;
}
.eko-section-services .v6-card, .eko-section-services .v6-card-content {
width: 96vw;
min-width: 0;
max-width: 100vw;
}
.eko-section-services .v6-card {
height: 200px;
min-height: 200px;
max-height: 200px;
}
}
@media (max-width: 700px) {
.eko-section-services {
padding: 1.2rem 0.5rem 1.2rem 0.5rem;
margin: 40px 0 40px 0;
}
.eko-section-services__container {
padding: 0;
}
.eko-section-services .eko-services-intro h2 {
font-size: 1.3rem;
}
.eko-section-services .eko-services-cards-row {
flex-direction: column;
align-items: center;
gap: 18px;
margin: 18px 0 0 0;
padding: 8px 0;
}
.eko-section-services .v6-card, .eko-section-services .v6-card-content {
width: 98vw;
min-width: 0;
max-width: 100vw;
padding-left: 0;
padding-right: 0;
}
.eko-section-services .v6-card {
height: 160px;
min-height: 160px;
max-height: 160px;
}
}
.eko-section-services .v6-card {
min-height: 280px;
background-size: cover;
background-position: center;
}
.eko-contact-about-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e0f7ef 100%);
padding: 4rem 1.2rem 4rem 1.2rem;
width: 100vw;
left: 50%;
right: 50%;
transform: translateX(-50%);
position: relative;
margin: 0;
}
.eko-contact-about-container {
max-width: 1200px;
margin: 0 auto;
}
.eko-contact-about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: start;
}
.eko-about-block, .eko-contact-block {
background: #fff;
border-radius: 1.5rem;
box-shadow: 0 2px 16px rgba(44,62,80,0.08);
padding: 2.5rem 2rem;
}
.eko-about-block h2 {
font-size: 2rem;
color: var(--eko-grey-dark);
font-weight: 900;
margin-bottom: 1rem;
font-family: "Montserrat", Arial, sans-serif;
}
.eko-about-lead {
color: #24c68e;
font-size: 1.2em;
font-weight: 600;
margin-bottom: 1.5rem;
}
.eko-about-text {
margin-bottom: 2rem;
}
.eko-about-text p {
color: #444;
line-height: 1.6;
margin-bottom: 1rem;
}
.eko-about-features {
display: flex;
flex-direction: column;
gap: 0.8rem;
}
.eko-feature {
display: flex;
align-items: center;
gap: 0.8rem;
color: #555;
font-weight: 500;
}
.eko-feature-icon {
color: #24c68e;
font-weight: bold;
font-size: 1.1em;
}
.eko-contact-block h3 {
font-size: 1.8rem;
color: var(--eko-grey-dark);
font-weight: 900;
margin-bottom: 1rem;
font-family: "Montserrat", Arial, sans-serif;
}
.eko-contact-lead {
color: #444;
font-size: 1.1em;
margin-bottom: 2rem;
}
.eko-contact-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.eko-contact-row {
display: flex;
gap: 1rem;
}
.eko-contact-form input, .eko-contact-form textarea {
font-size: 1em;
padding: 0.9em 1em;
border-radius: 0.8em;
border: 1.5px solid #e0f7ef;
background: #f8f9fa;
color: #22223b;
width: 100%;
font-family: inherit;
transition: border 0.2s;
}
.eko-contact-form input:focus, .eko-contact-form textarea:focus {
border-color: #24c68e;
outline: none;
}
.eko-contact-form button {
margin-top: 0.5rem;
align-self: flex-start;
min-width: 180px;
}
@media (max-width: 900px) {
.eko-contact-about-content {
grid-template-columns: 1fr;
gap: 2rem;
}
}
@media (max-width: 700px) {
.eko-contact-about-section {
padding: 2rem 1rem;
}
.eko-about-block, .eko-contact-block {
padding: 1.5rem 1rem;
}
.eko-contact-row {
flex-direction: column;
gap: 0.7rem;
}

/* Styles pour les formulaires accessibles */
.eko-form__group {
margin-bottom: 1rem;
}

.eko-form__label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--eko-text);
}

.eko-form__help-text {
margin-top: 0.5rem;
font-size: 0.9rem;
color: #666;
}

.eko-form__help-text.error {
color: #d32f2f;
}

.eko-form__help-text.success {
color: var(--eko-green);
}
}

/* Ancrage correct pour la section contact */
#contactez-nous {
  scroll-margin-top: calc(var(--eko-header-height) + 1rem);
}

@media (max-width: 768px) {
  #contactez-nous {
    scroll-margin-top: calc(var(--eko-header-height-mobile) + 1rem);
  }
}

/* ========================================
   AMÉLIORATIONS HÉROS COMBLES - 2025
======================================== */

/* Héros amélioré avec badges et contenu enrichi */
.eko-hero-isolation--enhanced {
  background: linear-gradient(135deg, rgba(26, 157, 107, 0.05) 0%, rgba(31, 189, 122, 0.1) 100%);
  padding: 5rem 1rem 4rem;
  position: relative;
  overflow: hidden;
}

.eko-hero-isolation--enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(26, 157, 107, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.eko-hero-isolation--enhanced .eko-hero-isolation__container {
  position: relative;
  z-index: 2;
}



/* Sous-titre avec style amélioré */
.eko-hero-isolation__subtitle {
  font-size: 1.25rem;
  color: #444;
  text-align: center;
  margin: 1.5rem 0 2rem;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.eko-hero-isolation__subtitle strong {
  color: var(--eko-green);
  font-weight: 700;
}

/* Container CTA amélioré */
.eko-hero-isolation__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* CTA Button amélioré */
.eko-hero-isolation__cta-container .eko-btn {
  position: relative;
  background: linear-gradient(135deg, var(--eko-green) 0%, var(--eko-green-hover) 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 8px 25px rgba(26, 157, 107, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.eko-hero-isolation__cta-container .eko-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.eko-hero-isolation__cta-container .eko-btn:hover::before {
  left: 100%;
}

.eko-hero-isolation__cta-container .eko-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26, 157, 107, 0.4);
}

.eko-hero-isolation__cta-container .eko-btn small {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Éléments de confiance */
.eko-hero-isolation__trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.eko-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

.eko-trust-icon {
  font-size: 1.2rem;
}

/* Variantes spécifiques par type de combles */
.eko-hero-isolation--perdus {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(41, 128, 185, 0.1) 100%);
  border-bottom: 4px solid rgba(52, 152, 219, 0.2);
}

.eko-hero-isolation--perdus::before {
  background: radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.15) 0%, transparent 60%);
}

.eko-hero-isolation--amenageables {
  background: linear-gradient(135deg, rgba(241, 196, 15, 0.05) 0%, rgba(243, 156, 18, 0.1) 100%);
  border-bottom: 4px solid rgba(241, 196, 15, 0.3);
}

.eko-hero-isolation--amenageables::before {
  background: radial-gradient(circle at 80% 20%, rgba(241, 196, 15, 0.15) 0%, transparent 60%);
}

.eko-hero-isolation--terrasse {
  background: linear-gradient(135deg, rgba(52, 73, 94, 0.05) 0%, rgba(44, 62, 80, 0.1) 100%);
  border-bottom: 4px solid rgba(52, 73, 94, 0.2);
}

.eko-hero-isolation--terrasse::before {
  background: radial-gradient(circle at 80% 20%, rgba(52, 73, 94, 0.15) 0%, transparent 60%);
}

/* Icônes spécifiques dans les sections selon le type */
.eko-hero-isolation--perdus .eko-hero-isolation__images::after {
  content: '💨';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.3;
  z-index: 1;
}

.eko-hero-isolation--amenageables .eko-hero-isolation__images::after {
  content: '🏠';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.3;
  z-index: 1;
}

.eko-hero-isolation--terrasse .eko-hero-isolation__images::after {
  content: '🏗️';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.3;
  z-index: 1;
}

/* Responsive pour le héros */
@media (max-width: 768px) {
  .eko-hero-isolation--enhanced {
    padding: 3rem 1rem 2.5rem;
  }
  
  .eko-hero-isolation__subtitle {
    font-size: 1.1rem;
    margin: 1rem 0 1.5rem;
  }
  
  .eko-hero-isolation__trust {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }
  
  .eko-trust-item {
    font-size: 0.9rem;
  }
  
  .eko-hero-isolation__cta-container .eko-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}



/* ========================================
   PAGES MURS - STYLES SPÉCIFIQUES
======================================== */

/* Héros murs utilise les mêmes styles que combles enhanced */
.eko-hero-isolation .eko-hero-isolation__images {
  position: relative;
  margin-top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.eko-hero-isolation .eko-hero-isolation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 500px;
  width: 100%;
}

.eko-hero-isolation .eko-hero-isolation__images .eko-hero-image {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eko-hero-isolation .eko-hero-isolation__images .eko-hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.eko-hero-isolation .eko-hero-isolation__images .eko-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.eko-hero-isolation .eko-hero-isolation__images .eko-hero-image:hover img {
  transform: scale(1.05);
}

/* ========================================
   HÉROS COMPACT - DESIGN RECTANGULAIRE
======================================== */

/* Hero compact pour toutes les pages d'isolation */
.eko-hero-compact {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 1rem;
  margin-top: 60px; /* Offset pour header fixe */
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.eko-hero-compact__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.eko-hero-compact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 300px;
}

/* Partie texte à gauche */
.eko-hero-compact__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-right: 2rem;
}

.eko-hero-compact__text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2c3e50;
  margin: 0;
}

.eko-hero-compact__cta .eko-btn {
  display: inline-flex;
  align-items: center;
  background: var(--eko-green);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.eko-hero-compact__cta .eko-btn:hover {
  background: var(--eko-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 157, 107, 0.3);
}

/* Partie images à droite */
.eko-hero-compact__images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eko-hero-compact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 400px;
  width: 100%;
}

.eko-hero-compact__image {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.eko-hero-compact__image:hover {
  transform: translateY(-3px);
}

.eko-hero-compact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .eko-hero-compact {
    padding: 2rem 1rem;
    min-height: auto;
  }
  
  .eko-hero-compact__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .eko-hero-compact__text {
    padding-right: 0;
  }
  
  .eko-hero-compact__text h1 {
    font-size: 2rem;
  }
  
  .eko-hero-compact__grid {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ========================================
   SECTION EN BREF
======================================== */

.eko-summary {
  background: #ffffff;
  padding: 3rem 1rem;
  border-top: 1px solid #e9ecef;
}

.eko-summary__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.eko-summary__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 2rem;
}

.eko-summary__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.eko-summary__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eko-summary__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.eko-summary__emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.eko-summary__text {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #2c3e50;
  font-weight: 500;
}

/* Responsive pour section en bref */
@media (max-width: 968px) {
  .eko-summary {
    padding: 2rem 1rem;
  }
  
  .eko-summary__grid {
    gap: 1rem;
  }
  
  .eko-summary__item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .eko-summary__emoji {
    font-size: 1.5rem;
  }
  
  .eko-summary__text {
    font-size: 0.85rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .eko-summary__title {
    font-size: 1.6rem;
  }
  
  .eko-summary__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .eko-summary__item {
    flex-direction: row;
    text-align: left;
  }
  
  .eko-summary__text {
    text-align: left;
    font-size: 0.9rem;
  }
}

/* ========================================
   SECTIONS DE CONTENU
======================================== */

.eko-content-section {
  padding: 4rem 1rem;
  background: #ffffff;
}

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

.eko-content-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 3rem;
  text-align: center;
  line-height: 1.2;
}

.eko-content-section__subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 3rem 0 1.5rem;
  line-height: 1.3;
}

.eko-content-section__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.eko-content-section__text strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Tableau comparatif */
.eko-comparison-table {
  margin: 2rem 0;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.eko-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 1rem;
}

.eko-comparison-table th {
  background: var(--eko-green);
  color: white;
  padding: 1.2rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

.eko-comparison-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
}

.eko-comparison-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.eko-comparison-table tr:hover {
  background-color: #e8f5e8;
}

.eko-comparison-table td:first-child {
  font-weight: 600;
  color: #2c3e50;
  background-color: #f1f3f4;
}

/* Largeurs spécifiques pour les tableaux de prix */
.eko-comparison-table table th:first-child,
.eko-comparison-table table td:first-child {
  width: 60%;
}

.eko-comparison-table table th:last-child,
.eko-comparison-table table td:last-child {
  width: 40%;
  text-align: center;
}

/* Pour les tableaux avec plus de 2 colonnes, répartition équitable */
.eko-comparison-table table th:nth-child(n+3),
.eko-comparison-table table td:nth-child(n+3) {
  width: auto;
}

/* Tableaux à 3 colonnes avec première colonne plus étroite */
.eko-comparison-table--three-columns table th:first-child,
.eko-comparison-table--three-columns table td:first-child {
  width: 20% !important;
  font-weight: 600;
  color: #2c3e50;
}

.eko-comparison-table--three-columns table th:nth-child(2),
.eko-comparison-table--three-columns table td:nth-child(2),
.eko-comparison-table--three-columns table th:nth-child(3),
.eko-comparison-table--three-columns table td:nth-child(3) {
  width: 40% !important;
  text-align: left;
  padding: 1.2rem 1.5rem;
}

.eko-comparison-table--three-columns table th:last-child,
.eko-comparison-table--three-columns table td:last-child {
  text-align: left;
}

/* Classe spécifique pour les tableaux de comparaison ITI/ITE */
.eko-comparison-table--iti-ite th:first-child,
.eko-comparison-table--iti-ite td:first-child {
  width: 25%;
  font-weight: 600;
  color: #2c3e50;
  background-color: #f1f3f4;
  text-align: center;
  vertical-align: middle;
}

.eko-comparison-table--iti-ite th:nth-child(2),
.eko-comparison-table--iti-ite td:nth-child(2),
.eko-comparison-table--iti-ite th:nth-child(3),
.eko-comparison-table--iti-ite td:nth-child(3) {
  width: 37.5%;
  text-align: left;
  padding: 1.5rem;
  line-height: 1.6;
}

.eko-comparison-table--iti-ite td:nth-child(2) strong,
.eko-comparison-table--iti-ite td:nth-child(3) strong {
  color: var(--eko-green);
  font-weight: 600;
}

/* Liste à puces stylisée */
.eko-content-section .eko-styled-list {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.eko-content-section .eko-styled-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.eko-content-section .eko-styled-list li::before {
  content: "•";
  color: var(--eko-green);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0.3rem;
}

/* Avantages été/hiver */
.eko-season-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.eko-season-benefit {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  background: #f8f9fa;
}

.eko-season-benefit--winter {
  border-left: 4px solid #3498db;
}

.eko-season-benefit--summer {
  border-left: 4px solid #e74c3c;
}

.eko-season-benefit h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #2c3e50;
}

.eko-season-benefit--winter h4::before {
  content: "❄️ ";
}

.eko-season-benefit--summer h4::before {
  content: "☀️ ";
}

.eko-season-benefit p {
  margin: 0;
  line-height: 1.6;
  color: #4a5568;
}

/* Responsive pour sections de contenu */
@media (max-width: 768px) {
  .eko-content-section {
    padding: 3rem 1rem;
  }
  
  .eko-content-section__title {
    font-size: 2rem;
  }
  
  .eko-content-section__subtitle {
    font-size: 1.5rem;
  }
  
  .eko-content-section__text {
    font-size: 1rem;
  }
  
  .eko-comparison-table {
    font-size: 0.9rem;
  }
  
  .eko-comparison-table th,
  .eko-comparison-table td {
    padding: 0.8rem;
  }
  
  .eko-season-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .eko-season-benefit {
    padding: 1.5rem;
  }
}

/* ========================================
   SECTION RAISONS/BÉNÉFICES
======================================== */

.eko-reasons-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.eko-reasons-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.eko-reasons-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 3rem;
  text-align: center;
  line-height: 1.2;
}

.eko-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.eko-reason-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.eko-reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.eko-reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--eko-green);
}

.eko-reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--eko-green);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.eko-reason-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.eko-reason-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}



/* Responsive pour section raisons */
@media (max-width: 768px) {
  .eko-reasons-section {
    padding: 3rem 1rem;
  }
  
  .eko-reasons-section__title {
    font-size: 2rem;
  }
  
  .eko-reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .eko-reason-card {
    padding: 2rem;
  }
  
  .eko-reason-title {
    font-size: 1.2rem;
  }
  
  .eko-reason-description {
    font-size: 0.95rem;
  }
}

/* ========================================
   HÉROS ORANGE - VARIANTE POUR MURS
======================================== */

/* Hero orange pour les pages murs */
.eko-hero-compact--orange {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe4d1 100%);
}

.eko-hero-compact--orange .eko-hero-compact__cta .eko-btn {
  background: #ff6b35;
}

.eko-hero-compact--orange .eko-hero-compact__cta .eko-btn:hover {
  background: #e85a2e;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* ========================================
   HÉROS MURS - NOUVEAU DESIGN MODERNE
======================================== */

/* Section héros principale */
.eko-hero-murs {
  background: linear-gradient(135deg, rgba(26, 157, 107, 0.03) 0%, rgba(31, 189, 122, 0.08) 100%);
  padding: 6rem 1rem 5rem;
  margin-top: 60px; /* Offset pour header fixe */
  position: relative;
  overflow: hidden;
}

.eko-hero-murs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(26, 157, 107, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(31, 189, 122, 0.05) 0%, transparent 40%);
  z-index: 1;
}

.eko-hero-murs__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eko-hero-murs__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 600px;
}

/* Contenu texte à gauche */
.eko-hero-murs__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 90%;
}

.eko-hero-murs__text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #2c3e50;
  margin: 0;
  letter-spacing: -0.02em;
}

.eko-hero-murs__subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #5a6c7d;
  margin: 0;
  font-weight: 400;
}

.eko-hero-murs__subtitle strong {
  color: var(--eko-green);
  font-weight: 700;
}

/* Actions et boutons */
.eko-hero-murs__actions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.eko-btn--primary.eko-btn--large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--eko-green) 0%, var(--eko-green-hover) 100%);
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(26, 157, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.eko-btn--primary.eko-btn--large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26, 157, 107, 0.4);
}

.eko-btn__text {
  font-size: 1.2rem;
  font-weight: 700;
}

.eko-btn__subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}

/* Garanties */
.eko-hero-murs__guarantees {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.eko-guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  border: 1px solid rgba(26, 157, 107, 0.2);
  transition: all 0.3s ease;
}

.eko-guarantee-item:hover {
  background: rgba(26, 157, 107, 0.1);
  border-color: var(--eko-green);
  transform: translateY(-2px);
}

.eko-guarantee-icon {
  font-size: 1.5rem;
}

.eko-guarantee-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c3e50;
}

/* Gallery d'images à droite */
.eko-hero-murs__images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eko-hero-murs__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 500px;
  width: 100%;
}

/* Cartes d'images */
.eko-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4/3;
}

.eko-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.eko-image-card--featured {
  grid-column: 1 / -1;
  aspect-ratio: 2/1;
}

.eko-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.eko-image-card:hover img {
  transform: scale(1.05);
}

/* Overlay avec label */
.eko-image-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.eko-image-card:hover .eko-image-card__overlay {
  transform: translateY(0);
}

.eko-image-card__label {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive pour héros murs */
@media (max-width: 768px) {
  .eko-hero-murs {
    padding: 4rem 1rem 3rem;
    margin-top: 60px;
  }
  
  .eko-hero-murs__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    min-height: auto;
  }
  
  .eko-hero-murs__text {
    max-width: 100%;
    align-items: center;
  }
  
  .eko-hero-murs__text h1 {
    font-size: 2.5rem;
  }
  
  .eko-hero-murs__subtitle {
    font-size: 1.1rem;
  }
  
  .eko-hero-murs__actions {
    align-items: center;
    width: 100%;
  }
  
  .eko-hero-murs__guarantees {
    justify-content: center;
    gap: 1rem;
  }
  
  .eko-hero-murs__gallery {
    max-width: 400px;
  }
  
  .eko-image-card--featured {
    aspect-ratio: 16/9;
  }
}

/* Types d'isolation */
.eko-types-isolation {
  padding: 6rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.eko-types-isolation__container {
  max-width: 1200px;
  margin: 0 auto;
}

.eko-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.eko-type-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.eko-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--eko-green);
}

.eko-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--eko-green) 0%, var(--eko-green-hover) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.eko-type-card:hover::before {
  transform: scaleX(1);
}

.eko-type-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.eko-type-card__header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--eko-text-primary);
  margin: 0;
}

.eko-type-card__icon {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--eko-green) 0%, var(--eko-green-hover) 100%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eko-type-card__content {
  margin-bottom: 2rem;
  line-height: 1.6;
  color: var(--eko-text-secondary);
}

.eko-type-card__price {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(26, 157, 107, 0.05) 0%, rgba(31, 189, 122, 0.08) 100%);
  border-radius: 8px;
  border-left: 4px solid var(--eko-green);
}

.eko-price-label {
  font-size: 0.9rem;
  color: var(--eko-text-secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.eko-price-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--eko-green);
}

.eko-conseil-expert {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  margin: 3rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 157, 107, 0.1);
}

.eko-conseil-expert h3 {
  color: var(--eko-green);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.eko-comparison-table {
  margin: 3rem 0;
}

.eko-comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.eko-comparison-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 157, 107, 0.1);
  transition: all 0.3s ease;
}

.eko-comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.eko-comparison-card--neuve {
  border-left: 4px solid var(--eko-success);
}

.eko-comparison-card--renovation {
  border-left: 4px solid var(--eko-green);
}

.eko-comparison-card h4 {
  color: var(--eko-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Prix et tableau comparatif */
.eko-prix {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.eko-prix__container {
  max-width: 1200px;
  margin: 0 auto;
}

.eko-prix-factors {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.eko-prix-factors li {
  margin: 0.5rem 0;
  color: var(--eko-text-secondary);
}

.eko-prix-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.eko-prix-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 157, 107, 0.1);
  transition: all 0.3s ease;
}

.eko-prix-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.eko-prix-card--iti {
  border-left: 4px solid var(--eko-info);
}

.eko-prix-card--ite {
  border-left: 4px solid var(--eko-green);
}

.eko-prix-card h3 {
  color: var(--eko-green);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.eko-prix-zone {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.eko-prix-zone strong {
  color: var(--eko-text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.eko-prix-zone em {
  color: var(--eko-success);
  font-style: italic;
  font-size: 0.9rem;
}

.eko-prix-budget {
  text-align: center;
}

.eko-prix-budget strong {
  color: var(--eko-text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.eko-prix-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eko-green);
  display: block;
}

.eko-prix-warning {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.eko-prix-warning p {
  margin: 0;
  color: var(--eko-text-primary);
}

/* Aides financières */
.eko-aides {
  padding: 6rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.eko-aides__container {
  max-width: 1200px;
  margin: 0 auto;
}

.eko-aides__intro {
  margin: 2rem 0 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--eko-text-secondary);
}

.eko-aides__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.eko-aide-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--eko-green);
  position: relative;
  overflow: hidden;
}

.eko-aide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.eko-aide-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(26, 157, 107, 0.02) 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.eko-aide-card:hover::before {
  transform: scaleX(1);
}

.eko-aide-card h3 {
  color: var(--eko-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.eko-aides__note {
  background: rgba(26, 157, 107, 0.05);
  border: 1px solid rgba(26, 157, 107, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.eko-aides__note p {
  margin: 0;
  color: var(--eko-text-primary);
  font-weight: 500;
}

/* Bouton CTA Hero - identique au header */
.eko-hero__cta {
  background: var(--eko-green) !important;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(26, 157, 107, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.eko-hero__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  z-index: -1;
}

.eko-hero__cta:hover {
  background: #147a55 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26, 157, 107, 0.4);
  color: #fff !important;
}

.eko-hero__cta:hover::before {
  opacity: 0;
}

.eko-btn--large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  border-radius: 20px;
}

/* Header corrigé - couleurs cohérentes avec combles */
.eko-header {
  background: var(--eko-grey-dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.eko-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  padding: 0;
  position: relative;
}

/* Structure avec logo décalé plus à gauche - DESKTOP SEULEMENT */
@media (min-width: 901px) {
  .eko-logo {
    position: absolute;
    left: -10px;
    z-index: 1101;
    margin: 0;
    padding: 0;
  }

  .eko-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    max-width: 400px;
    z-index: 1100;
  }

  .eko-header-spacer {
    position: absolute;
    right: 0;
    z-index: 1101;
    margin: 0;
    padding: 0;
  }
}

/* MOBILE - Réinitialisation des positions */
@media (max-width: 900px) {
  .eko-header__container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    padding: 0 1rem !important;
  }

  .eko-logo {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: 1101;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
  }

  .eko-nav {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: 1100;
  }

  .eko-header-spacer {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    z-index: 1101;
    margin: 0;
    padding: 0;
  }

  .eko-header-spacer .eko-btn--cta {
    font-size: 0.8rem !important;
    padding: 0.5rem 0.8rem !important;
    margin-left: 0.5rem;
  }

  /* S'assurer que le toggle mobile fonctionne */
  .eko-nav__toggle {
    position: relative !important;
    display: flex !important;
  }
}

.eko-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.eko-logo:hover {
  transform: scale(1.05);
}

.eko-logo__k {
  color: var(--eko-green);
  font-weight: 900;
}

/* Footer amélioré basé sur le style combles */
.eko-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 4rem 1rem 2rem;
  margin-top: 4rem;
  position: relative;
}

.eko-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--eko-green) 0%, var(--eko-green-hover) 100%);
}

/* Anciens styles footer - remplacés par les styles principaux */

/* Supprimé - utilise le style principal */

.eko-footer__description {
  margin: 1.5rem 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.eko-footer__guarantees {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

.eko-guarantee {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0;
  border-left: 3px solid var(--eko-green);
  padding-left: 1rem;
  background: rgba(26, 157, 107, 0.1);
  border-radius: 4px;
}

.eko-footer__section h4 {
  color: var(--eko-green);
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
}

.eko-footer__section h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--eko-green);
}

.eko-footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eko-footer__section ul li {
  margin: 0.8rem 0;
}

.eko-footer__section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1rem;
}

.eko-footer__section ul li a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--eko-green);
  transition: transform 0.3s ease;
}

.eko-footer__section ul li a:hover {
  color: var(--eko-green);
  transform: translateX(5px);
}

.eko-footer__section ul li a:hover::before {
  transform: translateX(3px);
}

.eko-footer__contact {
  space-y: 1rem;
}

.eko-footer__contact p {
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.eko-footer__contact strong {
  color: white;
}

.eko-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.eko-footer__bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.eko-footer__bottom a:hover {
  color: var(--eko-green);
}

/* Améliorations sections modernes */
.eko-section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.eko-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.eko-section-subtitle {
  font-size: 1.2rem;
  color: #5a6c7d;
  line-height: 1.6;
  font-weight: 400;
}

/* Section En Bref améliorée */
.eko-en-bref {
  background: white;
  padding: 5rem 1rem;
  position: relative;
}

.eko-en-bref::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--eko-green) 0%, var(--eko-green-hover) 100%);
}

.eko-en-bref__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.eko-en-bref__item {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.eko-en-bref__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--eko-green);
}

.eko-en-bref__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.eko-en-bref__label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.eko-en-bref__value {
  color: var(--eko-green);
  font-weight: 600;
  font-size: 1.1rem;
}

/* CTA Final amélioré */
.eko-cta-final {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6rem 1rem;
  text-align: center;
  position: relative;
}

.eko-cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.eko-cta-final__container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eko-cta-final__content h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.eko-cta-final__subtitle {
  font-size: 1.2rem;
  color: #5a6c7d;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.eko-cta-final__garanties {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.eko-garantie {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  color: #5a6c7d;
}

.eko-garantie-icon {
  font-size: 1.5rem;
}

/* Responsive pour murs */
@media (max-width: 768px) {
  .eko-hero-isolation .eko-hero-isolation__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .eko-hero-isolation .eko-hero-isolation__images {
    justify-content: center;
  }
  
  .eko-hero-isolation .eko-hero-isolation__grid {
    margin: 0 auto;
    max-width: 400px;
  }
  
  .eko-hero-isolation .eko-hero-isolation__trust {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .eko-types-grid,
  .eko-comparison-cards,
  .eko-prix-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .eko-aides__grid {
    grid-template-columns: 1fr;
  }
  
  .eko-footer__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .eko-footer__guarantees {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .eko-guarantee {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1rem;
  }
  
  .eko-section-header h2 {
    font-size: 2rem;
  }
  
  .eko-cta-final__content h2 {
    font-size: 2rem;
  }
  
  .eko-cta-final__garanties {
    gap: 1.5rem;
  }
}

/* ========================================
   AMÉLIORATIONS MISE EN PAGE - 2025
======================================== */

/* Améliorations générales de l'espacement et transitions */

/* Espacement harmonieux entre les sections */
main section {
  position: relative;
  overflow: hidden;
}

main section + section {
  margin-top: 0;
}

/* Transitions fluides entre sections avec différentes couleurs de fond */
.eko-en-bref {
  position: relative;
  z-index: 2;
}

.eko-definition--enhanced {
  position: relative;
  z-index: 1;
  margin-top: -2rem;
  padding-top: 7rem;
}

.eko-reasons {
  position: relative;
  z-index: 2;
  background: white;
  margin-top: -2rem;
  padding-top: 5rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

.eko-diagnostic--enhanced {
  position: relative;
  z-index: 1;
  margin-top: -2rem;
  padding-top: 7rem;
}

.eko-techniques {
  position: relative;
  z-index: 2;
  background: white;
  margin-top: -2rem;
  padding-top: 5rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

.eko-materials {
  position: relative;
  z-index: 1;
  margin-top: -2rem;
  padding-top: 7rem;
}

.eko-pricing {
  position: relative;
  z-index: 2;
  background: white;
  margin-top: -2rem;
  padding-top: 5rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

.eko-aides {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  margin-top: -2rem;
  padding-top: 7rem;
}

/* Amélioration des héros sans badges */
.eko-hero-isolation__subtitle {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

/* Amélioration de l'espacement des cartes de raisons */
.eko-reasons__grid {
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.eko-reason-card {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.eko-reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--eko-green) 0%, var(--eko-green-hover) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.eko-reason-card:hover::before {
  transform: scaleX(1);
}

.eko-reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 157, 107, 0.15);
}

/* Amélioration des transitions entre cartes combles */
.eko-combles-grid {
  gap: 2.5rem;
}

.eko-combles-card {
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.eko-combles-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Amélioration des cartes de comparaison */
.eko-comparison-cards {
  gap: 2.5rem;
}

.eko-comparison-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.eko-comparison-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Amélioration des bénéfices saisonniers */
.eko-seasonal-benefits {
  gap: 2.5rem;
}

.eko-seasonal-benefit {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.eko-seasonal-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.eko-seasonal-benefit:hover::before {
  opacity: 1;
}

.eko-seasonal-benefit:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Amélioration des cartes timeline */
.eko-diagnostic-intro {
  gap: 2.5rem;
}

.eko-timeline-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.eko-timeline-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--eko-green) 0%, var(--eko-green-hover) 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.eko-timeline-card:hover::after {
  transform: scaleY(1);
}

.eko-timeline-card:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 40px rgba(26, 157, 107, 0.15);
}

/* Amélioration des cartes d'évaluation */
.eko-evaluation-grid {
  gap: 2rem;
}

.eko-evaluation-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.eko-evaluation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--eko-green) 0%, var(--eko-green-hover) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.eko-evaluation-card:hover::before {
  transform: scaleX(1);
}

.eko-evaluation-card:hover {
  transform: translateY(-5px);
  background: rgba(26, 157, 107, 0.15);
  border-color: rgba(26, 157, 107, 0.3);
}

/* Amélioration de la section valeur U */
.eko-value-indicator {
  transition: all 0.3s ease;
}

.eko-value-bar:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.eko-value-recommendation {
  transition: all 0.3s ease;
}

.eko-value-recommendation:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 157, 107, 0.15);
}

/* Amélioration de l'identification */
.eko-identification {
  transition: all 0.3s ease;
}

.eko-identification:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.eko-criteria-item {
  transition: all 0.3s ease;
}

.eko-criteria-item:hover {
  background: rgba(26, 157, 107, 0.1);
  transform: translateX(5px);
  border-left-color: var(--eko-green-hover);
  border-left-width: 6px;
}

/* Améliorations des méthodes d'évaluation */
.eko-evaluation-methods {
  transition: all 0.3s ease;
}

.eko-evaluation-methods:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Améliorations de la description enhanced */
.eko-description-enhanced {
  transition: all 0.3s ease;
}

.eko-description-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Animations d'apparition au scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Application progressive des animations */
.eko-reason-card:nth-child(1) {
  animation: fadeInUp 0.6s ease 0.1s both;
}

.eko-reason-card:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.eko-reason-card:nth-child(3) {
  animation: fadeInUp 0.6s ease 0.3s both;
}

.eko-combles-card:nth-child(1) {
  animation: fadeInUp 0.6s ease 0.1s both;
}

.eko-combles-card:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.eko-comparison-card:nth-child(1) {
  animation: fadeInUp 0.6s ease 0.1s both;
}

.eko-comparison-card:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.eko-seasonal-benefit:nth-child(1) {
  animation: fadeInUp 0.6s ease 0.1s both;
}

.eko-seasonal-benefit:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* Améliorations des liens et interactions */
.eko-link-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.eko-link-arrow::after {
  content: '';
  width: 0;
  height: 2px;
  background: var(--eko-green);
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: width 0.3s ease;
}

.eko-link-arrow:hover::after {
  width: 100%;
}

/* Responsive pour les améliorations */
@media (max-width: 768px) {
  .eko-definition--enhanced,
  .eko-diagnostic--enhanced,
  .eko-techniques,
  .eko-materials,
  .eko-pricing,
  .eko-aides {
    margin-top: 0;
    padding-top: 3rem;
  }
  
  .eko-reasons,
  .eko-techniques,
  .eko-pricing {
    padding-top: 3rem;
  }
  
  .eko-reason-card:hover,
  .eko-combles-card:hover,
  .eko-comparison-card:hover,
  .eko-seasonal-benefit:hover,
  .eko-timeline-card:hover,
  .eko-evaluation-card:hover {
    transform: translateY(-5px);
  }
}



/* ========================================
   MISE EN PAGE AMÉLIORÉE COMBLES - 2025
======================================== */

/* En-têtes de section améliorés */
.eko-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.eko-section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-top: 1rem;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   SECTION DÉFINITION AMÉLIORÉE
======================================== */

.eko-definition--enhanced {
  background: linear-gradient(135deg, #f8fffe 0%, #f0f8f0 100%);
  padding: 5rem 1rem;
}

/* Types de combles avec cartes */
.eko-combles-types {
  margin-bottom: 4rem;
}

.eko-combles-types__title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--eko-grey-dark);
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.eko-combles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.eko-combles-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.eko-combles-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.eko-combles-card--perdus::before {
  background: linear-gradient(90deg, #3498db 0%, #2980b9 100%);
}

.eko-combles-card--amenageables::before {
  background: linear-gradient(90deg, #f1c40f 0%, #e67e22 100%);
}

.eko-combles-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.eko-combles-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.eko-combles-card__icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(26, 157, 107, 0.1);
}

.eko-combles-card__header h4 {
  font-size: 1.4rem;
  color: var(--eko-grey-dark);
  font-weight: 700;
  margin: 0;
  flex: 1;
}

.eko-combles-badge {
  background: #e0f7ef;
  color: var(--eko-green);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.eko-combles-badge--premium {
  background: #fff8e1;
  color: #f39c12;
}

.eko-combles-card__content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.eko-combles-card__link {
  text-align: right;
}

.eko-link-arrow {
  color: var(--eko-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.eko-link-arrow:hover {
  color: var(--eko-green-hover);
  transform: translateX(5px);
}

/* Section identification */
.eko-identification {
  margin-bottom: 4rem;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.eko-identification__text h3 {
  color: var(--eko-grey-dark);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.eko-criteria-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.eko-criteria-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(26, 157, 107, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--eko-green);
}

.eko-criteria-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

/* Comparaison modernisée */
.eko-comparison {
  margin-bottom: 4rem;
}

.eko-comparison__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.8rem;
  color: var(--eko-grey-dark);
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.eko-comparison__icon {
  font-size: 2rem;
}

.eko-comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.eko-comparison-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.eko-comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.eko-comparison-card__header {
  padding: 1.5rem 2rem;
  text-align: center;
}

.eko-comparison-card--amenageables .eko-comparison-card__header {
  background: linear-gradient(135deg, #fff8e1 0%, #f1c40f 100%);
}

.eko-comparison-card--perdus .eko-comparison-card__header {
  background: linear-gradient(135deg, #e3f2fd 0%, #3498db 100%);
}

.eko-comparison-card__header h4 {
  font-size: 1.3rem;
  color: var(--eko-grey-dark);
  margin: 0;
  font-weight: 700;
}

.eko-comparison-card__body {
  padding: 2rem;
}

.eko-comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 1rem;
}

.eko-comparison-item:last-child {
  border-bottom: none;
}

.eko-comparison-label {
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
  min-width: 120px;
}

.eko-comparison-value {
  color: #666;
  text-align: right;
  font-weight: 500;
}

/* Description saisonnière */
.eko-description-enhanced {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.eko-description-enhanced__header h3 {
  color: var(--eko-grey-dark);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.eko-seasonal-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.eko-seasonal-benefit {
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid;
  transition: all 0.3s ease;
}

.eko-seasonal-benefit--winter {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-color: #3498db;
}

.eko-seasonal-benefit--summer {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border-color: #ffa726;
}

.eko-seasonal-benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.eko-seasonal-benefit__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.eko-seasonal-benefit__content h4 {
  color: var(--eko-grey-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.eko-seasonal-benefit__content p {
  color: #555;
  line-height: 1.6;
}

/* ========================================
   SECTION DIAGNOSTIC AMÉLIORÉE
======================================== */

.eko-diagnostic--enhanced {
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  padding: 5rem 1rem;
}

/* Timeline cards */
.eko-diagnostic-intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.eko-timeline-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--eko-green);
  transition: all 0.3s ease;
}

.eko-timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.eko-timeline-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.eko-timeline-card__content h3 {
  color: var(--eko-grey-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.eko-timeline-card__highlight {
  margin-top: 1.5rem;
}

.eko-timeline-badge {
  background: var(--eko-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Méthodes d'évaluation */
.eko-evaluation-methods {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.eko-evaluation-methods__title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  color: var(--eko-grey-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.eko-evaluation-icon {
  font-size: 1.8rem;
}

.eko-evaluation-intro {
  margin-bottom: 2rem;
}

.eko-evaluation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.eko-evaluation-card {
  background: rgba(26, 157, 107, 0.05);
  border: 2px solid rgba(26, 157, 107, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.eko-evaluation-card:hover {
  background: rgba(26, 157, 107, 0.1);
  border-color: rgba(26, 157, 107, 0.2);
  transform: translateY(-3px);
}

.eko-evaluation-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.eko-evaluation-card__content h4 {
  color: var(--eko-grey-dark);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Section valeur U */
.eko-value-section {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.eko-value-section__header h3 {
  font-size: 1.6rem;
  color: var(--eko-grey-dark);
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.eko-value-dashboard {
  display: grid;
  gap: 2rem;
}

.eko-value-explanation__content {
  background: rgba(26, 157, 107, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--eko-green);
}

.eko-value-scale__header {
  text-align: center;
  margin-bottom: 2rem;
}

.eko-value-scale__header h4 {
  color: var(--eko-grey-dark);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.eko-value-rule {
  color: #666;
  font-weight: 600;
  font-style: italic;
}

.eko-value-indicator {
  max-width: 600px;
  margin: 0 auto;
}

.eko-value-bar {
  display: flex;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.eko-value-segment {
  flex: 1;
}

.eko-value-segment--good {
  background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
}

.eko-value-segment--medium {
  background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
}

.eko-value-segment--poor {
  background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
}

.eko-value-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eko-value-label {
  text-align: center;
  flex: 1;
}

.eko-value-label strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.eko-value-label--good strong {
  color: #27ae60;
}

.eko-value-label--medium strong {
  color: #f39c12;
}

.eko-value-label--poor strong {
  color: #e74c3c;
}

.eko-value-label small {
  font-size: 0.85rem;
  color: #666;
}

.eko-value-recommendation {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8fff9;
  border: 2px solid rgba(26, 157, 107, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.eko-value-recommendation__icon {
  font-size: 2rem;
  color: var(--eko-green);
}

.eko-value-recommendation__content p {
  margin: 0;
  color: #333;
  font-weight: 500;
}

/* Responsive pour les nouvelles sections */
@media (max-width: 768px) {
  .eko-section-header {
    margin-bottom: 2rem;
  }
  
  .eko-section-subtitle {
    font-size: 1.1rem;
  }
  
  .eko-combles-grid {
    grid-template-columns: 1fr;
  }
  
  .eko-combles-card {
    padding: 1.5rem;
  }
  
  .eko-comparison-cards {
    grid-template-columns: 1fr;
  }
  
  .eko-seasonal-benefits {
    grid-template-columns: 1fr;
  }
  
  .eko-diagnostic-intro {
    grid-template-columns: 1fr;
  }
  
  .eko-evaluation-grid {
    grid-template-columns: 1fr;
  }
  
  .eko-value-labels {
    flex-direction: column;
    gap: 1rem;
  }
  
  .eko-value-recommendation {
    flex-direction: column;
    text-align: center;
  }
}

/* Classes spécialisées pour les tableaux des pages combles */

/* 1. Tableau comparatif aménageables/perdus - 3 colonnes équilibrées */
.eko-comparison-table--combles-types table th:first-child,
.eko-comparison-table--combles-types table td:first-child {
  width: 30% !important;
  font-weight: 600;
  color: #2c3e50;
}

.eko-comparison-table--combles-types table th:nth-child(2),
.eko-comparison-table--combles-types table td:nth-child(2),
.eko-comparison-table--combles-types table th:nth-child(3),
.eko-comparison-table--combles-types table td:nth-child(3) {
  width: 35% !important;
  text-align: left;
  padding: 1.2rem 1.5rem;
}

/* 2. Tableau descriptions isolants - 2 colonnes avec descriptions longues */
.eko-comparison-table--isolants-desc table th:first-child,
.eko-comparison-table--isolants-desc table td:first-child {
  width: 25% !important;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  vertical-align: middle;
}

.eko-comparison-table--isolants-desc table th:last-child,
.eko-comparison-table--isolants-desc table td:last-child {
  width: 75% !important;
  text-align: left;
  padding: 1.5rem;
  line-height: 1.6;
}

/* 3. Tableau technique multi-colonnes - 5+ colonnes compactes */
.eko-comparison-table--technique table th:first-child,
.eko-comparison-table--technique table td:first-child {
  width: 25% !important;
  font-weight: 600;
  color: #2c3e50;
}

.eko-comparison-table--technique table th:nth-child(2),
.eko-comparison-table--technique table td:nth-child(2),
.eko-comparison-table--technique table th:nth-child(3),
.eko-comparison-table--technique table td:nth-child(3),
.eko-comparison-table--technique table th:nth-child(4),
.eko-comparison-table--technique table td:nth-child(4),
.eko-comparison-table--technique table th:nth-child(5),
.eko-comparison-table--technique table td:nth-child(5) {
  width: 18.75% !important;
  text-align: center;
  padding: 1rem;
  font-size: 0.95rem;
}

/* 4. Tableau prix simple - 2 colonnes avec prix courts */
.eko-comparison-table--prix table th:first-child,
.eko-comparison-table--prix table td:first-child {
  width: 65% !important;
  font-weight: 600;
  color: #2c3e50;
}

.eko-comparison-table--prix table th:last-child,
.eko-comparison-table--prix table td:last-child {
  width: 35% !important;
  text-align: center;
  font-weight: 600;
  color: var(--eko-green);
}

.eko-comparison-table--prix table td:last-child {
  font-size: 1.1rem;
}

/* Améliorations responsives pour les effets hover */
@media (max-width: 900px) {
  /* Adaptation mobile des effets */
  .eko-menu__item > a:hover {
    transform: none;
    box-shadow: none;
  }
  
  .eko-btn--cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(36, 198, 142, 0.2);
  }
  
  /* Menu mobile avec animations fluides */
  .eko-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: flex-start !important;
    flex: none !important;
  }
  
  .eko-nav.open .eko-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  
  .eko-menu__item {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInMenu 0.3s ease forwards;
  }
  
  .eko-menu__item:nth-child(1) { animation-delay: 0.1s; }
  .eko-menu__item:nth-child(2) { animation-delay: 0.2s; }
  .eko-menu__item:nth-child(3) { animation-delay: 0.3s; }
  .eko-menu__item:nth-child(4) { animation-delay: 0.4s; }
  .eko-menu__item:nth-child(5) { animation-delay: 0.5s; }
}

@keyframes slideInMenu {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animations pour l'ouverture du menu burger */
.eko-nav.open .eko-nav__burger {
  background: transparent;
}

.eko-nav.open .eko-nav__burger::before {
  transform: rotate(45deg);
  top: 0;
}

.eko-nav.open .eko-nav__burger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Effet de pulsation pour attirer l'attention */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(36, 198, 142, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(36, 198, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(36, 198, 142, 0); }
}

.eko-btn--cta:focus {
  animation: pulse 1.5s infinite;
}

/* Effet de brillance sur les liens de navigation */
@keyframes shine {
  0% { background-position: -200px; }
  100% { background-position: calc(200px + 100%); }
}

.eko-menu__item > a.shine {
  background-image: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  background-size: 200px 100%;
  background-repeat: no-repeat;
  animation: shine 2s infinite;
}

/* Effet de survol pour les titres des sections du mega menu */
.eko-megamenu__column h4 {
  cursor: pointer;
}

.eko-megamenu__column h4:hover {
  text-shadow: 0 0 8px rgba(36, 198, 142, 0.5);
  transform: scale(1.05);
}

/* Délai en cascade pour l'animation des éléments du mega menu */
.eko-megamenu__column:nth-child(1) ul li {
  animation-delay: 0.1s;
}

.eko-megamenu__column:nth-child(2) ul li {
  animation-delay: 0.2s;
}

.eko-megamenu__column:nth-child(3) ul li {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eko-menu__item--has-submenu:hover .eko-megamenu__column ul li {
  animation: fadeInUp 0.3s ease forwards;
}

/* CORRECTION FORCÉE FOOTER - Règles ultra-spécifiques */
.eko-footer .eko-footer__container .eko-footer__col--identite {
display: block !important;
flex-direction: column !important;
width: 100% !important;
max-width: 280px !important;
}

.eko-footer .eko-footer__container .eko-footer__col--identite .eko-footer__logo {
display: block !important;
width: 100% !important;
margin: 0 0 1rem 0 !important;
position: static !important;
float: none !important;
clear: both !important;
}

.eko-footer .eko-footer__container .eko-footer__col--identite .eko-footer__baseline {
display: block !important;
width: 100% !important;
margin: 0 0 1rem 0 !important;
position: static !important;
float: none !important;
clear: both !important;
}

.eko-footer .eko-footer__container .eko-footer__col--identite .eko-footer__instagram {
display: block !important;
width: auto !important;
margin: 0 !important;
position: static !important;
float: none !important;
clear: both !important;
}

/* Neutraliser tous les styles du logo général dans le footer */
.eko-footer .eko-logo {
position: static !important;
left: auto !important;
right: auto !important;
top: auto !important;
bottom: auto !important;
transform: none !important;
float: none !important;
display: block !important;
}
