/* ============================================
   ELAGAGE BREST — Lead Generation Site
   ============================================ */

:root {
  --green: #2d6a2d;
  --green-dark: #1a4a1a;
  --green-light: #4a9e4a;
  --green-bg: #f0f7f0;
  --accent: #f5a623;
  --accent-hover: #e09418;
  --text: #1e1e1e;
  --text-light: #555;
  --white: #ffffff;
  --border: #dde8dd;
  --shadow: 0 4px 24px rgba(45,106,45,0.12);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}


/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
  padding: 80px 5% 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 5px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 44px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(245,166,35,0.45);
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.hero-cta:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,166,35,0.55); }
.hero-sub {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
}
.trust-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
}
.trust-icon { font-size: 1.2rem; }

/* ---- SECTIONS ---- */
section { padding: 72px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { color: var(--green); font-style: normal; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* ---- WHY US ---- */
.why-section { background: var(--green-bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.why-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.why-card h3 { font-size: 1rem; font-weight: 800; color: var(--green-dark); margin-bottom: 6px; }
.why-card p { font-size: 0.88rem; color: var(--text-light); }

/* ---- CTA BLOCK ---- */
.cta-block {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
  margin: 0 5%;
}
.cta-block h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 14px; }
.cta-block p { font-size: 1.05rem; color: rgba(255,255,255,0.82); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--green);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--green-bg); }

/* ---- STEPS ---- */
.steps { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--green);
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1rem; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-light); }

/* ---- FAQ ---- */
.faq-section { background: var(--green-bg); }
.faq-list { max-width: 720px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question .arrow { font-size: 1.1rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }

/* ---- ZONES ---- */
.zones-section { background: var(--white); }
.zones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.zone-tag {
  background: #fff;
  border: 1.5px solid var(--green);
  color: var(--green);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s;
}
.zone-tag:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: #f0f5ec;
  border-bottom: 1px solid #dcecd0;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 5%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: #666;
}
.breadcrumb-inner a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.breadcrumb-inner a:hover { color: var(--green-dark); }
.breadcrumb-sep {
  color: #bbb;
  font-size: 0.9rem;
}
.breadcrumb-current {
  color: #444;
  font-weight: 500;
}
/* Legacy breadcrumb (ol/li variant) */
.bc-list {
  list-style: none;
  margin: 0;
  padding: 10px 5%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  flex-wrap: wrap;
}
.bc-item { display: flex; align-items: center; gap: 8px; }
.bc-item::before { content: "›"; color: #bbb; }
.bc-item:first-child::before { display: none; }
.bc-link { color: var(--green); text-decoration: none; font-weight: 600; }
.bc-link:hover { color: var(--green-dark); }
.bc-current { color: #444; }

/* ---- PRE-FOOTER CTA ---- */
.pre-footer {
  background: var(--green-dark);
  padding: 72px 5%;
  text-align: center;
}
.pre-footer-label {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.pre-footer h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.pre-footer h2 em {
  color: var(--accent);
  font-style: normal;
}
.pre-footer p {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.pre-footer-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.pre-footer-trust {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}

/* ---- FOOTER ---- */
footer {
  background: #0d2410;
  color: rgba(255,255,255,0.55);
  padding: 40px 5% 28px;
  font-size: 0.85rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-brand a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-brand a:hover { color: var(--accent); }
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.15s;
  padding: 2px 0;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}
@media (max-width: 560px) {
  .pre-footer { padding: 56px 5%; }
  .footer-links { gap: 6px 14px; }
}

/* ---- FLOATING CTA ---- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
  z-index: 999;
  transition: all 0.2s;
  animation: pulse 2.5s infinite;
}
.floating-cta:hover { background: var(--accent-hover); transform: scale(1.05); animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(245,166,35,0.4); }
  50% { box-shadow: 0 6px 40px rgba(245,166,35,0.7); }
}

/* ---- CONTENT PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 64px 5%;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  max-width: 700px;
  margin: 0 auto 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 30px;
}

/* ---- CONTENT BLOCK ---- */
.content-block { max-width: 820px; }
.content-block h2 { font-size: 1.4rem; font-weight: 800; color: var(--green-dark); margin: 36px 0 12px; }
.content-block p { font-size: 0.97rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.content-block ul { padding-left: 20px; margin-bottom: 16px; }
.content-block ul li { font-size: 0.95rem; color: var(--text-light); margin-bottom: 8px; line-height: 1.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .cta-block { padding: 36px 24px; }
  .hero { padding: 52px 5% 60px; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 0.88rem; }
}

/* ============================================
   HOMEPAGE OPTIMISÉE — Sections supplémentaires
   ============================================ */

/* ---- HERO V2 ---- */
.hero-v2 {
  background: linear-gradient(150deg, #0d2e0d 0%, #1a4a1a 45%, #2d6a2d 100%);
  padding: 88px 5% 96px;
  position: relative;
  overflow: hidden;
}
.hero-v2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-v2-left {}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-v2 h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-v2 h1 .highlight {
  color: var(--accent);
  position: relative;
}
.hero-v2 .hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(245,166,35,0.45);
  transition: all 0.2s;
}
.btn-hero-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: left;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.hero-v2-right {}
.hero-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.hero-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.hero-card-cta {
  display: block;
  background: var(--green);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.hero-card-cta:hover { background: var(--green-dark); }
.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.hero-card-feature .check {
  width: 22px; height: 22px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ---- REASSURANCE BAR V2 ---- */
.reassurance {
  background: var(--white);
  padding: 40px 5%;
  border-bottom: 1px solid var(--border);
}
.reassurance-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.reassurance-icon {
  width: 48px; height: 48px;
  background: var(--green-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.reassurance-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 2px;
}
.reassurance-text span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ---- INTRO ---- */
.intro-section {
  padding: 80px 5%;
  background: white;
}
.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-visual {
  position: relative;
}
.intro-img-placeholder {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-radius: 20px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.intro-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.intro-badge-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--accent);
  color: white;
  border-radius: 16px;
  padding: 16px 20px;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
  text-align: center;
  line-height: 1.3;
}
.intro-badge-float span { display: block; font-size: 0.75rem; font-weight: 600; opacity: 0.85; }
.intro-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.intro-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.intro-list {
  list-style: none;
  margin: 24px 0;
}
.intro-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.intro-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ---- SERVICES V2 ---- */
.services-v2 {
  background: var(--green-bg);
  padding: 80px 5%;
}
.services-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-v2-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.service-v2-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-v2-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fffdf5, white);
}
.service-v2-icon {
  width: 60px; height: 60px;
  background: var(--green-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}
.service-v2-card.featured .service-v2-icon {
  background: rgba(245,166,35,0.12);
}
.service-v2-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.service-v2-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.service-v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tag {
  background: var(--green-bg);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}
.service-v2-card.featured .service-tag {
  background: rgba(245,166,35,0.12);
  color: #b87a00;
}

/* ---- FORMULAIRE ---- */
.form-section {
  padding: 80px 5%;
  background: white;
}
.form-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.form-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.form-left p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.65;
}
.form-reassurance {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.form-right {
  background: var(--green-bg);
  border-radius: 20px;
  padding: 36px;
  border: 2px solid var(--border);
}
.tally-embed {
  width: 100%;
  min-height: 400px;
  border: none;
  border-radius: 12px;
}

/* ---- AVIS CLIENTS ---- */
.reviews-section {
  background: var(--green-dark);
  padding: 80px 5%;
}
.reviews-section .section-title { color: white; }
.reviews-section .section-label { color: var(--accent); }
.reviews-section .section-sub { color: rgba(255,255,255,0.65); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}
/* Dark background override (homepage reviews-section) */
.reviews-section .review-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.reviews-section .review-text { color: rgba(255,255,255,0.82); }
.reviews-section .review-author { color: rgba(255,255,255,0.75); }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: 0.88rem; color: white; }
.review-author-info span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-score {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.reviews-score-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ---- RÉALISATIONS ---- */
.realisations-section {
  background: white;
  padding: 80px 5%;
}
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.realisation-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.realisation-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter 0.2s;
}
.realisation-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: white;
  padding: 24px 16px 14px;
  font-size: 0.88rem;
  font-weight: 700;
}
.realisation-label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.75;
  margin-top: 2px;
}

/* ---- ZONES V2 ---- */
.zones-v2 {
  background: var(--green-bg);
  padding: 80px 5%;
}
.zones-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.zones-map-area {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 2px solid var(--border);
  margin-top: 40px;
}
.zones-v2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.zone-v2-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--green-bg);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all 0.15s;
}
.zone-v2-item:hover { background: var(--green); border-color: var(--green); }
.zone-v2-item:hover .zone-v2-name { color: white; }
.zone-v2-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.zone-v2-item:hover .zone-v2-dot { background: white; }
.zone-v2-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
}

/* ---- POURQUOI NOUS V2 ---- */
.why-v2 {
  background: white;
  padding: 80px 5%;
}
.why-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-v2-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: 16px;
  border: 2px solid var(--border);
  transition: all 0.2s;
}
.why-v2-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.why-v2-icon {
  width: 52px; height: 52px;
  background: var(--green-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-v2-text h3 { font-size: 1rem; font-weight: 800; color: var(--green-dark); margin-bottom: 6px; }
.why-v2-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ---- PROCESS V2 ---- */
.process-section {
  background: var(--green-bg);
  padding: 80px 5%;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 48px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px; height: 56px;
  background: var(--green);
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid var(--green-bg);
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 0.95rem; font-weight: 800; color: var(--green-dark); margin-bottom: 6px; }
.process-step p { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; }
.process-icon { font-size: 1.4rem; margin-bottom: 10px; }

/* ---- TARIFS ---- */
.tarifs-section {
  background: white;
  padding: 80px 5%;
}
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.tarif-card {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.2s;
}
.tarif-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.tarif-card.featured { border-color: var(--green); background: var(--green-bg); }
.tarif-icon { font-size: 2rem; margin-bottom: 12px; }
.tarif-card h3 { font-size: 1rem; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.tarif-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 4px;
}
.tarif-price-sub { font-size: 0.78rem; color: var(--text-light); margin-bottom: 16px; }
.tarif-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.tarif-cta {
  display: block;
  background: var(--green);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.tarif-cta:hover { background: var(--green-dark); }
.tarif-card.featured .tarif-cta { background: var(--accent); }
.tarif-card.featured .tarif-cta:hover { background: var(--accent-hover); }

/* ---- CTA FINAL ---- */
.cta-final {
  background: linear-gradient(135deg, #0d2e0d 0%, var(--green-dark) 50%, var(--green) 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '🌳';
  position: absolute;
  font-size: 15rem;
  opacity: 0.04;
  left: -4%;
  top: -30%;
  pointer-events: none;
}
.cta-final::after {
  content: '🌲';
  position: absolute;
  font-size: 12rem;
  opacity: 0.04;
  right: -2%;
  bottom: -20%;
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta-final p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.65;
}
.cta-final-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.btn-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(245,166,35,0.45);
  transition: all 0.2s;
}
.btn-cta-big:hover { background: var(--accent-hover); transform: translateY(-2px); }
.cta-guarantee {
  margin-top: 24px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}

/* ---- FISCALITE ---- */
.fiscalite-section {
  background: var(--green-bg);
  padding: 80px 5%;
}
.fiscalite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.fiscalite-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
}
.fiscalite-card:hover { border-color: var(--green); }
.fiscalite-num {
  width: 44px; height: 44px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.fiscalite-body h3 { font-size: 1rem; font-weight: 800; color: var(--green-dark); margin-bottom: 6px; }
.fiscalite-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
@media (max-width: 700px) { .fiscalite-grid { grid-template-columns: 1fr; } }

/* ---- TARIF TABLES ---- */
.tarif-table-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.tarif-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.tarif-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.tarif-table thead {
  background: var(--green-dark);
  color: white;
}
.tarif-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
}
.tarif-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.tarif-table tbody tr:last-child td { border-bottom: none; }
.tarif-table tbody tr:nth-child(even) { background: var(--green-bg); }
.tarif-td-price {
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
}

/* ---- PHONE NAV ---- */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.15s;
  flex-shrink: 0;
}
.nav-phone:hover { color: white; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }
@media (max-width: 900px) { .nav-phone { display: none; } }

.mobile-phone-link {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

/* ---- CTA MOBILE HERO ---- */
.hero-mobile-cta {
  display: none;
  background: var(--green-dark);
  padding: 20px 5% 28px;
  text-align: center;
}
.hero-mobile-cta-sub {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 900px) {
  .hero-mobile-cta { display: block; }
}

/* ---- RESPONSIVE HOMEPAGE ---- */
@media (max-width: 900px) {
  .hero-v2-inner { grid-template-columns: 1fr; }
  .hero-v2-right { display: none; }
  .intro-inner { grid-template-columns: 1fr; }
  .intro-visual { display: none; }
  .services-v2-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .realisations-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .why-v2-grid { grid-template-columns: 1fr; }
  .form-section-inner { grid-template-columns: 1fr; }
  .reassurance-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .reassurance-inner { grid-template-columns: 1fr; }
  .realisations-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* Image hover effect on realisation cards */
.realisation-card img {
  transition: transform 0.4s ease;
}
.realisation-card:hover img {
  transform: scale(1.06);
}
/* Fix intro image badge positioning */
.intro-visual { position: relative; }
.intro-visual .intro-badge-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
}

/* ============================================
   HEADER SEO OPTIMISÉ — Navbar avec dropdowns
   ============================================ */

.navbar {
  background: var(--green-dark);
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  gap: 0;
}

/* Logo */
.logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

/* Nav principal */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0 auto;
  padding: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  height: 68px;
  font-family: inherit;
}
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.open > .nav-link {
  color: white;
  background: rgba(255,255,255,0.1);
}
.nav-link.active { color: var(--accent); }
.nav-arrow {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.2s;
}
.nav-item.open > .nav-link .nav-arrow,
.nav-item:hover > .nav-link .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdowns */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  pointer-events: none;
  z-index: 200;
}
.nav-item:hover > .dropdown,
.nav-item.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
/* Petit pont invisible entre nav et dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.12s;
}
.dropdown-link:hover { background: var(--green-bg); color: var(--green-dark); }
.dropdown-icon {
  width: 32px; height: 32px;
  background: var(--green-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.dropdown-text strong { display: block; font-size: 0.88rem; }
.dropdown-text span { display: block; font-size: 0.75rem; color: var(--text-light); font-weight: 400; }
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

/* Mega dropdown zones */
.dropdown-mega {
  min-width: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

/* Nav CTA */
.nav-cta {
  background: var(--accent);
  color: white !important;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 22px !important;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  height: auto !important;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent-hover) !important; transform: scale(1.03); }

/* ---- HAMBURGER ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--green-dark);
  overflow-y: auto;
  z-index: 999;
  padding: 16px 5% 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  padding: 16px 0 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.mobile-section-title:first-child { border-top: none; margin-top: 0; }
.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s;
}
.mobile-link:hover { color: var(--accent); }
.mobile-link .m-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.mobile-cta-wrap {
  padding: 24px 0 0;
}
.mobile-cta {
  display: block;
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}

/* ---- CTA SECTION (pages villes) ---- */
.cta-section {
  background: var(--green-dark);
  padding: 72px 5%;
}
.cta-section .section-title { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.85); }

/* ---- INTRO CHECKLIST (pages services) ---- */
.intro-checklist {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem 1.5rem;
}
.intro-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.97rem;
  color: var(--text);
}
.check-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- METHODE STEPS (pages services) ---- */
.methode-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.methode-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #f8faf6;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--green);
}
.methode-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.methode-body h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  color: var(--green-dark);
}
.methode-body p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* ---- ESPECES GRID (pages services) ---- */
.especes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.espece-item {
  background: #f0f5ec;
  border-radius: 12px;
  padding: 1.1rem 1rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-dark);
  border: 1px solid #d4e6c3;
  transition: box-shadow 0.15s;
}
.espece-item:hover { box-shadow: 0 4px 14px rgba(74,124,55,0.15); }
.espece-item .espece-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.4rem;
}

/* ---- SERVICE CARD LINK ---- */
.service-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.service-card-link:hover {
  color: var(--green-dark);
  border-color: var(--green);
}

/* ---- REVIEWS SECTION ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid #eef2eb;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-meta strong { display: block; font-size: 0.95rem; }
.review-stars { color: #f5a623; font-size: 0.9rem; }
.review-text { font-size: 0.93rem; color: #555; line-height: 1.6; margin: 0; }

/* ---- MAILLAGE INTERNE — related pages ---- */
.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.related-link-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  transition: background 0.16s, color 0.16s, border-color 0.16s, box-shadow 0.16s;
}
.related-link-item:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45,106,45,0.22);
}
.related-link-item .rl-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ---- related-card grid (services / footer cross-links) ---- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.related-card strong {
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--green-dark);
  transition: color 0.16s;
}
.related-card span {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: color 0.16s;
}
.related-card:hover {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(45,106,45,0.22);
}
.related-card:hover strong,
.related-card:hover span { color: #fff; }

/* ---- page-nav quick-links (in hero sections) ---- */
.page-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}
.page-nav-link {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}
.page-nav-link:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

@media (max-width: 900px) {
  .intro-checklist { grid-template-columns: 1fr; }
  .especes-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .related-links { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .related-links { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ---- DEVIS FORM ---- */
.devis-form {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #dcecd0;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 32px rgba(74,124,55,0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.form-group label .req { color: var(--accent); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d4e6c3;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: #fafff8;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,124,55,0.12);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-submit-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.form-legal {
  font-size: 0.78rem;
  color: #888;
  flex: 1;
  min-width: 200px;
}
.form-legal a { color: var(--green); }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.visible { display: block; }
.form-success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.form-success h3 {
  color: var(--green-dark);
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
}
.form-success p {
  color: #555;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}
.form-error-msg {
  display: none;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  color: #dc2626;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.form-error-msg.visible { display: block; }
.btn-loading { opacity: 0.7; pointer-events: none; cursor: not-allowed; }

@media (max-width: 600px) {
  .devis-form { padding: 1.5rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
}

/* ---- CONTACT SPLIT HERO ---- */
.contact-split {
  background: var(--green-dark);
  padding: 72px 0 80px;
}
.contact-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-split-left { color: #fff; padding-top: 8px; }
.contact-split-left .section-label {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.contact-split-left h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.2;
  color: #fff;
  margin: 1rem 0;
}
.contact-split-left h1 em { color: var(--accent); font-style: normal; }
.contact-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin: 1rem 0 2rem;
}
.contact-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.4;
}
.ct-icon { font-size: 1.1rem; flex-shrink: 0; }
.contact-phone-wrap {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.contact-phone-wrap p {
  color: rgba(255,255,255,0.6);
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
}
.btn-phone-large {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.38);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-phone-large:hover { background: rgba(255,255,255,0.24); color: #fff; }
.contact-split-right { position: sticky; top: 90px; }
.form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  overflow: hidden;
}
.form-card-header {
  background: var(--green);
  padding: 1.4rem 2rem;
}
.form-card-header h2 {
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 0.25rem;
}
.form-card-header p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.form-card .devis-form {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 1.5rem 2rem 2rem;
}
.form-card .form-success { padding: 2.5rem 2rem; }
@media (max-width: 960px) {
  .contact-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-split-left { padding-top: 0; }
  .contact-split-right { position: static; }
}
@media (max-width: 560px) {
  .contact-split { padding: 48px 0 56px; }
  .form-card .devis-form { padding: 1.25rem 1.25rem 1.75rem; }
  .form-card-header { padding: 1.2rem 1.25rem; }
}

/* ---- RESPONSIVE HEADER ---- */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .navbar-inner { height: 64px; }
  .mobile-menu { top: 64px; }
}
