﻿/* ─── Animations & Keyframes ─────────────────────────────── */
@keyframes blade-sway {
  from { transform: rotate(-7deg); }
  to   { transform: rotate(7deg); }
}
@keyframes float-particle {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  15%  { opacity: .65; }
  85%  { opacity: .25; }
  100% { transform: translate(var(--px, 20px), -220px) rotate(360deg); opacity: 0; }
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 4px 24px rgba(212,150,12,.35); }
  50%      { box-shadow: 0 4px 56px rgba(212,150,12,.72), 0 0 80px rgba(212,150,12,.18); }
}
@keyframes shimmer {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(320%) skewX(-18deg); }
}
@keyframes aurora {
  0%   { transform: rotate(0deg) scale(1);    opacity: .5; }
  50%  { transform: rotate(180deg) scale(1.1); opacity: .7; }
  100% { transform: rotate(360deg) scale(1);   opacity: .5; }
}
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* ─── Reset & Base ──────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #0a2003;
  --green-dark:   #14480a;
  --green:        #1a6b0c;
  --green-mid:    #269112;
  --green-light:  #40bf1e;
  --green-vivid:  #5cd42e;
  --green-pale:   #eaf6e3;
  --green-super-pale: #f2fbee;
  --gold:         #d4960c;
  --gold-light:   #f0b520;
  --gold-pale:    #fff8e0;
  --white:        #ffffff;
  --off-white:    #f8f6f1;
  --gray-light:   #e8e4de;
  --gray:         #888;
  --text:         #1c2418;
  --grad-green:   linear-gradient(135deg, #14480a 0%, #1a6b0c 100%);
  --grad-gold:    radial-gradient(ellipse at center, #f5bc22 0%, #d4960c 100%);
  --radius:       14px;
  --shadow:       0 4px 24px rgba(20,72,10,.10);
  --shadow-lg:    0 12px 48px rgba(20,72,10,.14);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── Scroll Reveal ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── Utility ────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-weight: 700;
  font-size: .72rem;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(26,107,12,.2);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: .4rem;
  line-height: 1.18;
}
.section-sub { color: #6b7a65; font-size: 1rem; margin-bottom: 2.5rem; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 99px;
  font-weight: 700; font-size: 1rem;
  cursor: pointer; border: none;
  transition: transform .2s, box-shadow .25s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute; top: -60%; left: -60%;
  width: 35%; height: 220%;
  background: rgba(255,255,255,.22);
  transform: skewX(-20deg);
  animation: shimmer 3.5s ease-in-out 1.5s infinite;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--grad-gold); color: var(--white); animation: pulse-glow 3.2s ease-in-out infinite; }
.btn-primary:hover { box-shadow: 0 8px 44px rgba(212,150,12,.55); }

.btn-outline { background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.4); color: var(--white); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.7); }

.btn-green { background: var(--grad-green); color: var(--white); box-shadow: 0 4px 22px rgba(20,72,10,.25); }
.btn-green:hover { box-shadow: 0 8px 36px rgba(20,72,10,.4); }

.btn-green-light { background: var(--white); color: var(--green-dark); border: 2px solid var(--green-pale); box-shadow: 0 2px 12px rgba(20,72,10,.08); }
.btn-green-light:hover { background: var(--green-pale); border-color: var(--green-light); }

/* ─── Page hero banner (secondary pages) ────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #206010 100%);
  padding: 108px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 10%, rgba(92,212,46,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(10,32,3,.7) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow { color: #a8f07a; font-size: .79rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .9rem; opacity: .9; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: .8rem; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 600px; }

/* ─── Navbar — LIGHT ─────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,32,3,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(92,212,46,.12);
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled { background: rgba(8,24,2,.97); box-shadow: 0 2px 24px rgba(0,0,0,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-logo-img {
  height: 44px; width: auto; display: block;
  background: rgba(255,255,255,.08);
  border-radius: 8px; padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.12);
  transition: background .2s;
}
.nav-logo-img:hover { background: rgba(255,255,255,.16); }
.nav-links { display: flex; list-style: none; gap: 2.2rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.78); font-size: .88rem; font-weight: 500;
  transition: color .2s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--green-vivid);
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); font-weight: 700; }
.nav-cta {
  background: var(--grad-gold) !important;
  color: var(--white) !important;
  padding: 9px 22px; border-radius: 99px;
  font-weight: 700 !important; font-size: .85rem !important;
  box-shadow: 0 3px 16px rgba(212,150,12,.45);
  transition: box-shadow .25s !important;
}
.nav-cta:hover { box-shadow: 0 5px 28px rgba(212,150,12,.7) !important; }
.nav-cta::after { display: none !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: all .3s; }

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--green-dark);
  padding-top: 66px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 72% 28%, rgba(38,145,18,.2) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(10,32,3,.9) 0%, transparent 58%),
    linear-gradient(160deg, #0a2003 0%, #122808 40%, #1a4a0a 70%, #122808 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: conic-gradient(from 220deg at 68% 18%,
    rgba(92,212,46,.08) 0deg, transparent 35deg,
    transparent 315deg, rgba(92,212,46,.05) 360deg);
  animation: aurora 22s linear infinite;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(92,212,46,.22) 1px, transparent 1px);
  background-size: 32px 32px; opacity: .35;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2; }
.particle {
  position: absolute; bottom: 20%; left: var(--x, 50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(92,212,46,.55);
  animation: float-particle var(--dur, 9s) linear var(--d, 0s) infinite;
}
.particle:nth-child(2n) { width: 3px; height: 3px; background: rgba(240,181,32,.45); }
.particle:nth-child(3n) { width: 7px; height: 2px; background: rgba(92,212,46,.35); }

/* Grass */
.hero-grass { position: absolute; bottom: 0; left: 0; right: 0; height: 110px; z-index: 3; pointer-events: none; overflow: hidden; }
.hero-grass::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 22px; background: linear-gradient(to top, #091803 0%, #0f2605 100%); z-index: 1; }
.blade { position: absolute; left: var(--x, 50%); bottom: 0; width: var(--w, 7px); height: var(--h, 65px); transform-origin: bottom center; animation: blade-sway var(--t, 3.5s) ease-in-out var(--d, 0s) infinite alternate; }
.blade.back { border-radius: 48% 52% 0 0 / 88% 88% 0 0; background: linear-gradient(to top, #060f02 0%, #17620a 65%, #289012 100%); opacity: .75; }
.blade.mid  { border-radius: 55% 45% 0 0 / 92% 92% 0 0; background: linear-gradient(to top, #091803 0%, #20850c 60%, #3ab018 100%); }
.blade.front{ border-radius: 50% 50% 0 0 / 96% 96% 0 0; background: linear-gradient(to top, #0c1e04 0%, #2a9a0e 55%, #52cc20 88%, #74e038 100%); }

/* Hero content */
.hero-content { position: relative; z-index: 4; max-width: 700px; }
.hero-eyebrow { color: #a8f07a; font-size: .79rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.4rem; display: flex; align-items: center; gap: 10px; opacity: .92; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: #a8f07a; flex-shrink: 0; }
.hero-title { font-size: clamp(3.5rem, 9vw, 6.5rem); font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -.04em; margin-bottom: 1.2rem; text-shadow: 0 4px 48px rgba(0,0,0,.35); }
.hero-title .highlight { background: linear-gradient(125deg, #6ee030 0%, #a0ee50 50%, #c8f060 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-tagline { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: rgba(255,255,255,.82); margin-bottom: .5rem; font-weight: 400; }
.hero-location { font-size: .9rem; color: rgba(255,255,255,.45); margin-bottom: 2.5rem; }
.hero-urgence { display: inline-flex; align-items: center; gap: 8px; background: rgba(92,212,46,.1); border: 1px solid rgba(92,212,46,.3); color: #a8f07a; font-size: .8rem; font-weight: 700; padding: 6px 18px; border-radius: 99px; margin-bottom: 1.5rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 2.8rem; }
.hero-pill { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.82); padding: 7px 16px; border-radius: 99px; font-size: .82rem; font-weight: 500; backdrop-filter: blur(6px); display: flex; align-items: center; gap: 6px; transition: background .2s, border-color .2s; }
.hero-pill:hover { background: rgba(255,255,255,.14); border-color: rgba(92,212,46,.35); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-phone { display: flex; align-items: center; gap: 16px; margin-top: 1.6rem; flex-wrap: wrap; }
.hero-phone a { font-size: 1.15rem; font-weight: 800; color: var(--white); background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2); padding: 11px 22px; border-radius: var(--radius); transition: background .2s, border-color .2s; display: flex; align-items: center; gap: 10px; }
.hero-phone a:hover { background: rgba(255,255,255,.16); border-color: rgba(92,212,46,.4); }
.hero-phone span { font-size: .8rem; color: rgba(255,255,255,.4); }
.hero-reassurance { position: relative; z-index: 4; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 2.5rem; }
.hero-stat { color: rgba(255,255,255,.62); font-size: .83rem; }
.hero-stat strong { color: var(--white); font-weight: 700; display: block; font-size: .97rem; margin-bottom: 2px; }

/* ─── 3 Étapes — LIGHT ───────────────────────────────────── */
#comment {
  padding: 90px 0;
  background: var(--white);
  position: relative; overflow: hidden;
}
#comment::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,12,.05) 0%, transparent 70%);
  top: -200px; right: -150px; pointer-events: none;
}
#comment .section-title { color: var(--green-deep); }
#comment .section-sub { color: #6b7a65; }
.steps3-grid { display: flex; align-items: stretch; justify-content: center; gap: 0; flex-wrap: wrap; margin-top: 3rem; }
.steps3-item {
  flex: 1; min-width: 210px; max-width: 300px;
  text-align: center; padding: 36px 26px;
  background: var(--white);
  border: 1.5px solid var(--green-pale);
  border-radius: var(--radius);
  position: relative;
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
  margin: 0 6px;
}
.steps3-item:hover { background: var(--green-super-pale); border-color: rgba(26,107,12,.25); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.steps3-num { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-gold); color: var(--white); font-weight: 900; font-size: 1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 18px rgba(212,150,12,.35); }
.steps3-icon { font-size: 2.4rem; margin-bottom: 14px; animation: float-y 4s ease-in-out infinite; }
.steps3-item:nth-child(3) .steps3-icon { animation-delay: .9s; }
.steps3-item:nth-child(5) .steps3-icon { animation-delay: 1.8s; }
.steps3-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.steps3-item p { font-size: .85rem; color: #5a6a55; line-height: 1.65; }
.steps3-sep { font-size: 1.5rem; color: var(--green-light); padding-top: 60px; flex-shrink: 0; opacity: .5; }

/* ─── Galerie — LIGHT ────────────────────────────────────── */
#galerie { padding: 90px 0; background: var(--green-super-pale); position: relative; }
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 2.5rem; }
.ba-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; transition: transform .35s, box-shadow .35s; }
.ba-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(20,72,10,.18); }
.ba-label { position: absolute; top: 16px; left: 16px; padding: 6px 16px; border-radius: 99px; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; z-index: 2; backdrop-filter: blur(8px); }
.ba-label.before { background: rgba(210,45,45,.82); color: #fff; border: 1px solid rgba(255,100,100,.28); }
.ba-label.after  { background: rgba(26,107,12,.88); color: #fff; border: 1px solid rgba(92,212,46,.3); }
.ba-card img { width: 100%; height: 280px; object-fit: cover; object-position: center; display: block; transition: transform .45s; transform: scale(1.06); }
.ba-card:hover img { transform: scale(1.11); }
.ba-card img.ba-full { object-fit: contain; background: #0d2206; transform: scale(1); height: 320px; }
.ba-card:hover img.ba-full { transform: scale(1.03); }
.ba-caption { padding: 14px 18px; background: var(--white); font-size: .83rem; color: #555; font-weight: 500; border-top: 2px solid var(--green-pale); }
.galerie-category { margin-top: 3rem; }
.galerie-category-title { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--green-mid); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.galerie-category-title::after { content: ''; flex: 1; height: 1px; background: var(--green-pale); }
.ba-wrap-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .ba-wrap-2 { grid-template-columns: 1fr; } }

/* ─── Témoignages — LIGHT ────────────────────────────────── */
#temoignages { padding: 90px 0; background: var(--white); position: relative; overflow: hidden; }
#temoignages::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(26,107,12,.04) 0%, transparent 70%); top: -100px; right: -150px; pointer-events: none; }
.temo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 2.5rem; }
.temo-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  border: 1.5px solid var(--green-pale);
  box-shadow: 0 2px 16px rgba(20,72,10,.06);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.temo-card::before { content: '\201C'; position: absolute; top: -14px; right: 18px; font-size: 8rem; font-weight: 900; color: var(--green-pale); line-height: 1; font-family: Georgia, serif; z-index: 0; }
.temo-card::after { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--grad-green); border-radius: var(--radius) 0 0 var(--radius); }
.temo-card:hover { transform: translateY(-7px); box-shadow: 0 18px 52px rgba(20,72,10,.12); border-color: rgba(26,107,12,.22); }
.temo-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; position: relative; z-index: 1; }
.temo-text { font-size: .9rem; color: #3a3a3a; line-height: 1.75; font-style: italic; flex: 1; position: relative; z-index: 1; }
.temo-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--green-pale); position: relative; z-index: 1; }
.temo-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-green); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; flex-shrink: 0; box-shadow: 0 3px 14px rgba(20,72,10,.22); }
.temo-name { font-weight: 700; font-size: .9rem; color: var(--green-dark); }
.temo-location { font-size: .76rem; color: var(--gray); }
.temo-cta {
  margin-top: 3.5rem; padding: 42px 46px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #226e0e 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  box-shadow: 0 8px 44px rgba(20,72,10,.18);
  position: relative; overflow: hidden;
}
.temo-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 90% at 90% 50%, rgba(92,212,46,.1) 0%, transparent 60%); }
.temo-cta p { font-size: 1.1rem; font-weight: 700; color: var(--white); margin: 0; position: relative; }

/* ─── Why — LIGHT ────────────────────────────────────────── */
#why { padding: 80px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 30px 26px; border: 1.5px solid var(--green-pale); transition: box-shadow .25s, transform .25s, border-color .25s; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-green); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(26,107,12,.2); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-super-pale); border: 1.5px solid var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.why-card p { font-size: .87rem; color: #5a6a55; line-height: 1.65; }

/* ─── Services — LIGHT ───────────────────────────────────── */
#services { padding: 80px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.service-card { border: 1.5px solid var(--green-pale); border-radius: var(--radius); overflow: hidden; transition: border-color .25s, box-shadow .25s, transform .25s; }
.service-card:hover { border-color: rgba(26,107,12,.3); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.service-header { background: linear-gradient(135deg, var(--green-dark) 0%, #226e0e 100%); padding: 22px 26px; display: flex; align-items: center; gap: 16px; position: relative; overflow: hidden; }
.service-header::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 50%, rgba(92,212,46,.1) 0%, transparent 55%); }
.service-emoji { font-size: 1.7rem; width: 50px; height: 50px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.service-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); position: relative; z-index: 1; }
.service-body { padding: 22px 26px; }
.service-desc { font-size: .88rem; color: #555; margin-bottom: 20px; line-height: 1.65; }
.service-prices { display: flex; gap: 12px; flex-wrap: wrap; }
.price-box { flex: 1; min-width: 110px; border-radius: 10px; padding: 12px 16px; background: var(--green-super-pale); border: 1.5px solid var(--green-pale); }
.price-box.abo { background: var(--gold-pale); border-color: rgba(212,150,12,.22); }
.price-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green-mid); margin-bottom: 4px; }
.price-box.abo .price-label { color: var(--gold); }
.price-value { font-size: 1.15rem; font-weight: 900; color: var(--green-dark); }
.price-box.abo .price-value { color: var(--gold); }
.not-offered { background: #fff8f0; border: 1px solid #f0d8c0; border-radius: var(--radius); padding: 16px 20px; margin-top: 2rem; font-size: .85rem; color: #7a4a20; display: flex; align-items: flex-start; gap: 10px; }

/* ─── Tarifs / Calculator — DARK GREEN (contraste volontaire) */
#tarifs { padding: 90px 0; background: linear-gradient(180deg, #0e2e07 0%, #174d0b 100%); position: relative; overflow: hidden; }
#tarifs::before { content: ''; position: absolute; width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(92,212,46,.07) 0%, transparent 70%); top: -350px; right: -200px; pointer-events: none; }
#tarifs .section-title { color: var(--white); }
#tarifs .section-sub { color: rgba(255,255,255,.55); }
.calc-slider-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 34px 38px; margin-bottom: 26px; backdrop-filter: blur(12px); }
.calc-lbl { font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.calc-range-display { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; color: var(--white); letter-spacing: -.04em; margin-bottom: 24px; line-height: 1; }
input[type=range].calc-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 99px; background: rgba(255,255,255,.14); outline: none; border: none; padding: 0; cursor: pointer; }
input[type=range].calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,.3), 0 0 0 4px rgba(92,212,46,.22); cursor: pointer; transition: transform .15s; }
input[type=range].calc-slider::-webkit-slider-thumb:hover { transform: scale(1.18); }
input[type=range].calc-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--white); border: none; box-shadow: 0 2px 16px rgba(0,0,0,.3); cursor: pointer; }
.slider-ticks { display: flex; justify-content: space-between; margin-top: 10px; }
.slider-ticks span { font-size: .65rem; color: rgba(255,255,255,.3); }
.calc-mode-tabs { display: flex; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 5px; width: fit-content; margin-bottom: 24px; gap: 4px; }
.calc-tab { padding: 10px 24px; border-radius: 8px; font-size: .88rem; font-weight: 600; cursor: pointer; border: none; background: transparent; color: rgba(255,255,255,.42); transition: background .2s, color .2s; font-family: inherit; }
.calc-tab.active { background: var(--white); color: var(--green-dark); }
.calc-result-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 34px 38px; position: relative; overflow: hidden; backdrop-filter: blur(12px); }
.calc-result-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(92,212,46,.07) 0%, transparent 55%); pointer-events: none; }
.calc-result-badge { position: absolute; top: 22px; right: 22px; background: var(--grad-gold); color: var(--white); font-size: .68rem; font-weight: 700; padding: 5px 14px; border-radius: 99px; letter-spacing: .06em; text-transform: uppercase; box-shadow: 0 3px 14px rgba(212,150,12,.4); }
.calc-result-type { font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.calc-price-big { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -.04em; margin-bottom: 4px; }
.calc-price-big .unit { font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: 0; }
.calc-price-sub { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.calc-economy { display: inline-flex; align-items: center; gap: 6px; background: rgba(92,212,46,.1); border: 1px solid rgba(92,212,46,.22); color: #a8f07a; font-size: .78rem; font-weight: 700; padding: 5px 14px; border-radius: 99px; margin-bottom: 24px; }
.calc-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 22px; }
.calc-checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.calc-checklist li { font-size: .85rem; color: rgba(255,255,255,.72); display: flex; align-items: baseline; gap: 8px; }
.calc-checklist li::before { content: '✓'; color: #a8f07a; font-weight: 700; flex-shrink: 0; }
.calc-sap-note { padding: 14px 18px; background: rgba(92,212,46,.07); border: 1px solid rgba(92,212,46,.18); border-radius: 10px; font-size: .82rem; color: rgba(255,255,255,.6); }
.calc-sap-note strong { color: #a8f07a; }
.tarifs-extras { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 44px; }
.extra-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 30px 26px; backdrop-filter: blur(8px); }
.extra-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.extra-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .88rem; color: rgba(255,255,255,.75); }
.extra-row:last-child { border-bottom: none; }
.extra-row strong { color: var(--gold-light); font-weight: 700; }
.zone-badge { display: inline-block; padding: 4px 12px; border-radius: 99px; font-size: .74rem; font-weight: 600; }
.zone-1 { background: rgba(92,212,46,.14); color: #a8f07a; }
.zone-2 { background: rgba(212,150,12,.18); color: var(--gold-light); }
.zone-3 { background: rgba(220,80,120,.2); color: #f090b0; }
.minimum { margin-top: 16px; padding: 10px 14px; background: rgba(212,150,12,.1); border: 1px solid rgba(212,150,12,.22); border-radius: 8px; font-size: .82rem; color: var(--gold-light); font-weight: 600; }
table { width: 100%; border-collapse: collapse; background: var(--white); font-size: .9rem; }
thead th { background: var(--green-dark); color: var(--white); font-weight: 700; padding: 14px 18px; text-align: left; white-space: nowrap; }
tbody tr:nth-child(even) { background: var(--green-super-pale); }
tbody tr:hover { background: var(--green-pale); }
tbody td { padding: 13px 18px; border-bottom: 1px solid #deecd4; vertical-align: middle; }
.td-superficie { font-weight: 600; color: var(--green-dark); }
.td-price { font-weight: 800; font-size: 1rem; color: var(--green-dark); }
.td-abo { font-weight: 700; color: var(--gold); }
.td-sap { font-weight: 700; color: #9b2c50; }

/* ─── Comparatif ─────────────────────────────────────────── */
#comparatif { padding: 80px 0; background: var(--off-white); }
.comp-table-wrap { overflow-x: auto; margin: 40px 0 10px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.comp-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 580px; }
.comp-table thead th { padding: 16px 18px; text-align: center; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.comp-th-label { width: 34%; background: var(--off-white); border-right: 1px solid var(--gray-light); text-align: left; color: var(--gray); }
.comp-th-other { background: #f2f2f2; color: var(--gray); width: 22%; }
.comp-th-us { background: var(--green-dark); color: var(--white); width: 22%; }
.comp-best-badge { display: block; background: var(--gold-light); color: var(--green-dark); font-size: .6rem; font-weight: 800; padding: 2px 9px; border-radius: 20px; margin-bottom: 5px; letter-spacing: .08em; }
.comp-table tbody td { padding: 13px 18px; border-top: 1px solid var(--gray-light); font-size: .875rem; vertical-align: middle; }
.comp-td-label { font-weight: 600; color: var(--text); background: var(--off-white); border-right: 1px solid var(--gray-light); }
.comp-td-other { text-align: center; color: var(--gray); }
.comp-table tbody tr:nth-child(even) .comp-td-other { background: #f9f9f9; }
.comp-td-us { text-align: center; font-weight: 700; }
.comp-table tbody tr:nth-child(odd) .comp-td-us { background: rgba(20,72,10,.03); }
.comp-table tbody tr:nth-child(even) .comp-td-us { background: rgba(20,72,10,.06); }
.comp-yes { color: var(--green-mid) !important; }
.comp-no  { color: #c0392b !important; }
.comp-mid { color: var(--gold) !important; }
.comp-price { display: block; font-weight: 700; color: var(--text); font-size: .9rem; }
.comp-price-us { display: block; font-size: 1.05rem; font-weight: 800; color: var(--green-mid); }
.comp-sap-note { display: block; font-size: .7rem; color: var(--green-light); margin-top: 2px; }
.comp-footnote { font-size: .72rem; color: var(--gray); text-align: center; margin: 10px 0 48px; line-height: 1.5; }
.comp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.comp-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); border: 1.5px solid var(--green-pale); border-top: 3px solid var(--green-mid); transition: transform .25s, box-shadow .25s; }
.comp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.comp-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.comp-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.comp-card p { font-size: .875rem; color: var(--gray); line-height: 1.65; }
.comp-cta-row { text-align: center; margin-top: 44px; }

/* ─── Zones — LIGHT ──────────────────────────────────────── */
#zones { padding: 80px 0; background: var(--white); }
.zones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.zone-card { background: var(--white); border-radius: var(--radius); padding: 30px 26px; border-left: 5px solid; border-top: 1.5px solid var(--green-pale); border-right: 1.5px solid var(--green-pale); border-bottom: 1.5px solid var(--green-pale); box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.zone-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.zone-card:nth-child(1) { border-left-color: var(--green-light); }
.zone-card:nth-child(2) { border-left-color: var(--gold); }
.zone-card:nth-child(3) { border-left-color: #c0396a; }
.zone-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.zone-km { font-size: .8rem; color: var(--gray); margin-bottom: 12px; }
.zone-communes { font-size: .85rem; color: #444; margin-bottom: 16px; line-height: 1.6; }
.zone-price-tag { display: inline-block; padding: 5px 16px; border-radius: 99px; font-size: .82rem; font-weight: 700; }
.zone-card:nth-child(1) .zone-price-tag { background: var(--green-pale); color: var(--green); }
.zone-card:nth-child(2) .zone-price-tag { background: var(--gold-pale); color: var(--gold); }
.zone-card:nth-child(3) .zone-price-tag { background: #fce8f0; color: #a02858; }

/* ─── Abonnement ─────────────────────────────────────────── */
#abonnement { padding: 80px 0; background: var(--off-white); }
.abo-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 3rem; }
.abo-step { background: var(--white); border: 1.5px solid var(--green-pale); border-radius: var(--radius); padding: 28px 22px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.abo-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(26,107,12,.22); }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-green); color: var(--white); font-weight: 900; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 4px 18px rgba(20,72,10,.28); }
.abo-step h3 { font-size: .95rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.abo-step p { font-size: .85rem; color: #5a6a55; }
.sap-box { background: linear-gradient(135deg, #480f25 0%, #7a1e4a 100%); border-radius: var(--radius); padding: 44px; color: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; box-shadow: 0 8px 48px rgba(72,15,37,.28); position: relative; overflow: hidden; }
.sap-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(255,255,255,.06) 0%, transparent 60%); }
.sap-left h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 1rem; }
.sap-left p { font-size: .92rem; opacity: .82; line-height: 1.7; }
.sap-example { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 26px; backdrop-filter: blur(8px); }
.sap-example h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; opacity: .62; margin-bottom: 16px; }
.sap-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.sap-row:last-of-type { border-bottom: none; }
.sap-row.total { font-weight: 700; font-size: 1rem; padding-top: 12px; }
.sap-row.credit { color: #f08080; }
.sap-row.real { color: #80e080; font-size: 1.2rem; font-weight: 800; }

/* ─── SAP Guide ──────────────────────────────────────────── */
#sap-guide { padding: 80px 0; background: var(--white); }
.sap-guide-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 60px; padding: 44px; background: linear-gradient(135deg, var(--green-dark) 0%, #226e0e 100%); border-radius: var(--radius); color: var(--white); box-shadow: 0 8px 44px rgba(20,72,10,.18); position: relative; overflow: hidden; }
.sap-guide-intro::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(92,212,46,.1) 0%, transparent 60%); }
.sap-guide-intro > * { position: relative; z-index: 1; }
.sap-intro-left h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: .6rem; line-height: 1.15; }
.sap-intro-left p { font-size: .95rem; opacity: .82; line-height: 1.7; }
.sap-big-numbers { display: flex; flex-direction: column; gap: 14px; }
.sap-stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; }
.sap-stat-num { font-size: 2rem; font-weight: 900; color: var(--gold-light); line-height: 1; flex-shrink: 0; }
.sap-stat-text { font-size: .85rem; opacity: .85; line-height: 1.4; }
.sap-stat-text strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: 2px; }
.sap-eligibility { background: var(--green-super-pale); border-radius: var(--radius); padding: 36px; margin-bottom: 40px; border: 1.5px solid var(--green-pale); }
.sap-eligibility h3 { font-size: 1.15rem; font-weight: 800; color: var(--green-dark); margin-bottom: 18px; }
.eligibility-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.elig-card { background: var(--white); border: 1.5px solid var(--green-pale); border-radius: 10px; padding: 18px 16px; display: flex; align-items: flex-start; gap: 12px; transition: transform .2s; }
.elig-card:hover { transform: translateY(-2px); }
.elig-card.ok { border-color: #88d078; }
.elig-card.no { border-color: #f0c0c0; opacity: .7; }
.elig-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.elig-card p { font-size: .85rem; color: #444; line-height: 1.5; }
.elig-card p strong { color: var(--green-dark); display: block; margin-bottom: 3px; font-size: .9rem; }
.elig-card.no p strong { color: #b03030; }
.sap-steps { margin-bottom: 40px; }
.sap-steps h3 { font-size: 1.15rem; font-weight: 800; color: var(--green-dark); margin-bottom: 20px; }
.sap-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.sap-step { background: var(--white); border: 1.5px solid var(--green-pale); border-radius: var(--radius); padding: 24px 20px; transition: transform .2s, box-shadow .2s; }
.sap-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sap-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-green); color: var(--white); font-weight: 900; font-size: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; box-shadow: 0 3px 14px rgba(20,72,10,.25); }
.sap-step h4 { font-size: .92rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.sap-step p { font-size: .82rem; color: #555; line-height: 1.55; }
.cesu-box { background: linear-gradient(135deg, #190f5e 0%, #2b1878 100%); border-radius: var(--radius); padding: 40px; color: var(--white); margin-bottom: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; box-shadow: 0 8px 44px rgba(25,15,94,.3); }
.cesu-left h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: .5rem; }
.cesu-left .cesu-tag { display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 99px; font-size: .72rem; font-weight: 700; padding: 4px 14px; margin-bottom: 14px; letter-spacing: .06em; text-transform: uppercase; }
.cesu-left p { font-size: .88rem; opacity: .82; line-height: 1.7; }
.cesu-right { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 24px; }
.cesu-right h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .55; margin-bottom: 14px; }
.cesu-comparison { display: flex; flex-direction: column; gap: 10px; }
.cesu-row { display: flex; justify-content: space-between; align-items: center; font-size: .88rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.cesu-row:last-child { border-bottom: none; }
.cesu-row .label { opacity: .7; }
.cesu-row .val { font-weight: 700; }
.cesu-row.highlight .val { color: #80e080; font-size: 1.05rem; }
.cesu-row.cross .val { text-decoration: line-through; opacity: .35; }

/* ─── FAQ ────────────────────────────────────────────────── */
.sap-faq h3 { font-size: 1.15rem; font-weight: 800; color: var(--green-dark); margin-bottom: 16px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--green-pale); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: rgba(26,107,12,.28); }
.faq-q { width: 100%; background: var(--white); border: none; padding: 18px 22px; text-align: left; font-family: inherit; font-size: .92rem; font-weight: 600; color: var(--green-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s; }
.faq-q:hover, .faq-q.open { background: var(--green-super-pale); }
.faq-chevron { font-size: .75rem; transition: transform .25s; flex-shrink: 0; color: var(--green-mid); }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: .88rem; color: #444; line-height: 1.7; background: var(--green-super-pale); }
.faq-a.open { display: block; }
.faq-a strong { color: var(--green-dark); }

/* ─── Packs ──────────────────────────────────────────────── */
#packs { padding: 80px 0; background: var(--off-white); }
.packs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.pack-card { border: 1.5px solid var(--green-pale); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, transform .25s; background: var(--white); }
.pack-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(26,107,12,.22); }
.pack-season-bar { padding: 11px 20px; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--white); }
.season-spring { background: linear-gradient(135deg, #2a9e12, #50d030); }
.season-summer { background: linear-gradient(135deg, #d4960c, #f0b520); }
.season-autumn { background: linear-gradient(135deg, #8b4500, #b06010); }
.season-winter { background: linear-gradient(135deg, #2d5a8b, #4070aa); }
.pack-body { padding: 22px; }
.pack-body h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.pack-body p { font-size: .83rem; color: #5a6a55; margin-bottom: 16px; line-height: 1.55; }
.pack-price { font-size: 1.3rem; font-weight: 900; color: var(--gold); }

/* ─── Contact — DARK GREEN (CTA page, ok d'être sombre) ─── */
#contact { padding: 90px 0; background: linear-gradient(180deg, #0e2e07 0%, #174d0b 100%); position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(92,212,46,.07) 0%, transparent 70%); top: -250px; right: -150px; pointer-events: none; }
#contact .section-title { color: var(--white); }
#contact .section-sub { color: rgba(255,255,255,.55); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; align-items: start; }
.contact-info h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-item-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text { font-size: .9rem; color: rgba(255,255,255,.7); }
.contact-item-text strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 2px; }
.contact-item-text a { color: var(--gold-light); }
.contact-form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 34px; backdrop-filter: blur(14px); position: relative; overflow: hidden; }
.contact-form::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 100% 100%, rgba(92,212,46,.05) 0%, transparent 60%); }
.contact-form > * { position: relative; z-index: 1; }
.contact-form h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }
input, select, textarea { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 9px; padding: 12px 15px; color: var(--white); font-family: inherit; font-size: .92rem; transition: border-color .2s, background .2s, box-shadow .2s; width: 100%; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.26); }
input:focus, select:focus, textarea:focus { outline: none; border-color: #a8f07a; background: rgba(255,255,255,.12); box-shadow: 0 0 0 3px rgba(92,212,46,.12); }
select option { background: var(--green-dark); color: var(--white); }
textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 20px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-legal { margin-top: 10px; font-size: .74rem; color: rgba(255,255,255,.32); text-align: center; }
.form-msg { display: none; padding: 14px 18px; border-radius: 10px; font-size: .9rem; font-weight: 600; margin-top: 14px; text-align: center; }
.form-msg.success { background: rgba(92,212,46,.1); color: #a8f07a; border: 1px solid rgba(92,212,46,.22); }
.form-msg.error   { background: rgba(200,60,60,.12); color: #f08080; border: 1px solid rgba(200,60,60,.28); }
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.service-pills input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.service-pills label { display: inline-flex; align-items: center; gap: 6px; padding: 7px 15px; border-radius: 99px; border: 1.5px solid rgba(255,255,255,.16); color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 500; cursor: pointer; transition: all .2s; text-transform: none; letter-spacing: 0; background: rgba(255,255,255,.06); white-space: nowrap; }
.service-pills input[type=checkbox]:checked + label { background: rgba(92,212,46,.12); border-color: rgba(92,212,46,.38); color: #a8f07a; font-weight: 600; }
.service-pills label:hover { border-color: rgba(255,255,255,.32); color: var(--white); }

/* ─── Footer ─────────────────────────────────────────────── */
footer { background: var(--green-deep); padding: 42px 0 24px; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(92,212,46,.25) 30%, rgba(92,212,46,.25) 70%, transparent 100%); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
.footer-logo { font-size: 1.2rem; font-weight: 900; color: var(--white); }
.footer-logo span { color: #a8f07a; }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.32); margin-top: 4px; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.82); }
.footer-copy { width: 100%; padding-top: 20px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,.07); font-size: .76rem; color: rgba(255,255,255,.24); text-align: center; }

/* ─── Floating buttons ───────────────────────────────────── */
#mobile-bar { display: flex; flex-direction: column; position: fixed; bottom: 28px; left: 24px; z-index: 1100; gap: 9px; }
#mobile-bar a { display: flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 99px; font-weight: 700; font-size: .82rem; white-space: nowrap; box-shadow: 0 4px 22px rgba(0,0,0,.2); transition: transform .2s, box-shadow .2s; }
#mobile-bar a:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
#mobile-bar .mb-call { background: var(--white); border: 1.5px solid var(--green-pale); color: var(--green-dark); box-shadow: 0 4px 18px rgba(20,72,10,.14); }
#mobile-bar .mb-devis { background: var(--grad-gold); color: var(--white); box-shadow: 0 4px 22px rgba(212,150,12,.4); }
#totop { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; border-radius: 50%; background: var(--grad-green); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); box-shadow: 0 4px 20px rgba(20,72,10,.32); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 999; }
#totop.visible { opacity: 1; pointer-events: auto; }
#totop:hover { transform: translateY(-3px); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 66px; left: 0; right: 0; background: rgba(8,24,2,.97); padding: 20px; gap: 1.2rem; border-bottom: 2px solid rgba(92,212,46,.15); backdrop-filter: blur(20px); }
  .nav-links.open a { font-size: 1rem; color: rgba(255,255,255,.88); }
  .sap-box { grid-template-columns: 1fr; }
  .sap-guide-intro { grid-template-columns: 1fr; }
  .cesu-box { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .tarifs-extras { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  #hero { min-height: calc(100svh - 66px); padding-bottom: 90px; }
  .hero-reassurance { flex-direction: column; gap: 1rem; }
  .ba-wrap { grid-template-columns: 1fr; }
  .ba-card img { height: 250px; }
  .comp-cards { grid-template-columns: 1fr; }
  .comp-table thead th { font-size: .68rem; padding: 11px 8px; }
  .comp-table tbody td { font-size: .78rem; padding: 10px 8px; }
  .steps3-sep { display: none; }
  .steps3-item { min-width: 100%; margin: 0 0 12px; padding: 26px 18px; }
  .temo-cta { flex-direction: column; text-align: center; }
  .hero-grass { height: 72px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 3.2rem; }
  .container { padding: 0 16px; }
  .hero-pills { gap: 7px; }
  .hero-pill { font-size: .76rem; padding: 6px 12px; }
}