/*
Theme Name: Gram Energie WebSteve Theme
Theme URI: https://gram-energie.fr
Author: WebSteve
Author URI: https://gram-energie.fr
Description: Thème WordPress sur mesure pour Gram Energie (rénovation énergétique).
Version: 1.0.0
Text Domain: gramenergie
*/

/* ------------------------------------------------------------------
   Variables & base
------------------------------------------------------------------ */

:root {
  --lev-green: #37a642;
  --lev-navy: #0d203b;
  --lev-bg: #f5f7fa;
  --lev-white: #ffffff;
  --lev-text: #10233f;
  --lev-muted: #64748b;
  --lev-border: #e5e7eb;
  --lev-shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--lev-text);
  background: var(--lev-bg);
  line-height: 1.5;
}

a {
  color: var(--lev-navy);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(55, 166, 66, 0.7);
}

/* ------------------------------------------------------------------
   Layout de base
------------------------------------------------------------------ */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.main-content {
  padding: 2.5rem 0 3rem;
}

/* ------------------------------------------------------------------
   Header / Navigation
------------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--lev-white);
  color: var(--lev-text);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lev-navy), #173458);
  position: relative;
  box-shadow: 0 8px 20px rgba(13, 32, 59, 0.28);
}

.site-logo::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.site-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--lev-navy);
}

.site-tagline {
  margin: 0;
  font-size: 0.78rem;
  color: var(--lev-muted);
}

/* Navigation principale */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.primary-nav a {
  padding: 0.5rem 0.4rem;
  border-radius: 999px;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
}

.primary-nav a:hover {
  background: #f3f4f6;
}

/* Zone de droite (CTA + éventuellement téléphone) */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Boutons génériques */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.08s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--lev-green);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(55, 166, 66, 0.35);
}

.btn-primary:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(55, 166, 66, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--lev-green);
  color: var(--lev-green);
}

.btn-outline:hover {
  background: rgba(55, 166, 66, 0.06);
}

/* Hamburger mobile (si utilisé dans le thème) */
.header-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  cursor: pointer;
}

.header-toggle span {
  width: 18px;
  height: 2px;
  background: #0b1220;
  border-radius: 2px;
  position: relative;
}

.header-toggle span::before,
.header-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #0b1220;
}

.header-toggle span::before {
  top: -5px;
}

.header-toggle span::after {
  top: 5px;
}

/* ------------------------------------------------------------------
   Hero home
------------------------------------------------------------------ */

.hero-home-wrapper {
  padding: 2.8rem 0 2.2rem;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.2rem;
  align-items: center;
}

.hero-home__content {
  max-width: 640px;
}

.hero-home__kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #e3f7ea;
  color: var(--lev-green);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-home__title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 1rem 0 0.8rem;
  color: var(--lev-navy);
}

.hero-home__subtitle {
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
  color: var(--lev-muted);
}

.hero-home__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.badge {
  background: #f1f5f9;
  color: var(--lev-text);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid #e2e8f0;
}

/* Groupe de CTA dans le hero */
.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.hero-home__note {
  font-size: 0.85rem;
  color: var(--lev-muted);
}

/* Bloc formulaire / carte à droite */
.hero-home__side {
  background: var(--lev-white);
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--lev-shadow-soft);
  border: 1px solid var(--lev-border);
}

.hero-home__side-title {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  color: var(--lev-navy);
}

.hero-home__side-subtitle {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--lev-muted);
}

/* Formulaire dans le hero */

.hero-home__side form input,
.hero-home__side form select,
.hero-home__side form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid var(--lev-border);
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--lev-white);
}

.hero-home__side form textarea {
  min-height: 90px;
  resize: vertical;
}

.hero-home__side form input:focus,
.hero-home__side form select:focus,
.hero-home__side form textarea:focus {
  outline: 2px solid rgba(55, 166, 66, 0.25);
  border-color: var(--lev-green);
}

.hero-home__side .btn {
  width: 100%;
  margin-top: 0.3rem;
}

/* ------------------------------------------------------------------
   Grille services
------------------------------------------------------------------ */

.section-services {
  padding: 2rem 0 2.5rem;
}

.section-services__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-services__title {
  margin: 0;
  font-size: 1.6rem;
  color: var(--lev-navy);
}

.section-services__intro {
  margin: 0;
  font-size: 0.95rem;
  color: var(--lev-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 0.8rem;
}

.service-card {
  background: var(--lev-white);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: var(--lev-shadow-soft);
  border: 1px solid var(--lev-border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lev-green);
  font-weight: 600;
}

.service-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--lev-navy);
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--lev-muted);
}

.service-card__link {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--lev-green);
}

/* ------------------------------------------------------------------
   Section articles / guides
------------------------------------------------------------------ */

.section-articles {
  padding: 2rem 0 2.8rem;
  border-top: 1px solid #e2e8f0;
}

.section-articles__title {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  color: var(--lev-navy);
}

.section-articles__intro {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--lev-muted);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.3rem;
}

.article-card {
  background: var(--lev-white);
  border-radius: 0.95rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--lev-border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.article-card__meta {
  font-size: 0.8rem;
  color: var(--lev-muted);
}

.article-card__title {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--lev-navy);
}

.article-card__excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: var(--lev-muted);
}

.article-card__link {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--lev-green);
}

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */

.site-footer {
  background: var(--lev-navy);
  color: #e5e7eb;
  padding: 2.3rem 0 2rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.site-footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.8rem;
  margin-bottom: 1.4rem;
}

.site-footer__title {
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-size: 0.95rem;
}

.site-footer__text {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__list li + li {
  margin-top: 0.35rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding-top: 0.9rem;
  font-size: 0.8rem;
  color: #93a3b8;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
}

/* ------------------------------------------------------------------
   Responsive
------------------------------------------------------------------ */

@media (max-width: 960px) {
  .primary-nav,
  .header-cta {
    display: none;
  }

  .header-toggle {
    display: inline-flex;
  }

  .hero-home-wrapper {
    padding-top: 2rem;
  }

  .hero-home {
    grid-template-columns: 1fr;
  }

  .hero-home__side {
    margin-top: 0.8rem;
  }

  .section-services__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-home__title {
    font-size: 2rem;
  }

  .header-cta .btn-primary {
    padding-inline: 1.2rem;
  }

  .services-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }
}
/* ------------------------------------------------------------------
   theme WS - WEBSTEVE.FR 
------------------------------------------------------------------ */
/* --------------------------------------------
   LEV ASSURANCES – THEME + WS EXTENSIONS
   Version complète 2025
   Palette : #37a642 (green) – #0d203b (navy)
--------------------------------------------- */

:root{
  --green:#37a642;
  --navy:#0d203b;
  --ink:#10233f;
  --bg:#ffffff;
  --muted:#64748b;
  --ring:rgba(55,166,66,.35);

  /* WS additional tones */
  --ws-blue:#1e40af;
  --ws-yellow:#fbbf24;
  --ws-red:#ef4444;
}

/* RESET */
*{box-sizing:border-box}
html,body{
  margin:0;padding:0;background:var(--bg);color:var(--ink);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

/* --------------------------------------------
   WRAP / GLOBAL LAYOUT
--------------------------------------------- */
.wrap, .ws-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}

/* --------------------------------------------
   HEADER
--------------------------------------------- */
.header{
  position:sticky;top:0;z-index:50;background:#fff;
  border-bottom:1px solid #e5e7eb;
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  height:64px;
}
.brand{
  display:flex;align-items:center;gap:12px;
}
.logo{
  width:42px;height:42px;border-radius:10px;
  background:linear-gradient(135deg,var(--navy),#173458);
  position:relative;
  box-shadow:0 6px 18px rgba(13,32,59,.25);
}
.logo:after{
  content:"";position:absolute;inset:8px;border-radius:8px;
  border:2px solid rgba(255,255,255,.9);
}

.brand b{
  font-weight:800;letter-spacing:.3px;color:var(--navy);
}
.brand small{
  display:block;color:var(--muted);margin-top:-2px;
}

.menu{
  display:flex;align-items:center;gap:20px;
}
.menu a{
  padding:8px 10px;border-radius:10px;color:#1f2937;font-weight:600;
}
.menu a:hover{background:#f3f4f6}

.cta{
  display:flex;align-items:center;gap:10px;
}

/* LANG SWITCHER */
.lang{
  display:flex;align-items:center;gap:8px;
  border:1px solid #e5e7eb;border-radius:12px;padding:6px 8px;
}
.lang button{
  background:transparent;border:0;padding:6px 8px;border-radius:8px;
  font-weight:700;color:#334155;cursor:pointer;
}
.lang button.active{
  background:#eef7f0;color:#0f3d19;outline:2px solid var(--ring);
}

/* MOBILE MENU */
.hamb{
  display:none;flex-direction:column;gap:4px;width:40px;height:40px;
  align-items:center;justify-content:center;
  border-radius:10px;border:1px solid #e5e7eb;background:#fff;
}
.hamb span{
  width:18px;height:2px;background:#0b1220;border-radius:2px;
}

@media(max-width:960px){
  .menu,.cta{display:none}
  .hamb{display:flex}
}

/* Drawer */
.drawer{
  position:fixed;inset:0 0 0 auto;width:88%;max-width:420px;background:#fff;
  box-shadow:-20px 0 40px rgba(0,0,0,.2);transform:translateX(100%);
  transition:.3s cubic-bezier(.2,.8,.2,1);z-index:60;
  display:flex;flex-direction:column;
}
.drawer.open{transform:translateX(0)}
.drawer-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px;border-bottom:1px solid #eef2f7;
}
.drawer-body{
  padding:16px;display:flex;flex-direction:column;gap:12px;
}
.drawer-body a{
  padding:12px 10px;border-radius:12px;font-weight:700;color:#0d203b;
  border:1px solid #eef2f7;
}

/* --------------------------------------------
   HERO
--------------------------------------------- */
.hero, .ws-hero{
  background:linear-gradient(180deg,#f8fafc,transparent);
  padding:56px 0 32px;
}
.hero .content{
  display:grid;grid-template-columns:1.2fr 1fr;
  gap:24px;align-items:center;
}
.kicker{
  display:inline-block;font-weight:800;color:var(--green);
  background:#eef7f0;padding:6px 10px;border-radius:999px;
}
.ws-hero-title, h1{
  font-size:40px;line-height:1.05;margin:12px 0;color:var(--navy);
}
.ws-hero-sub, .lead{
  font-size:18px;color:#334155;
}
.ws-hero-badges{
  display:flex;gap:10px;margin:18px 0 26px;
}

/* BADGES */
.badge, .ws-badge{
  font-size:12px;padding:8px 10px;border-radius:999px;
  border:1px solid #e5e7eb;background:#fff;color:#0b1220;
}
.ws-badge-green{background:#eef7f0;color:var(--green);border-color:var(--green)}
.ws-badge-navy{background:#e9eff8;color:var(--navy);border-color:var(--navy)}

.hero-card{
  background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:16px;
  box-shadow:0 10px 30px rgba(13,32,59,.08);
}

/* --------------------------------------------
   GRIDS (native)
--------------------------------------------- */
.grid{display:grid;gap:16px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
@media(max-width:960px){
  .grid-2,.grid-3{grid-template-columns:1fr}
}

/* --------------------------------------------
   GRID WS (extension)
--------------------------------------------- */
.ws-grid-2{
  display:grid;grid-template-columns:repeat(2,1fr);gap:24px;
}
.ws-grid-3{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.ws-grid-4{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
}
@media(max-width:960px){
  .ws-grid-2,.ws-grid-3,.ws-grid-4{grid-template-columns:1fr}
}

/* --------------------------------------------
   CARDS
--------------------------------------------- */
.card, .ws-card{
  background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:18px;
  box-shadow:0 10px 30px rgba(13,32,59,.06);
  transition:.3s ease;
}
.ws-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(0,0,0,.1);
}

/* TAGS */
.ws-tag{
  display:inline-block;padding:4px 10px;border-radius:999px;
  font-size:12px;font-weight:600;
}
.ws-tag-green{background:#eef7f0;color:var(--green)}
.ws-tag-blue{background:#e0e7ff;color:var(--ws-blue)}
.ws-tag-outline{border:1px solid #e5e7eb;background:#fff}

/* --------------------------------------------
   TITLE & TEXT WS
--------------------------------------------- */
.ws-title{
  font-size:32px;font-weight:800;color:var(--navy);
  margin-bottom:12px;
}
.ws-sub{
  font-size:16px;color:#475569;margin-bottom:26px;
}

/* --------------------------------------------
   BUTTONS
--------------------------------------------- */
.btn, .ws-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;border-radius:12px;border:1px solid transparent;
  font-weight:700;cursor:pointer;
}
.btn-primary, .ws-btn-primary{
  background:var(--green);color:#fff;
  box-shadow:0 8px 20px rgba(55,166,66,.35);
}
.btn-primary:hover, .ws-btn-primary:hover{filter:brightness(.95)}
.btn-ghost{border-color:#e5e7eb}
.ws-btn-phone{
  background:#fff;color:#0d203b;border:1px solid #e5e7eb;
  border-radius:999px;padding:10px 16px;font-weight:700;
  display:flex;align-items:center;gap:8px;
}
.ws-btn-outline{
  border:1px solid var(--navy);color:var(--navy);background:#fff;
}

/* --------------------------------------------
   CTA WS
--------------------------------------------- */
.ws-cta-wrap{margin-top:40px}
.ws-cta-eyebrow{
  font-size:13px;text-transform:uppercase;letter-spacing:.08em;
  opacity:.9;display:block;margin-bottom:4px;
}
.ws-cta-text b{font-size:22px;margin-bottom:4px;display:block}
.ws-cta-text p{margin:0;font-size:14px;opacity:.95}
.ws-cta-actions{display:flex;flex-wrap:wrap;gap:10px}
@media(max-width:768px){
  .cta-band.ws-cta{flex-direction:column;align-items:flex-start}
  .ws-cta-actions{width:100%}
}

/* --------------------------------------------
   FAQ WS
--------------------------------------------- */
.ws-faq{margin-top:32px}
.ws-faq-title{
  font-size:28px;font-weight:800;color:var(--navy);margin-bottom:18px;
}
.ws-faq-items{
  border-radius:16px;border:1px solid #e5e7eb;background:#fff;overflow:hidden;
}
.ws-faq-item{border-top:1px solid #e5e7eb}
.ws-faq-item:first-child{border-top:0}

.ws-faq-question{
  width:100%;padding:14px 18px;background:#f9fafb;
  border:0;display:flex;justify-content:space-between;align-items:center;
  font-size:15px;font-weight:600;cursor:pointer;text-align:left;
}
.ws-faq-icon{font-size:18px;transition:.2s ease}
.ws-faq-answer{
  max-height:0;overflow:hidden;padding:0 18px;font-size:14px;color:#475569;
  transition:max-height .25s ease,padding .25s ease;
}
.ws-faq-item.active .ws-faq-answer{
  max-height:300px;padding-top:10px;padding-bottom:14px;
}
.ws-faq-item.active .ws-faq-icon{transform:rotate(90deg)}

/* --------------------------------------------
   NOTES / AVIS
--------------------------------------------- */
.ws-note{
  background:#fff;border:1px solid #e5e7eb;border-radius:16px;
  padding:20px;box-shadow:0 10px 30px rgba(13,32,59,.06);
}
.ws-stars{color:#fbbf24;font-size:18px;font-weight:800;margin-bottom:6px}
.ws-note-author{
  font-size:13px;color:#64748b;margin-top:6px;display:block;
}

/* --------------------------------------------
   WS SECTIONS
--------------------------------------------- */
section, .ws-section{
  padding:40px 0;border-top:1px solid #f1f5f9;
}
.ws-full{max-width:none;padding:80px 0}

p.invisible {
    display: none;
}
/* --------------------------------------------
   FOOTER
--------------------------------------------- */
footer{
  background:#0b1a30;color:#cbd5e1;padding:30px 0;
}
footer a{color:#e2e8f0}
.foot-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:16px;
}
@media(max-width:960px){
  .foot-grid{grid-template-columns:1fr}
}
.copyright{
  margin-top:20px;border-top:1px solid rgba(255,255,255,.08);
  padding-top:14px;font-size:13px;color:#93a3b8;
}

.sr-only{
  position:absolute;width:1px;height:1px;margin:-1px;
  padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;
}


    :root{
      --bg:#f6f8f6;
      --white:#fff;
      --text:#0f172a;
      --muted:#475569;
      --line:#e5e7eb;
      --green:#79c6a4;
      --green2:#5fb58f;
      --shadow:0 10px 30px rgba(2,6,23,.08);
      --radius:18px;
      --wrap:1120px;
    }
    *{box-sizing:border-box}
    body{margin:0;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;background:var(--bg);color:var(--text)}
    a{text-decoration:none;color:inherit}
    img{max-width:100%;height:auto;display:block}
    .wrap{max-width:var(--wrap);margin:0 auto;padding:0 18px}
    .section{padding:64px 0}
    .h1{font-size:clamp(28px,3vw,44px);line-height:1.1;margin:0 0 12px}
    .h2{font-size:clamp(22px,2.2vw,32px);margin:0 0 12px}
    .p{color:var(--muted);margin:0 0 18px;line-height:1.7}
    .small{font-size:14px;color:var(--muted);line-height:1.7}

    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:10px;
      padding:12px 16px;border-radius:999px;border:1px solid transparent;
      background:var(--green);color:#062016;font-weight:800;
      box-shadow:0 8px 20px rgba(121,198,164,.35);
      transition:.2s ease;cursor:pointer;
    }
    .btn:hover{transform:translateY(-1px);background:var(--green2)}
    .btn.secondary{background:white;border-color:var(--line);color:var(--text);box-shadow:none}
    .btn.secondary:hover{background:#fff}

    .card{
      background:var(--white);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }

    /* Scroll reveal (apparition / disparition) */
    .reveal{opacity:0;transform:translateY(18px);transition:opacity .55s ease,transform .55s ease;will-change:opacity,transform}
    .reveal.is-visible{opacity:1;transform:translateY(0)}
    @media (prefers-reduced-motion: reduce){.reveal{transition:none;transform:none;opacity:1}}

    /* Header */
    header{
      position:sticky;top:0;z-index:50;
      background:rgba(246,248,246,.9);
      backdrop-filter:blur(10px);
      border-bottom:1px solid rgba(229,231,235,.8);
    }
    .head-row{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0}
    .brand{display:flex;align-items:center;gap:12px}
    .brand img{width:44px;height:44px;border-radius:14px}
    nav{display:flex;gap:10px;flex-wrap:wrap}
    nav a{padding:8px 10px;border-radius:10px;color:var(--muted);font-weight:800;font-size:14px}
    nav a:hover{background:#fff;color:var(--text)}
    @media(max-width:980px){nav{display:}}

    /* HERO */
    .hero{
      padding:64px 0 40px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(246,248,246,1)),
        url("https://gram-energie.fr/wp-content/uploads/2024/05/Immeuble2.jpg");
      background-size:cover;
      background-position:center;
    }
    .hero-inner{display:grid;grid-template-columns:1.25fr .85fr;gap:22px;align-items:center}
    @media(max-width:980px){.hero-inner{grid-template-columns:1fr}}
    .actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
    .pill{
      display:inline-flex;align-items:center;gap:10px;
      padding:8px 12px;border-radius:999px;background:#fff;border:1px solid var(--line);
      color:var(--muted);font-weight:900;font-size:13px;
    }
    .form{padding:18px}
    .form .row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
    .form input,.form select,.form textarea{
      width:100%;padding:12px 12px;border-radius:12px;border:1px solid var(--line);
      background:#fff;font:inherit;
    }
    .form textarea{min-height:92px;resize:vertical}
    .form .submit{margin-top:10px;display:flex}

    /* Solutions header */
    .sol-head{display:grid;grid-template-columns:220px 1fr;gap:22px;align-items:start}
    @media(max-width:980px){.sol-head{grid-template-columns:1fr}}
    .logoBox{display:flex;align-items:center;justify-content:center;padding:18px}
    .logoBox img{max-width:160px}

    /* BAND */
    .band{background:#f2f5f2}
    .band-inner{display:grid;grid-template-columns:1.2fr .8fr;gap:18px;align-items:center}
    @media(max-width:980px){.band-inner{grid-template-columns:1fr}}
    .band-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
    @media(max-width:980px){.band-actions{justify-content:flex-start}}

    /* BENEFITS */
    .benefit{padding:18px}
    .benefit.green{background:rgba(121,198,164,.25);border-color:rgba(121,198,164,.35)}
    .benefit.dark{background:#0b1220;color:#e2e8f0;border-color:#0b1220}
    .benefit h3{margin:0 0 10px}
    .benefit p{margin:0;line-height:1.7}
    .benefit.dark p{color:#cbd5e1}

    /* PROCESS image */
    .process-head{display:grid;grid-template-columns:1fr 260px;gap:18px;align-items:center}
    @media(max-width:980px){.process-head{grid-template-columns:1fr}}
    .photo{border-radius:18px;overflow:hidden;border:1px solid var(--line);background:#fff}
    .photo img{width:100%;height:auto}

    /* Steps */
    .grid{display:grid;gap:18px}
    .steps{grid-template-columns:repeat(5,minmax(0,1fr))}
    @media(max-width:1200px){.steps{grid-template-columns:repeat(2,minmax(0,1fr))}}
    @media(max-width:600px){.steps{grid-template-columns:1fr}}
    .step{padding:16px;background:rgba(121,198,164,.35);border-color:rgba(121,198,164,.45);box-shadow:none}
    .step img{width:70px;height:auto;margin:18px auto 10px}
    .step h4{margin:0 0 10px;text-align:center}
    .step p{margin:0;text-align:center;color:var(--text);opacity:.92;line-height:1.7}

    /* TRUST */
    .trust{background:#eaf0f7}
    .trust-inner{display:grid;grid-template-columns:1.2fr .8fr;gap:18px}
    @media(max-width:980px){.trust-inner{grid-template-columns:1fr}}

    /* REVIEWS */
    .review{padding:16px}
    .review p{margin:0 0 8px;line-height:1.7}
    .meta{display:flex;align-items:center;justify-content:space-between;gap:10px}
    .stars{font-weight:1000}

    /* FOOTER */
    .footer{padding:28px 0;border-top:1px solid var(--line);background:#062016}
    .foot-links{display:flex;gap:14px;flex-wrap:wrap}

    /* ========= NOUVEAU BLOC SOLUTIONS (comme ta capture) ========= */
    .ge-sols{display:flex;flex-direction:column;gap:28px;margin-top:22px}
    .ge-sol{
      display:grid;
      grid-template-columns: 90px 1fr 360px; /* 01 | texte | image */
      gap:22px;
      align-items:center;
      padding:18px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow: var(--shadow);
    }
    .ge-sol-num{
      font-weight:1000;
      color:var(--muted);
      font-size:18px;
    }
    .ge-sol h3{
      margin:0 0 8px;
      font-size:32px;
      line-height:1.1;
      color:var(--text);
    }
    .ge-sol p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:16px;
      max-width: 820px;
    }
    .ge-sol-media{
      border-radius:16px;
      overflow:hidden;
      border:1px solid var(--line);
      background:#fff;
    }
    .ge-sol-media img{
      width:100%;
      height:220px;
      object-fit:cover;
      display:block;
    }
    @media (max-width: 1100px){
      .ge-sol{grid-template-columns:70px 1fr 300px}
      .ge-sol h3{font-size:26px}
      .ge-sol-media img{height:200px}
    }
    @media (max-width: 780px){
      .ge-sol{grid-template-columns:1fr;gap:14px}
      .ge-sol-num{font-size:16px}
      .ge-sol h3{font-size:24px}
      .ge-sol-media img{height:200px}
    }

