/* ==========================================================================
   Pickajob — Feuille de style globale
   Direction artistique : univers agricole premium
   Palette : vert champ profond + vert feuille + accent blé chaud + crème papier
   Typo : Fraunces (titres) · Archivo (corps)
   ========================================================================== */

:root {
  /* Couleurs */
  --field:        #1c3a2a;   /* vert champ profond */
  --field-700:    #234a35;
  --leaf:         #4f8a4d;   /* vert feuille */
  --leaf-300:     #7ab06f;
  --wheat:        #c89a3c;   /* accent blé / chaud */
  --wheat-600:    #b07f28;
  --wheat-700:    #8a5e14;   /* gold foncé — texte AA sur fond clair */
  --wheat-300:    #e6c46a;   /* gold clair — texte AA sur fond vert profond */
  --wheat-100:    #f0e2bf;
  --cream:        #f8f3e7;   /* fond crème papier */
  --cream-200:    #efe7d3;
  --paper:        #fffdf7;
  --ink:          #1a2620;   /* texte principal */
  --ink-soft:     #4a564e;   /* texte secondaire */
  --line:         #e3dbc6;   /* filets / bordures */
  --whatsapp:     #25d366;

  /* Typo */
  --font-title: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:  "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Mesures */
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(26,38,32,.05), 0 12px 32px -12px rgba(26,38,32,.18);
  --shadow-sm: 0 1px 2px rgba(26,38,32,.06), 0 4px 14px -8px rgba(26,38,32,.16);
}

/* --- Reset léger --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--field-700); text-decoration-color: var(--wheat); text-underline-offset: 3px; }
a:hover { color: var(--wheat-600); }
h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 600; line-height: 1.12; color: var(--field); letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2em; }
strong { font-weight: 700; color: var(--ink); }

/* --- Utilitaires layout --- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--wheat-700);
  margin: 0 0 1rem;
}
.section-deep .eyebrow { color: var(--wheat-300); } /* gold clair lisible (AA) sur fond vert profond */
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--wheat); display: inline-block; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.muted { color: var(--ink-soft); }

/* --- Boutons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--field); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--field-700); color: #fff; }
.btn-wheat { background: var(--wheat); color: var(--field); }
.btn-wheat:hover { background: var(--wheat-600); color: #fff; }
.btn-ghost { background: transparent; color: var(--field); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--field); color: var(--field); }
.btn-whatsapp { background: var(--whatsapp); color: #07301a; }
.btn-whatsapp:hover { background: #1fbd5a; color: #07301a; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,243,231,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.brand svg { display: block; }
.brand-name { font-family: var(--font-title); font-weight: 600; font-size: 1.4rem; color: var(--field); letter-spacing: -.02em; }
.brand-name b { color: var(--wheat-600); font-weight: 600; }
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 1.4rem; margin: 0; padding: 0; }
.main-nav a {
  font-weight: 600; font-size: .97rem; color: var(--ink); text-decoration: none;
  padding: .4rem 0; position: relative;
}
.main-nav a:hover { color: var(--field); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--wheat); transition: width .18s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: 10px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--field); }

/* ==========================================================================
   Fil d'Ariane
   ========================================================================== */
.breadcrumb { padding-top: 1.1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; font-size: .85rem; color: var(--ink-soft); }
.breadcrumb li { display: flex; align-items: center; gap: .4rem; }
.breadcrumb li + li::before { content: "/"; color: var(--line); }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--field); }
.breadcrumb [aria-current] { color: var(--field); font-weight: 600; }

/* ==========================================================================
   Liste à coches (ce que nous fournissons)
   ========================================================================== */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.checklist li { position: relative; padding-left: 2rem; color: var(--ink-soft); }
.checklist li strong { color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .15rem; width: 22px; height: 22px; border-radius: 50%;
  background: var(--wheat-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a5e14' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
}
.section-deep .checklist li { color: #cdd8c8; }
.section-deep .checklist li strong { color: #fff; }

/* Bloc de maillage interne (liens contextuels) */
.link-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.link-pill {
  display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.1rem; border-radius: 999px;
  background: var(--paper); border: 1.5px solid var(--line); color: var(--field); font-weight: 600; text-decoration: none; font-size: .95rem;
}
.link-pill:hover { border-color: var(--leaf); color: var(--field); transform: translateY(-2px); transition: transform .12s ease; }
.link-pill::after { content: "→"; color: var(--wheat-600); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(122,176,111,.25), transparent 55%),
    radial-gradient(90% 70% at -5% 110%, rgba(200,154,60,.16), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-200) 100%);
}
.hero::after {
  /* texture champ : fines lignes diagonales façon sillons */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: repeating-linear-gradient(115deg, rgba(28,58,42,.035) 0 1px, transparent 1px 26px);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.hero-copy { max-width: 36rem; }
.hero h1 { margin-bottom: .6rem; }
.hero h1 em { font-style: italic; color: var(--leaf); }
.hero-sub { font-size: 1.2rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.5rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.hero-badge { display: flex; align-items: center; gap: .55rem; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.hero-badge svg { width: 20px; height: 20px; color: var(--leaf); flex-shrink: 0; }

/* Quick Answer */
.quick-answer {
  background: var(--field); color: #f3efe2; border-radius: var(--radius);
  padding: 1.1rem 1.3rem; margin: 0 0 1.5rem; position: relative;
  box-shadow: var(--shadow-sm);
}
.quick-answer .qa-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--wheat); margin-bottom: .4rem;
}
.quick-answer p { margin: 0; font-size: 1.02rem; line-height: 1.55; color: #eef2e6; }
.quick-answer strong { color: #fff; }

/* Carte formulaire devis */
.quote-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 1.6rem; position: relative;
}
.quote-card::before {
  content: ""; position: absolute; top: -1px; left: 1.6rem; right: 1.6rem; height: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--wheat)); border-radius: 0 0 4px 4px;
}
.quote-card h2 { font-size: 1.4rem; margin-bottom: .2rem; }
.quote-card .form-note { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.field { margin-bottom: .85rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--field); margin-bottom: .3rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(79,138,77,.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.form-legal { font-size: .78rem; color: var(--ink-soft); margin: .7rem 0 0; }
.form-status { margin: .85rem 0 0; font-size: .92rem; font-weight: 600; line-height: 1.45; }
.form-status[data-kind="ok"] { color: var(--field); background: #eaf3e4; border: 1px solid var(--leaf-300); padding: .7rem .85rem; border-radius: 10px; }
.form-status[data-kind="error"] { color: #8a1c14; background: #fbeceb; border: 1px solid #e3a9a4; padding: .7rem .85rem; border-radius: 10px; }

/* ==========================================================================
   Bandeau de chiffres
   ========================================================================== */
.stats-band { background: var(--field); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: 2.6rem; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-title); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: var(--wheat); line-height: 1; }
.stat .label { font-size: .92rem; color: #d6e0d2; margin-top: .45rem; }

/* ==========================================================================
   Cartes / grilles génériques
   ========================================================================== */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--wheat-100); color: var(--wheat-600); margin-bottom: 1rem;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-soft); margin-bottom: 1rem; font-size: .98rem; }
.card .card-link { margin-top: auto; font-weight: 700; text-decoration: none; color: var(--field); display: inline-flex; align-items: center; gap: .35rem; }
.card .card-link:hover { color: var(--wheat-600); gap: .55rem; }
.card .card-link::after { content: "→"; transition: transform .15s ease; }

.section-head { max-width: 62ch; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; }

/* Section alternée crème/paper */
.section-paper { background: var(--paper); }
.section-deep { background: var(--field-700); color: #eef2e6; }
.section-deep h2, .section-deep h3 { color: #fff; }
.section-deep .lead, .section-deep p { color: #cdd8c8; }

/* ==========================================================================
   Process « Comment ça marche »
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 3.2rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--wheat); color: var(--field); font-family: var(--font-title); font-weight: 600;
  font-size: 1.3rem; display: grid; place-items: center;
}
.step h3 { font-size: 1.12rem; }
.step p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ==========================================================================
   Régions
   ========================================================================== */
.region-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--field); color: #fff; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; text-decoration: none; box-shadow: var(--shadow-sm);
  background-image: linear-gradient(180deg, rgba(28,58,42,.15) 0%, rgba(28,58,42,.92) 85%);
}
.region-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: repeating-linear-gradient(125deg, rgba(255,255,255,.05) 0 2px, transparent 2px 22px);
}
.region-card h3 { color: #fff; margin-bottom: .25rem; }
.region-card span { color: var(--wheat-100); font-size: .92rem; }
.region-card .arrow { margin-top: .8rem; font-weight: 700; color: var(--wheat); }
.region-card:hover { transform: translateY(-3px); transition: transform .15s ease; }

/* ==========================================================================
   Témoignages
   ========================================================================== */
.quote-block { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.testimonial .stars { color: var(--wheat); letter-spacing: 2px; margin-bottom: .7rem; }
.testimonial blockquote { margin: 0 0 1rem; font-size: 1.02rem; color: var(--ink); font-style: normal; }
.testimonial blockquote::before { content: "“"; font-family: var(--font-title); font-size: 2rem; color: var(--leaf-300); line-height: 0; vertical-align: -.3em; margin-right: .15em; }
.testimonial .author { display: flex; align-items: center; gap: .7rem; }
.testimonial .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--field-700); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-title); }
.testimonial .author-name { font-weight: 700; font-size: .95rem; }
.testimonial .author-role { font-size: .85rem; color: var(--ink-soft); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-family: var(--font-title); font-size: 1.15rem; font-weight: 600; color: var(--field);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--wheat-600); font-family: var(--font-body); line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 2.5rem 1.3rem 0; color: var(--ink-soft); }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Guides / articles (contenu GEO)
   ========================================================================== */
.article-hero { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-200) 100%); border-bottom: 1px solid var(--line); }
.article-hero .wrap { padding-block: clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3rem); }
.guide-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; font-size: .88rem; color: var(--ink-soft); margin-top: 1rem; }
.guide-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.article-hero h1 { max-width: 20ch; }
.article-layout { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }
.toc { position: sticky; top: 90px; font-size: .92rem; }
.toc h2 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--wheat-700); margin-bottom: .8rem; }
.toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc li { margin-bottom: .55rem; }
.toc a { color: var(--ink-soft); text-decoration: none; display: block; padding-left: 1.5rem; position: relative; line-height: 1.4; }
.toc a::before { counter-increment: toc; content: counter(toc); position: absolute; left: 0; top: 0; font-family: var(--font-title); color: var(--wheat-600); font-weight: 600; }
.toc a:hover { color: var(--field); }

.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.6rem; scroll-margin-top: 90px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.25rem; margin-top: 1.8rem; }
.prose p, .prose li { color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5rem; }
.prose blockquote { margin: 1.5rem 0; padding: 1rem 1.3rem; border-left: 4px solid var(--leaf); background: var(--paper); border-radius: 0 10px 10px 0; color: var(--ink-soft); }

.callout { background: var(--wheat-100); border: 1px solid var(--wheat-300); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 1.8rem 0; }
.callout strong { color: var(--field); }
.callout p:last-child { margin-bottom: 0; }
.callout .callout-title { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--field); margin-bottom: .4rem; }

.data-table { width: 100%; border-collapse: collapse; margin: 1.6rem 0; font-size: .96rem; }
.data-table th, .data-table td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); }
.data-table thead th { background: var(--field); color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .85rem; letter-spacing: .03em; }
.data-table thead th:first-child { border-radius: 8px 0 0 0; }
.data-table thead th:last-child { border-radius: 0 8px 0 0; }
.data-table tbody tr:nth-child(even) { background: var(--paper); }
.data-table caption { caption-side: bottom; font-size: .82rem; color: var(--ink-soft); margin-top: .6rem; text-align: left; }

.guide-cta { background: var(--field); color: #fff; border-radius: var(--radius-lg); padding: 1.8rem; margin: 2.4rem 0; text-align: center; }
.guide-cta h3 { color: #fff; }
.guide-cta p { color: #d6e0d2; margin-bottom: 1.2rem; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .toc { position: static; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; background: var(--paper); }
  .prose { max-width: 100%; }
}

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-final { background: var(--field); color: #fff; text-align: center; }
.cta-final h2 { color: #fff; }
.cta-final p { color: #d6e0d2; max-width: 52ch; margin-inline: auto; margin-bottom: 1.8rem; }
.cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #14271c; color: #c4d0bd; padding-block: 3.2rem 1.8rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.4rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name b { color: var(--wheat); }
.footer-brand p { font-size: .92rem; margin-top: .8rem; max-width: 30ch; color: #a8b8a0; }
.footer-contact { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .35rem; }
.footer-contact a { color: #fff; text-decoration: none; font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: .45rem; }
.footer-contact a:hover { color: var(--wheat); }
.footer-contact li:first-child a { font-size: 1.15rem; font-family: var(--font-title); }
.footer-col h3 { color: #fff; font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { color: #c4d0bd; text-decoration: none; font-size: .94rem; }
.footer-col a:hover { color: var(--wheat); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #8a9a82; }
.footer-bottom a { color: #8a9a82; }

/* Bouton WhatsApp flottant */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp);
  display: grid; place-items: center; box-shadow: 0 8px 24px -6px rgba(7,48,26,.5);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 32px; height: 32px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .quote-block, .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav.open { display: block; position: absolute; top: 72px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--line); padding: 1rem 1.25rem; }
  .main-nav.open ul { flex-direction: column; gap: .2rem; }
  .main-nav.open a { display: block; padding: .7rem 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
  .grid-3, .grid-2, .quote-block, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* Accessibilité : focus visible & reduced motion */
:focus-visible { outline: 3px solid var(--leaf); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto; } }
