/* ==========================================================================
   AGRO-FITNER SARL — Design system clair, couleurs extraites du flyer officiel
   Vert foncé #0C3D0F · Vert #4C8C2B · Orange #F2540A · Rouge #7A0D0D · Jaune #FBC400
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root{
  --white:#FFFFFF;
  --paper:#F6F9F4;
  --ink:#132712;
  --text:rgba(19,39,18,.68);
  --text-soft:rgba(19,39,18,.5);
  --line:rgba(19,39,18,.1);
  --gray-light:#D9E3D6;

  --green-dark:#0C3D0F;
  --green:#4C8C2B;
  --green-light:#EAF4E4;
  --orange:#F2540A;
  --orange-deep:#C7420A;
  --red:#7A0D0D;
  --yellow:#FBC400;

  --grad-green: linear-gradient(135deg,#071F08 0%,#0C3D0F 55%,#4C8C2B 100%);
  --grad-orange: linear-gradient(135deg,var(--orange) 0%,var(--orange-deep) 100%);
  --grad-line: linear-gradient(90deg,var(--orange),var(--green));

  --font-display:'Oswald', sans-serif;
  --font-body:'Manrope', sans-serif;

  --container: 1240px;
  --radius: 18px;
  --ease: cubic-bezier(.22,1,.36,1);
  --shadow-sm: 0 2px 10px rgba(12,61,15,.07);
  --shadow-md: 0 20px 44px rgba(12,61,15,.14);
  --shadow-orange: 0 14px 34px -10px rgba(242,84,10,.45);
  --shadow-green: 0 14px 34px -10px rgba(12,61,15,.35);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
html,body{ background:var(--white); }
body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }
::selection{ background:var(--orange); color:var(--white); }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }

/* Empêche les enfants de grille de forcer un débordement horizontal (piège min-width:auto) */
.hero__grid > *, .about-split > *, .page-hero__grid > *, .contact-grid > *,
.footer__grid > *, .pillars > *, .product-grid > *, .atouts > *,
.legal-grid > *, .stats-band__grid > *, .steps > *, .cta-band__inner > *,
.gallery-grid > *, .format-grid > *, .model-grid > *{ min-width:0; }

h1,h2,h3,h4{ font-family:var(--font-display); text-transform:uppercase; letter-spacing:.01em; line-height:1.12; font-weight:600; color:var(--ink); }
h1{ font-size:clamp(2.6rem,6vw,5.2rem); font-weight:700; }
h2{ font-size:clamp(1.9rem,4vw,3.1rem); }
h3{ font-size:1.35rem; }
p{ color:var(--text); }

.grad-text{
  background:linear-gradient(160deg,var(--orange),var(--green-dark) 75%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-size:.78rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--orange-deep); margin-bottom:16px; font-weight:600;
}
.eyebrow::before{ content:''; width:26px; height:2px; background:var(--grad-line); }
.eyebrow--light{ color:var(--white); }
.eyebrow--center{ justify-content:center; }
.eyebrow--center::before{ display:none; }

.section{ position:relative; padding:120px 0; }
.section--tight{ padding:80px 0; }
.section--alt{ background:var(--paper); }
.section-head{ max-width:680px; margin-bottom:64px; }
.section-head--center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ font-size:1.08rem; margin-top:18px; }

/* ---------- grain + glow decoration ---------- */
.grain{
  position:fixed; inset:0; z-index:2; pointer-events:none; opacity:.015; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.glow-orb{ position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; z-index:0; opacity:.22; }

/* ---------- preloader ---------- */
.preloader{
  position:fixed; inset:0; z-index:9999; background:var(--white);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:22px;
  transition:opacity .7s var(--ease), visibility .7s var(--ease);
}
.preloader.is-done{ opacity:0; visibility:hidden; }
.preloader__mark{ width:80px; height:80px; object-fit:contain; animation:pulse-mark 1.6s ease-in-out infinite; }
.preloader__bar{ width:180px; height:2px; background:var(--line); border-radius:2px; overflow:hidden; }
.preloader__bar span{ display:block; height:100%; width:0%; background:var(--grad-line); animation:load-bar 1.4s var(--ease) forwards; }
@keyframes pulse-mark{ 0%,100%{ transform:scale(1); opacity:1; } 50%{ transform:scale(1.08); opacity:.75; } }
@keyframes load-bar{ to{ width:100%; } }

/* ---------- logo ---------- */
.af-logo{ display:flex; align-items:center; gap:14px; }
.af-logo__img{ height:42px; width:auto; object-fit:contain; flex-shrink:0; }
.af-logo__text{ display:flex; flex-direction:column; justify-content:center; line-height:1.15; padding-left:14px; border-left:1px solid var(--line); }
.af-logo__slogan{ font-size:.76rem; color:var(--text-soft); font-style:italic; max-width:180px; }

/* ---------- top bar + navbar ---------- */
.top-bar{ background:var(--green-dark); color:rgba(255,255,255,.85); font-size:.78rem; padding:8px 0; }
.top-bar__inner{ display:flex; align-items:center; gap:22px; }
.top-bar__inner span{ display:flex; align-items:center; gap:6px; }
.top-bar__sep{ padding-left:22px; border-left:1px solid rgba(255,255,255,.2); }
.top-bar a:hover{ color:var(--yellow); }

.navbar{ position:sticky; top:0; left:0; right:0; z-index:1000; padding:16px 0; transition:all .45s var(--ease); }
.navbar::before{
  content:''; position:absolute; inset:0; background:rgba(255,255,255,.9); backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line); box-shadow:var(--shadow-sm);
}
.navbar__inner{ display:flex; align-items:center; justify-content:space-between; position:relative; z-index:2; }

.navbar__nav{ display:flex; align-items:center; gap:6px; }
.nav-link{
  position:relative; padding:10px 16px; font-weight:600; color:var(--ink);
  font-family:var(--font-display); text-transform:uppercase; letter-spacing:.04em; font-size:.82rem;
}
.nav-link::after{
  content:''; position:absolute; left:16px; right:16px; bottom:4px; height:2px; background:var(--grad-line);
  transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after{ transform:scaleX(1); }
.nav-link.active{ color:var(--orange-deep); }

.btn{
  display:inline-flex; align-items:center; gap:9px; padding:13px 26px; border-radius:100px;
  font-family:var(--font-display); font-weight:600; font-size:.82rem; text-transform:uppercase; letter-spacing:.05em;
  border:1px solid transparent; transition:all .35s var(--ease); white-space:nowrap;
}
.btn--nav{ background:var(--grad-orange); color:var(--white); margin-left:14px; }
.btn--nav:hover{ transform:translateY(-2px); box-shadow:var(--shadow-orange); }
.btn--primary{ background:var(--grad-orange); color:var(--white); }
.btn--primary:hover{ transform:translateY(-2px); box-shadow:var(--shadow-orange); }
.btn--green{ background:var(--grad-green); color:var(--white); }
.btn--green:hover{ transform:translateY(-2px); box-shadow:var(--shadow-green); }
.btn--ghost{ background:var(--white); color:var(--ink); border-color:var(--line); }
.btn--ghost:hover{ background:var(--paper); border-color:var(--gray-light); }
.btn--outline-light{ border-color:rgba(255,255,255,.5); color:#fff; }
.btn--outline-light:hover{ background:#fff; color:var(--green-dark); }
.btn--lg{ padding:16px 34px; font-size:.88rem; }
.btn--sm{ padding:9px 18px; font-size:.75rem; }
.btn--whatsapp{ background:#25D366; color:#fff; }
.btn--whatsapp:hover{ transform:translateY(-2px); box-shadow:0 12px 30px -10px rgba(37,211,102,.55); }
.mt-2{ margin-top:14px; }

.nav-social{ display:none; }

.navbar__burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; z-index:1200; padding:6px; }
.navbar__burger span{ width:26px; height:2px; background:var(--ink); border-radius:2px; transition:all .35s var(--ease); }
.navbar__burger.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.navbar__burger.active span:nth-child(2){ opacity:0; }
.navbar__burger.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.nav-overlay{ position:fixed; inset:0; background:rgba(12,61,15,.35); backdrop-filter:blur(4px); z-index:990; opacity:0; visibility:hidden; transition:all .4s var(--ease); }
.nav-overlay.active{ opacity:1; visibility:visible; }

/* ==========================================================================
   HERO (accueil)
   ========================================================================== */
.hero{ position:relative; min-height:92vh; display:flex; align-items:center; padding:80px 0; overflow:hidden; isolation:isolate; }
.hero__bg{ position:absolute; inset:0; z-index:-2; background:radial-gradient(ellipse 90% 60% at 50% 0%, #EAF4E4 0%, var(--white) 62%); }
.hero__canvas{ position:absolute; inset:0; z-index:-1; opacity:.7; }
.hero__orb-a{ width:520px; height:520px; background:var(--green); top:-140px; right:-120px; }
.hero__orb-b{ width:420px; height:420px; background:var(--yellow); bottom:-140px; left:-100px; opacity:.25; }

.hero__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; position:relative; z-index:2; }
.hero__kicker{ display:flex; align-items:center; gap:10px; margin-bottom:26px; }
.hero__kicker-line{ width:40px; height:2px; background:var(--grad-line); }
.hero__kicker span{ font-family:var(--font-display); font-size:.8rem; letter-spacing:.24em; text-transform:uppercase; color:var(--orange-deep); }

.hero__title{ font-size:clamp(2.6rem,5.6vw,4.4rem); color:var(--ink); max-width:100%; }
.hero__title .line{ display:block; overflow:hidden; max-width:100%; }
.hero__title .line span{ display:inline-block; max-width:100%; overflow-wrap:break-word; transform:translateY(110%); animation:line-up .9s var(--ease) forwards; }
.hero__title .line:nth-child(2) span{ animation-delay:.12s; }
@keyframes line-up{ to{ transform:translateY(0); } }

.hero__subtitle{ margin-top:26px; font-size:1.08rem; max-width:540px; color:var(--text); }
.hero__actions{ display:flex; gap:16px; margin-top:42px; flex-wrap:wrap; }

.hero__stats{ display:flex; gap:36px; margin-top:56px; flex-wrap:wrap; }
.hero__stat b{ display:block; font-family:var(--font-display); font-size:2rem; color:var(--green-dark); }
.hero__stat span{ font-size:.76rem; color:var(--text-soft); text-transform:uppercase; letter-spacing:.06em; }

.hero__visual{ position:relative; height:540px; display:flex; align-items:center; justify-content:center; }
.hero__visual img{ max-height:500px; max-width:100%; width:auto; object-fit:contain; filter:drop-shadow(0 40px 60px rgba(12,61,15,.25)); animation:float-y 6s ease-in-out infinite; }
@keyframes float-y{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-16px); } }
.hero__ring{ position:absolute; inset:20px; border:1px solid var(--line); border-radius:50%; animation:spin 40s linear infinite; }
@keyframes spin{ to{ transform:rotate(360deg); } }

.hero__badge{
  position:absolute; padding:14px 18px; border-radius:14px; background:rgba(255,255,255,.9);
  border:1px solid var(--line); backdrop-filter:blur(14px); display:flex; align-items:center; gap:10px;
  animation:float-y 5s ease-in-out infinite; box-shadow:var(--shadow-md);
}
.hero__badge--1{ top:8%; right:-2%; animation-delay:.4s; }
.hero__badge--2{ bottom:12%; left:-6%; animation-delay:1.1s; }
.hero__badge svg{ color:var(--orange); flex-shrink:0; }
.hero__badge strong{ display:block; font-size:.82rem; color:var(--ink); }
.hero__badge span{ font-size:.72rem; color:var(--text-soft); }

.hero__scroll{ position:absolute; bottom:26px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; z-index:3; }
.hero__scroll span{ font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:var(--text-soft); font-family:var(--font-display); }
.hero__scroll-line{ width:1px; height:36px; background:linear-gradient(var(--orange),transparent); position:relative; overflow:hidden; }
.hero__scroll-line::after{ content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--green); animation:scroll-cue 1.8s ease-in-out infinite; }
@keyframes scroll-cue{ to{ top:100%; } }

/* marquee */
.marquee{ position:relative; padding:20px 0; background:var(--green-dark); border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08); overflow:hidden; }
.marquee__track{ display:flex; width:max-content; gap:0; animation:marquee 26s linear infinite; }
.marquee:hover .marquee__track{ animation-play-state:paused; }
.marquee span{ display:flex; align-items:center; gap:14px; padding:0 30px; font-family:var(--font-display); font-size:1rem; text-transform:uppercase; letter-spacing:.05em; color:rgba(255,255,255,.85); white-space:nowrap; }
.marquee span::after{ content:'•'; color:var(--yellow); margin-left:30px; }
@keyframes marquee{ to{ transform:translateX(-50%); } }

/* ==========================================================================
   PRODUCT PILLARS (accueil : 2 gammes)
   ========================================================================== */
.pillars{ display:grid; grid-template-columns:repeat(var(--cols,2),1fr); gap:28px; }
.pillar-card{
  position:relative; padding:0; border-radius:var(--radius); background:var(--white);
  border:1px solid var(--line); overflow:hidden; transition:transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow:var(--shadow-sm);
}
.pillar-card:hover{ transform:translateY(-10px); border-color:rgba(242,84,10,.4); box-shadow:var(--shadow-md); }
.pillar-card__media{ position:relative; aspect-ratio:16/10; background:radial-gradient(circle at 50% 42%, var(--green-light) 0%, #fff 74%); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.pillar-card__media img{ max-width:78%; max-height:78%; object-fit:contain; transition:transform .6s var(--ease), opacity .3s ease; }
.pillar-card:hover .pillar-card__media img{ transform:scale(1.08); }
.pillar-card__tag{ position:absolute; top:16px; left:16px; padding:6px 14px; border-radius:100px; background:var(--grad-orange); color:#fff; font-family:var(--font-display); font-size:.7rem; text-transform:uppercase; letter-spacing:.05em; }
.pillar-card__colors{
  position:absolute; bottom:14px; right:14px; display:flex; align-items:center; gap:6px;
  padding:7px 12px; border-radius:100px; background:rgba(255,255,255,.92); box-shadow:var(--shadow-sm);
  font-family:var(--font-display); font-size:.66rem; text-transform:uppercase; letter-spacing:.02em; color:var(--ink);
}
.pillar-card__colors-dot{ width:11px; height:11px; border-radius:50%; box-shadow:0 0 0 1px var(--line); }
.pillar-card__body{ padding:32px; }
.pillar-card h3{ margin-bottom:10px; color:var(--ink); }
.pillar-card p{ font-size:.95rem; margin-bottom:20px; }
.pillar-card__link{ display:inline-flex; align-items:center; gap:8px; font-family:var(--font-display); font-size:.82rem; text-transform:uppercase; letter-spacing:.05em; color:var(--green-dark); }
.pillar-card__link svg{ transition:transform .35s var(--ease); }
.pillar-card:hover .pillar-card__link svg{ transform:translateX(5px); }

/* ==========================================================================
   VIDEO BAND (spot publicitaire, accueil)
   ========================================================================== */
.video-band{ position:relative; padding:56px 0 64px; background:var(--grad-green); overflow:hidden; }
.video-band::before{
  content:''; position:absolute; width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(251,196,0,.25), transparent 70%);
  top:-320px; left:50%; transform:translateX(-50%); pointer-events:none;
}
.video-band__inner{ position:relative; z-index:1; text-align:center; }
.video-band h2{ color:#fff; margin-top:8px; }
.video-band p{ color:rgba(255,255,255,.75); max-width:520px; margin:14px auto 0; }
.video-player{
  position:relative; max-width:860px; margin:36px auto 0; border-radius:var(--radius); overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.4); border:4px solid rgba(255,255,255,.12); aspect-ratio:16/9; background:#000;
}
.video-player video{ width:100%; height:100%; object-fit:cover; display:block; }

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats-band{ position:relative; padding:64px 0; background:var(--grad-green); }
.stats-band__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; }
.stat b{ display:block; font-family:var(--font-display); font-size:clamp(2.1rem,4vw,3rem); color:#fff; }
.stat span{ display:block; margin-top:8px; font-size:.83rem; color:rgba(255,255,255,.78); }

/* ==========================================================================
   ATOUTS
   ========================================================================== */
.atouts{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.atout-card{ text-align:center; padding:44px 28px; border-radius:var(--radius); background:var(--white); border:1px solid var(--line); transition:transform .5s var(--ease), box-shadow .5s var(--ease); box-shadow:var(--shadow-sm); }
.atout-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); }
.atout-card__icon{ width:72px; height:72px; border-radius:50%; margin:0 auto 22px; display:flex; align-items:center; justify-content:center; background:conic-gradient(from 180deg, var(--orange), var(--green), var(--orange)); position:relative; }
.atout-card__icon::before{ content:''; position:absolute; inset:3px; border-radius:50%; background:var(--white); }
.atout-card__icon svg{ position:relative; z-index:1; color:var(--green-dark); }
.atout-card h3{ color:var(--ink); margin-bottom:10px; }
.atout-card p{ font-size:.92rem; }

/* ==========================================================================
   ABOUT split
   ========================================================================== */
.about-split{ display:grid; grid-template-columns:.85fr 1.15fr; gap:64px; align-items:center; }
.about-frame{ position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:4/5; background:var(--grad-green); display:flex; align-items:center; justify-content:center; border:1px solid var(--line); box-shadow:var(--shadow-md); }
.about-frame img{ width:100%; height:100%; object-fit:cover; }
.about-frame__badge{ position:absolute; bottom:-24px; right:-24px; background:var(--white); border:1px solid var(--line); padding:22px 26px; border-radius:16px; text-align:center; box-shadow:var(--shadow-md); }
.about-frame__badge b{ display:block; font-family:var(--font-display); font-size:2rem; color:var(--orange-deep); }
.about-frame__badge span{ font-size:.72rem; color:var(--text-soft); text-transform:uppercase; letter-spacing:.05em; }
.about-split p{ margin-top:20px; font-size:1.03rem; }
.about-list{ margin-top:30px; display:flex; flex-direction:column; gap:14px; }
.about-list li{ display:flex; align-items:center; gap:12px; font-size:.95rem; color:var(--ink); }
.about-list svg{ color:var(--orange); flex-shrink:0; }

/* ==========================================================================
   PAGE HERO (pages internes)
   ========================================================================== */
.page-hero{ position:relative; padding:150px 0 90px; overflow:hidden; isolation:isolate; background:radial-gradient(ellipse 80% 60% at 50% -10%, #EAF4E4 0%, var(--white) 65%); }
.page-hero__crumb{ display:flex; align-items:center; gap:8px; font-size:.85rem; color:var(--text-soft); margin-bottom:22px; }
.page-hero__crumb a{ color:var(--green-dark); }
.page-hero__crumb a:hover{ color:var(--orange-deep); }
.page-hero__grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:40px; align-items:center; position:relative; z-index:2; }
.page-hero h1{ font-size:clamp(2.3rem,5vw,3.6rem); }
.page-hero p{ margin-top:20px; font-size:1.05rem; max-width:640px; }
.page-hero__visual{ position:relative; display:flex; justify-content:center; }
.page-hero__visual img{ max-width:100%; max-height:420px; object-fit:contain; filter:drop-shadow(0 30px 50px rgba(12,61,15,.22)); animation:float-y 6s ease-in-out infinite; transition:opacity .3s ease; }

.hero-colors-badge{
  position:absolute; bottom:6%; left:50%; transform:translateX(-50%); display:flex; align-items:center; gap:8px;
  padding:10px 18px; border-radius:100px; background:rgba(255,255,255,.92); box-shadow:var(--shadow-md);
  font-family:var(--font-display); font-size:.76rem; text-transform:uppercase; letter-spacing:.03em; color:var(--ink);
  white-space:nowrap;
}
.hero-colors-badge__dot{ width:14px; height:14px; border-radius:50%; box-shadow:0 0 0 1px var(--line); }
.page-hero__tags{ display:flex; gap:10px; flex-wrap:wrap; margin-top:28px; }
.tag{ padding:8px 16px; border-radius:100px; font-size:.78rem; font-family:var(--font-display); text-transform:uppercase; letter-spacing:.04em; background:var(--paper); border:1px solid var(--line); color:var(--text); }

/* ==========================================================================
   QUALITES / CARACTERISTIQUES row
   ========================================================================== */
.feature-row{ display:flex; flex-wrap:wrap; gap:16px; }
.feature-chip{ display:flex; align-items:center; gap:10px; padding:14px 20px; border-radius:14px; background:var(--white); border:1px solid var(--line); box-shadow:var(--shadow-sm); font-size:.88rem; font-weight:600; color:var(--ink); }
.feature-chip__icon{ width:36px; height:36px; border-radius:10px; background:var(--green-light); color:var(--green-dark); display:flex; align-items:center; justify-content:center; flex-shrink:0; }

/* ==========================================================================
   FORMAT / MODEL cards (fiches produit)
   ========================================================================== */
.format-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.format-card{ border-radius:var(--radius); background:var(--white); border:1px solid var(--line); box-shadow:var(--shadow-sm); text-align:center; transition:transform .4s var(--ease), box-shadow .4s var(--ease); overflow:hidden; }
.format-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.format-card__media{ aspect-ratio:4/3; background:radial-gradient(circle at 50% 42%, var(--green-light) 0%, #fff 74%); display:flex; align-items:center; justify-content:center; padding:24px; }
.format-card__media img{ max-width:100%; max-height:100%; object-fit:contain; transition:transform .5s var(--ease); }
.format-card:hover .format-card__media img{ transform:scale(1.06); }
.format-card__body{ padding:28px 32px 32px; }
.format-card__badge{ display:inline-block; padding:8px 20px; border-radius:100px; background:var(--grad-orange); color:#fff; font-family:var(--font-display); font-size:1.1rem; margin-bottom:16px; }
.format-card p{ font-size:.92rem; }

/* ---------- types (manuel / électrique) ---------- */
.type-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.type-card{ border-radius:var(--radius); background:var(--white); border:1px solid var(--line); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .4s var(--ease), box-shadow .4s var(--ease); }
.type-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.type-card__media{ aspect-ratio:16/11; overflow:hidden; background:var(--paper); }
.type-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.type-card:hover .type-card__media img{ transform:scale(1.06); }
.type-card__body{ padding:32px; }
.type-card__tag{ display:inline-block; padding:6px 14px; border-radius:100px; background:var(--green-light); color:var(--green-dark); font-family:var(--font-display); font-size:.72rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:12px; }
.type-card h3{ font-size:1.3rem; margin-bottom:6px; color:var(--ink); }
.type-card__tagline{ font-size:.9rem; color:var(--orange-deep); font-weight:600; margin-bottom:14px; }
.type-card p{ font-size:.92rem; }
.type-card ul{ margin-top:18px; display:flex; flex-direction:column; gap:11px; }
.type-card li{ display:flex; gap:10px; align-items:flex-start; font-size:.88rem; color:var(--ink); }
.type-card li svg{ color:var(--green); flex-shrink:0; margin-top:2px; }

.model-grid{ display:grid; grid-template-columns:repeat(var(--cols,3),1fr); gap:26px; }
.model-card{ border-radius:var(--radius); background:var(--white); border:1px solid var(--line); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .4s var(--ease), box-shadow .4s var(--ease); display:flex; flex-direction:column; }
.model-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); }
.model-card__media{ position:relative; aspect-ratio:1/1; background:radial-gradient(circle at 50% 40%, var(--green-light) 0%, var(--paper) 78%); display:flex; align-items:center; justify-content:center; padding:20px; }
.model-card__media img{ max-width:100%; max-height:100%; object-fit:contain; transition:transform .5s var(--ease), opacity .3s ease; }
.model-card:hover .model-card__media img{ transform:scale(1.06); }
.model-card__cap{ position:absolute; top:14px; right:14px; padding:5px 12px; border-radius:100px; background:var(--green-dark); color:#fff; font-family:var(--font-display); font-size:.72rem; letter-spacing:.03em; }
.model-card__body{ padding:24px; flex:1; display:flex; flex-direction:column; }
.model-card__type{ font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color:var(--orange-deep); font-family:var(--font-display); font-weight:600; margin-bottom:6px; }
.model-card h3{ font-size:1.15rem; margin-bottom:10px; color:var(--ink); }
.model-card p{ font-size:.88rem; margin-bottom:14px; }
.color-swatches{ display:flex; align-items:center; gap:8px; margin:14px 0 4px; flex-wrap:wrap; }
.color-swatches__label{ font-size:.74rem; color:var(--text-soft); margin-left:2px; }
.color-swatch{ width:24px; height:24px; border-radius:50%; border:2px solid var(--white); box-shadow:0 0 0 1px var(--line); cursor:pointer; padding:0; flex-shrink:0; transition:box-shadow .2s, transform .2s; }
.color-swatch:hover{ transform:scale(1.12); }
.color-swatch.active{ box-shadow:0 0 0 1px var(--white), 0 0 0 3px var(--ink); }
.color-swatch--vert{ background:#4C8C2B; }
.color-swatch--jaune{ background:#FBC400; }
.color-swatch--bleu{ background:#2E6FE0; }

.model-card__points{ margin-top:auto; display:flex; flex-direction:column; gap:8px; padding-top:14px; border-top:1px solid var(--line); }
.model-card__points li{ display:flex; gap:8px; font-size:.82rem; color:var(--text); }
.model-card__points svg{ color:var(--green); flex-shrink:0; margin-top:2px; }

/* ---------- carte vedette : pulvérisateur + accessoires côte à côte ---------- */
.model-card--featured{ box-shadow:var(--shadow-md); border-color:rgba(242,84,10,.25); }
.model-card__media--split{ aspect-ratio:auto; padding:0; background:var(--white); display:grid; grid-template-columns:1.3fr 1fr; align-items:stretch; gap:0; }
.model-card__media-main{ padding:24px; max-width:100%; max-height:340px; margin:auto; }
.model-card__media-acc{ position:relative; background:radial-gradient(circle at 50% 38%, var(--green-light) 0%, var(--paper) 78%); border-left:1px solid var(--line); display:flex; align-items:center; justify-content:center; padding:16px; }
.model-card__media-acc img{ max-width:100%; max-height:300px; object-fit:contain; transition:opacity .3s ease; }
.model-card__media-acc-label{
  position:absolute; top:12px; left:12px; padding:5px 12px; border-radius:100px; background:var(--grad-orange);
  color:#fff; font-family:var(--font-display); font-size:.66rem; text-transform:uppercase; letter-spacing:.04em; z-index:1;
}
.model-card__acc-note{ display:flex; gap:8px; align-items:flex-start; font-size:.84rem; color:var(--text); background:var(--green-light); border-radius:10px; padding:10px 14px; margin:4px 0 14px; }
.model-card__acc-note svg{ color:var(--green); flex-shrink:0; margin-top:2px; }

@media (min-width:781px){
  .model-card--featured{ flex-direction:row; }
  .model-card--featured .model-card__media--split{ flex:0 0 58%; }
  .model-card--featured .model-card__body{ flex:1; }
}
@media (max-width:780px){
  .model-card__media--split{ grid-template-columns:1fr; }
  .model-card__media-acc{ border-left:none; border-top:1px solid var(--line); }
}

/* ==========================================================================
   AVANTAGES list + Effet avant/après
   ========================================================================== */
.avantages-list{ display:flex; flex-direction:column; gap:16px; }
.avantages-list li{ display:flex; gap:14px; align-items:flex-start; padding:18px 22px; border-radius:14px; background:var(--white); border:1px solid var(--line); box-shadow:var(--shadow-sm); }
.avantages-list svg{ color:var(--orange); flex-shrink:0; margin-top:2px; }
.avantages-list span{ font-size:.95rem; color:var(--ink); font-weight:500; }

.slogan-band{ background:linear-gradient(120deg,var(--red),#9A1414); padding:26px 20px; text-align:center; }
.slogan-band p{ color:#fff; font-family:var(--font-display); font-size:clamp(1.1rem,2.6vw,1.6rem); text-transform:uppercase; letter-spacing:.03em; font-weight:600; margin:0; }
.slogan-band p em{ font-style:normal; color:var(--yellow); }

.effet-compare{ display:grid; grid-template-columns:1fr 1fr; gap:4px; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); position:relative; }
.effet-compare__item{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.effet-compare__item img{ width:100%; height:100%; object-fit:cover; }
.effet-compare__label{ position:absolute; top:16px; left:16px; padding:8px 18px; border-radius:100px; font-family:var(--font-display); font-size:.85rem; text-transform:uppercase; letter-spacing:.04em; color:#fff; }
.effet-compare__label--avant{ background:rgba(12,61,15,.85); }
.effet-compare__label--apres{ background:var(--red); }
.effet-compare__arrow{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:2; width:56px; height:56px;
  border-radius:50%; background:var(--yellow); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md);
}
.effet-badge{ margin-top:24px; text-align:center; }
.effet-badge b{ display:block; font-family:var(--font-display); font-size:1.3rem; color:var(--green-dark); }

/* ==========================================================================
   ACCESSOIRE OFFERT
   ========================================================================== */
.offer-box{ display:grid; grid-template-columns:auto 1fr; gap:32px; align-items:center; padding:36px 40px; border-radius:var(--radius); background:linear-gradient(120deg, rgba(76,140,43,.1), rgba(242,84,10,.08)); border:1px solid var(--line); }
.offer-box__img{ width:140px; height:140px; object-fit:contain; }
.offer-box__tag{ display:inline-block; padding:6px 16px; border-radius:100px; background:var(--grad-orange); color:#fff; font-family:var(--font-display); font-size:.72rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:10px; }
.offer-box h4{ font-size:1.2rem; color:var(--ink); margin-bottom:6px; }

/* ==========================================================================
   GALLERY mosaïque (accessoires / usage)
   ========================================================================== */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:150px; gap:16px; }
.gallery-item{ position:relative; border-radius:16px; overflow:hidden; box-shadow:var(--shadow-sm); background:radial-gradient(circle at 50% 42%, var(--green-light) 0%, var(--paper) 78%); }
.gallery-item--a{ grid-column:1/3; grid-row:1/3; }
.gallery-item--b{ grid-column:3/5; grid-row:1/2; }
.gallery-item--c{ grid-column:3/4; grid-row:2/3; }
.gallery-item--d{ grid-column:4/5; grid-row:2/3; }
.gallery-item img{ width:100%; height:100%; object-fit:contain; padding:18px; transition:transform .6s var(--ease); display:block; }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item__caption{ position:absolute; left:0; right:0; bottom:0; padding:14px 16px; color:#fff; background:linear-gradient(to top, rgba(12,61,15,.85), transparent); font-family:var(--font-display); font-size:.74rem; text-transform:uppercase; letter-spacing:.04em; opacity:0; transform:translateY(6px); transition:all .35s var(--ease); }
.gallery-item:hover .gallery-item__caption{ opacity:1; transform:translateY(0); }

/* showcase / certification box */
.certif-box{ margin-top:50px; padding:36px 40px; border-radius:var(--radius); display:flex; align-items:center; gap:26px; background:linear-gradient(120deg, rgba(12,61,15,.08), rgba(251,196,0,.15)); border:1px solid var(--line); }
.certif-box svg{ color:var(--orange-deep); flex-shrink:0; }
.certif-box h4{ font-family:var(--font-display); text-transform:uppercase; color:var(--ink); margin-bottom:6px; font-size:1.05rem; }
.certif-box p{ font-size:.92rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:50px; }
.contact-cards{ display:flex; flex-direction:column; gap:18px; }
.contact-card{ display:flex; gap:18px; padding:26px; border-radius:16px; background:var(--white); border:1px solid var(--line); transition:border-color .35s, box-shadow .35s; box-shadow:var(--shadow-sm); }
.contact-card:hover{ border-color:rgba(242,84,10,.4); box-shadow:var(--shadow-md); }
.contact-card__icon{ width:48px; height:48px; border-radius:12px; background:var(--grad-orange); color:var(--white); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-card h4{ font-family:var(--font-display); text-transform:uppercase; font-size:.95rem; color:var(--ink); margin-bottom:6px; }
.contact-card p, .contact-card a{ font-size:.92rem; color:var(--text); }
.contact-card a:hover{ color:var(--orange-deep); }

.contact-form{ padding:44px; border-radius:var(--radius); background:var(--white); border:1px solid var(--line); box-shadow:var(--shadow-md); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.form-group{ margin-bottom:20px; }
.form-group label{ display:block; font-size:.82rem; text-transform:uppercase; letter-spacing:.05em; font-family:var(--font-display); color:var(--text-soft); margin-bottom:8px; }
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding:14px 16px; border-radius:10px; background:var(--paper); border:1px solid var(--line);
  color:var(--ink); font-family:var(--font-body); font-size:.95rem; transition:border-color .3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{ outline:none; border-color:var(--orange); background:var(--white); }
.form-group textarea{ resize:vertical; min-height:120px; }
.form-submit{ width:100%; justify-content:center; margin-top:6px; }
.form-success{ display:none; align-items:center; gap:10px; margin-top:16px; padding:14px 18px; border-radius:10px; background:rgba(37,211,102,.1); border:1px solid rgba(37,211,102,.35); color:#1B6B1F; font-size:.88rem; }
.form-success.show{ display:flex; }

/* ---------- Quote modal ---------- */
.quote-modal{ position:fixed; inset:0; z-index:2000; display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; visibility:hidden; transition:opacity .35s var(--ease), visibility .35s var(--ease); }
.quote-modal.active{ opacity:1; visibility:visible; }
.quote-modal__backdrop{ position:absolute; inset:0; background:rgba(12,61,15,.55); backdrop-filter:blur(6px); }
.quote-modal__panel{ position:relative; z-index:1; width:100%; max-width:580px; max-height:90vh; overflow-y:auto; background:var(--white); border-radius:var(--radius); padding:44px; box-shadow:0 40px 90px rgba(12,61,15,.4); transform:translateY(24px) scale(.97); transition:transform .35s var(--ease); }
.quote-modal.active .quote-modal__panel{ transform:translateY(0) scale(1); }
.quote-modal__close{ position:absolute; top:18px; right:18px; width:36px; height:36px; border-radius:50%; background:var(--paper); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; color:var(--ink); transition:background .2s; }
.quote-modal__close:hover{ background:var(--line); }
.quote-modal__mark{ height:36px; width:auto; object-fit:contain; }
.quote-modal__head{ margin-bottom:26px; }
.quote-modal__head h3{ margin-top:8px; font-size:1.6rem; }
.quote-modal__head p{ margin-top:10px; font-size:.92rem; }

/* ==========================================================================
   CTA BAND + FOOTER
   ========================================================================== */
.cta-band{ position:relative; padding:100px 0; overflow:hidden; background:var(--grad-green); }
.cta-band__glow{ position:absolute; width:700px; height:700px; background:radial-gradient(circle, rgba(251,196,0,.3), transparent 70%); top:-300px; left:50%; transform:translateX(-50%); }
.cta-band__inner{ position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta-band h2{ margin-top:14px; color:#fff; }
.cta-band__actions{ display:flex; gap:16px; flex-wrap:wrap; }

.footer{ background:var(--green-dark); padding-top:70px; }
.footer .footer__heading{ color:#fff; }
.footer__grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:50px; }
.footer__desc{ font-size:.9rem; margin:18px 0 22px; max-width:320px; color:rgba(255,255,255,.65); }
.footer__social{ display:flex; gap:12px; }
.footer__social a{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.1); color:#fff; display:flex; align-items:center; justify-content:center; transition:background .3s; }
.footer__social a:hover{ background:var(--orange); }
.footer__heading{ font-family:var(--font-display); text-transform:uppercase; font-size:.85rem; letter-spacing:.08em; margin-bottom:20px; }
.footer__heading--mt{ margin-top:26px; }
.footer__links{ display:flex; flex-direction:column; gap:12px; }
.footer__links a{ font-size:.92rem; color:rgba(255,255,255,.65); transition:color .3s; }
.footer__links a:hover{ color:var(--yellow); }
.footer__addr{ display:flex; gap:10px; font-size:.88rem; color:rgba(255,255,255,.65); margin-bottom:6px; }
.footer__contact-list{ display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
.footer__contact-list li{ display:flex; gap:10px; align-items:center; font-size:.9rem; color:rgba(255,255,255,.85); }
.footer__contact-list a{ color:rgba(255,255,255,.85); display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.footer__contact-list a:hover{ color:var(--yellow); }
.footer__tag{ font-size:.68rem; text-transform:uppercase; letter-spacing:.04em; color:rgba(255,255,255,.45); }
.footer__bottom{ border-top:1px solid rgba(255,255,255,.12); padding:24px 0; }
.footer__bottom-inner{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; font-size:.8rem; color:rgba(255,255,255,.5); }
.footer .af-logo__text{ border-left-color:rgba(255,255,255,.2); }
.footer .af-logo__slogan{ color:rgba(255,255,255,.65); }

.whatsapp-float{ position:fixed; bottom:26px; right:26px; width:58px; height:58px; border-radius:50%; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; z-index:900; box-shadow:0 12px 30px -8px rgba(37,211,102,.5); animation:wa-pulse 2.4s ease-in-out infinite; }
@keyframes wa-pulse{ 0%,100%{ box-shadow:0 12px 30px -8px rgba(37,211,102,.5); } 50%{ box-shadow:0 12px 34px -4px rgba(37,211,102,.75); } }

.back-to-top{ position:fixed; bottom:26px; right:96px; width:48px; height:48px; border-radius:50%; background:var(--white); border:1px solid var(--line); color:var(--ink); display:flex; align-items:center; justify-content:center; z-index:900; opacity:0; visibility:hidden; transform:translateY(10px); transition:all .35s var(--ease); box-shadow:var(--shadow-md); }
.back-to-top.visible{ opacity:1; visibility:visible; transform:translateY(0); }

/* ==========================================================================
   REVEAL utility
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(36px); transition:opacity .8s var(--ease), transform .8s var(--ease); transition-delay:var(--d,0s); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-scale{ opacity:0; transform:scale(.92); transition:opacity .8s var(--ease), transform .8s var(--ease); transition-delay:var(--d,0s); }
.reveal-scale.in{ opacity:1; transform:scale(1); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1080px){
  .hero__grid, .about-split, .page-hero__grid, .contact-grid{ grid-template-columns:1fr; }
  .hero__visual{ height:340px; order:-1; }
  .pillars{ grid-template-columns:1fr 1fr; }
  .atouts, .legal-grid, .model-grid{ grid-template-columns:1fr 1fr; }
  .stats-band__grid{ grid-template-columns:1fr 1fr; row-gap:36px; }
  .footer__grid{ grid-template-columns:1fr 1fr; }
  .format-grid, .type-grid{ grid-template-columns:1fr; }
  .offer-box{ grid-template-columns:1fr; text-align:center; justify-items:center; }
  .top-bar__inner{ font-size:.72rem; gap:14px; flex-wrap:wrap; }
  .top-bar__sep{ padding-left:14px; }
}

@media (max-width:860px){
  .navbar__nav{
    position:fixed; top:0; right:0; height:100vh; width:min(360px,84vw); background:var(--white);
    flex-direction:column; align-items:flex-start; padding:110px 34px 40px; gap:4px;
    transform:translateX(100%); transition:transform .5s var(--ease); z-index:1100; overflow-y:auto;
    border-left:1px solid var(--line); box-shadow:var(--shadow-md);
  }
  .navbar__nav.active{ transform:translateX(0); }
  .nav-link{ width:100%; padding:14px 0; border-bottom:1px solid var(--line); }
  .btn--nav{ margin:20px 0 0; }
  .navbar__burger{ display:flex; }
  .nav-social{ display:block; margin-top:30px; }
  .nav-social__label{ font-size:.75rem; text-transform:uppercase; letter-spacing:.08em; color:var(--text-soft); }
  .nav-social__links{ display:flex; gap:12px; margin-top:12px; }
  .nav-social__btn{ width:40px; height:40px; border-radius:50%; background:var(--paper); color:var(--ink); display:flex; align-items:center; justify-content:center; }
}

@media (max-width:640px){
  .pillars, .atouts, .footer__grid, .stats-band__grid, .legal-grid, .model-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .cta-band__inner{ flex-direction:column; align-items:flex-start; }
  .hero__stats{ gap:24px; }
  .contact-form{ padding:28px; }
  .certif-box{ flex-direction:column; text-align:center; }
  .gallery-grid{ grid-template-columns:1fr; grid-auto-rows:200px; }
  .gallery-item--a, .gallery-item--b, .gallery-item--c, .gallery-item--d{ grid-column:1/2; grid-row:auto; }
  .effet-compare{ grid-template-columns:1fr; }
  .quote-modal__panel{ padding:30px 24px; }
  .top-bar{ display:none; }
}
