/* ═══════════════════════════════════════════════
   ENERGIE KA — Main Stylesheet
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --g: #88ba51; --g-dk: #5f8e2d; --g-lt: #b5d880; --g-tint: rgba(136,186,81,.08);
  --ink: #0f120d; --white: #fbfcf9; --cream: #f3f6ee; --mist: #e6ece0;
  --muted: #6b7a62; --border: #dde5d4;
  --font-h: 'Montserrat', sans-serif; --font-b: 'Jost', sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-b); background: var(--white); color: var(--ink); overflow-x: hidden; }
.h2 { word-break: break-word; overflow-wrap: break-word; }
body::after {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .018; pointer-events: none; z-index: 9900;
}
a { text-decoration: none; color: inherit; } ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 18px 60px; padding-top: max(18px, env(safe-area-inset-top)); display: flex; align-items: center; justify-content: space-between; background: rgba(251,252,249,.99); backdrop-filter: blur(22px); border-bottom: 1px solid var(--border); box-shadow: 0 1px 18px rgba(15,18,13,.06); }
.nav.stuck { padding: 14px 60px; padding-top: max(14px, env(safe-area-inset-top)); }
.logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .78rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); position: relative; transition: color .25s; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--g); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-wa { display: flex; align-items: center; gap: 6px; background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.35); color: #1a7a35; padding: 8px 16px; border-radius: 100px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; transition: background .25s, transform .25s; }
.nav-wa::after { display: none !important; }
.nav-wa:hover { background: rgba(37,211,102,.22); transform: translateY(-1px); }
.nav-wa svg { width: 14px; height: 14px; color: #25D366; }
.nav-cta { background: var(--ink) !important; color: white !important; padding: 10px 22px; border-radius: 100px; font-weight: 600 !important; transition: background .25s, transform .25s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--g) !important; transform: translateY(-2px); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 800; display: flex; align-items: center; gap: 9px; background: #25D366; color: white; padding: 13px 22px; border-radius: 100px; font-family: var(--font-h); font-weight: 500; font-size: .8rem; letter-spacing: .04em; box-shadow: 0 6px 28px rgba(37,211,102,.45); transition: transform .3s var(--ease), box-shadow .3s; text-decoration: none; animation: waPulse 2.8s ease-in-out infinite; }
.wa-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 42px rgba(37,211,102,.6); }
.wa-float svg { width: 18px; height: 18px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
  50% { box-shadow: 0 8px 38px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ── UTILITIES ── */
.wrap { padding: 110px 60px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--g-dk); margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--g); }
.h2 { font-family: var(--font-h); font-size: clamp(2.2rem,3.4vw,3.6rem); font-weight: 400; line-height: 1.02; letter-spacing: -.02em; color: var(--ink); }
.h2 i { font-style: italic; color: var(--g); }
.lead { font-size: 1rem; line-height: 1.8; color: var(--muted); }
.btn-g { display: inline-flex; align-items: center; gap: 9px; background: var(--g); color: white; padding: 16px 32px; border-radius: 100px; font-family: var(--font-h); font-size: .85rem; font-weight: 700; letter-spacing: .04em; transition: background .25s, transform .3s var(--ease), box-shadow .3s; position: relative; overflow: hidden; }
.btn-g::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,255,255,.18) 0%,transparent 55%); pointer-events: none; }
.btn-g:hover { background: var(--g-dk); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(136,186,81,.38); }
.btn-link { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; font-weight: 500; color: var(--muted); transition: color .25s, gap .25s var(--ease); }
.btn-link:hover { color: var(--ink); gap: 12px; }
.btn-link svg { width: 16px; height: 16px; }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: white; padding: 15px 28px; border-radius: 100px; font-family: var(--font-h); font-size: .85rem; font-weight: 700; letter-spacing: .04em; transition: background .25s, transform .3s var(--ease), box-shadow .3s; }
.btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,.4); }
.btn-wa svg { width: 18px; height: 18px; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.2); color: white; padding: 15px 28px; border-radius: 100px; font-family: var(--font-h); font-size: .85rem; font-weight: 700; letter-spacing: .04em; transition: border-color .25s, background .25s, transform .3s var(--ease); }
.btn-outline:hover { border-color: var(--g); background: rgba(136,186,81,.1); transform: translateY(-2px); }

/* ── SCROLL REVEAL ── */
.r { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.r.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── FOOTER ── */
footer { background: var(--cream); padding: 60px 60px 34px; }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 26px; }
.foot-brand p { font-size: .875rem; line-height: 1.78; color: var(--muted); margin-top: 14px; max-width: 260px; }
.foot-col h5 { font-family: var(--font-h); font-size: .66rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a { font-size: .875rem; color: var(--muted); transition: color .25s; }
.foot-col ul a:hover { color: var(--g); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.foot-bottom p { font-size: .78rem; color: #9aab8a; }
.foot-bottom a { color: var(--g); }

/* ═══════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════ */

@keyframes up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lineUp { to { opacity: 1; transform: translateY(0); } }

/* ── HERO ── */
.hero { display: grid; grid-template-columns: 52% 48%; min-height: 100vh; overflow: hidden; }
.hero-l { padding: 160px 64px 100px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; background: var(--white); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--g-dk); margin-bottom: 32px; opacity: 0; animation: up .7s var(--ease) .2s forwards; }
.hero-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--g); }
.hero-h1 { font-family: var(--font-h); font-size: clamp(2.6rem,4.4vw,4.8rem); font-weight: 400; line-height: 1.12; letter-spacing: -.02em; color: var(--ink); margin-bottom: 28px; }
.hero-h1 .row { overflow: hidden; display: block; padding-bottom: .12em; margin-bottom: -.12em; }
.hero-h1 .row span { display: block; opacity: 0; transform: translateY(110%); }
.hero-h1 .row:nth-child(1) span { animation: lineUp .85s var(--ease) .42s forwards; }
.hero-h1 .row:nth-child(2) span { animation: lineUp .85s var(--ease) .56s forwards; }
.hero-h1 .row:nth-child(3) span { animation: lineUp .85s var(--ease) .70s forwards; }
.hero-h1 mark { background: none; color: var(--g); font-style: italic; }
.hero-desc { font-size: 1rem; line-height: 1.78; color: var(--muted); max-width: 400px; margin-bottom: 44px; opacity: 0; transform: translateY(18px); animation: up .8s var(--ease) .9s forwards; }
.hero-actions { display: flex; align-items: center; gap: 18px; opacity: 0; transform: translateY(18px); animation: up .8s var(--ease) 1.05s forwards; }
.hero-stats { display: flex; align-items: center; margin-top: auto; padding-top: 44px; opacity: 0; animation: up .8s var(--ease) 1.3s forwards; }
.hstat { flex: 1; padding: 0 24px 0 0; border-right: 1px solid var(--mist); }
.hstat:first-child { padding-left: 0; }
.hstat:last-child { border-right: none; }
.hstat-n { font-family: var(--font-h); font-size: 1.7rem; font-weight: 400; color: var(--ink); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 6px; display: flex; align-items: baseline; gap: 2px; }
.hstat-n span { color: var(--g); }
.hstat-l { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.hero-cert-logos { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 20px; margin-top: 20px; opacity: 0; animation: up .8s var(--ease) 1.45s forwards; }
.hero-cert-logos img { height: 76px; width: auto; object-fit: contain; filter: grayscale(10%); transition: filter .25s, transform .25s; }
.hero-cert-logos img:hover { filter: grayscale(0%); transform: scale(1.05); }
.hero-r { position: relative; overflow: hidden; background: var(--ink); }
.hero-r img { position: absolute; inset: 0; filter: brightness(.9) saturate(1.05); transform: scale(1); object-fit: cover; object-position: center center; }
.hero-r::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg,rgba(136,186,81,.12) 0%,rgba(15,18,13,.2) 100%); }
.hero-photo-label { position: absolute; bottom: 32px; left: 28px; z-index: 3; background: rgba(15,18,13,.55); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 14px 18px; color: white; opacity: 0; animation: up .8s var(--ease) 1.6s forwards; }
.hpl-lbl { font-size: .6rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.45); margin-bottom: 3px; }
.hpl-val { font-family: var(--font-h); font-size: 1.2rem; font-weight: 300; color: var(--g-lt); }
.badge-rot { position: absolute; bottom: 32px; right: 32px; z-index: 3; width: 90px; height: 90px; opacity: 0; animation: up .8s var(--ease) 2s forwards; }
.badge-rot svg { animation: spin 15s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.badge-rot-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.badge-rot-center svg { width: 22px; height: 22px; color: var(--g); }

/* ── MARQUEE ── */
.marquee { background: var(--g); padding: 16px 0; overflow: hidden; }
.marquee-inner { display: flex; width: max-content; animation: mscroll 22s linear infinite; }
.marquee-item { padding: 0 24px; display: inline-flex; align-items: center; gap: 16px; font-family: var(--font-h); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.9); white-space: nowrap; }
.marquee-dot { width: 4px; height: 4px; background: rgba(255,255,255,.4); border-radius: 50%; }
@keyframes mscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES BENTO ── */
.services-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 52px; }
.bento { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 320px 260px; gap: 16px; }
.bcard { border-radius: 28px; overflow: hidden; position: relative; transition: transform .45s var(--ease), box-shadow .45s; }
.bcard:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,.12); }
.b-pac { grid-column: 1/3; grid-row: 1; }
.b-clim { grid-column: 3; grid-row: 1/3; }
.b-conf { grid-column: 1/3; grid-row: 2; }
.bcard-img { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.bcard:hover .bcard-img { transform: scale(1.05); }
.bcard-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,14,8,.8) 0%,rgba(10,14,8,.2) 50%,transparent 100%); }
.bcard-overlay-g { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(136,186,81,.22) 0%,rgba(10,14,8,.7) 100%); }
.bcard-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px 28px; z-index: 2; color: white; }
.bcard-tag { display: inline-block; background: rgba(136,186,81,.25); border: 1px solid rgba(136,186,81,.5); color: var(--g-lt); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 8px; }
.bcard-title { font-family: var(--font-h); font-size: 1.35rem; font-weight: 400; letter-spacing: -.01em; margin-bottom: 6px; }
.bcard-desc { font-size: .8rem; line-height: 1.65; color: rgba(255,255,255,.68); }
.bcard-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: .78rem; font-weight: 400; color: var(--g-lt); transition: gap .25s var(--ease); }
.bcard-link:hover { gap: 10px; }
.bcard-light { background: var(--cream); }
.bcard-body-light { position: absolute; inset: 0; padding: 26px 26px; display: flex; flex-direction: column; justify-content: space-between; }
.bcard-icon { width: 46px; height: 46px; background: var(--g); border-radius: 13px; display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease); }
.bcard:hover .bcard-icon { transform: rotate(-8deg) scale(1.1); }
.bcard-icon svg { width: 22px; height: 22px; color: white; }
.bcard-title-l { font-family: var(--font-h); font-size: 1.15rem; font-weight: 400; letter-spacing: -.01em; color: var(--ink); margin-bottom: 6px; }
.bcard-desc-l { font-size: .8rem; line-height: 1.65; color: var(--muted); }
.bcard-llink { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; font-weight: 400; color: var(--g-dk); transition: gap .25s var(--ease); }
.bcard-llink:hover { gap: 9px; }

/* ── CERTIFICATIONS (home) ── */
.cert-sec { background: var(--cream); padding: 90px 60px; }
.cert-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
.cert-cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 48px; padding: 28px 32px; background: var(--white); border: 1px solid var(--border); border-radius: 18px; }
.cert-cta-text { font-size: .88rem; line-height: 1.7; color: var(--muted); flex: 1; min-width: 200px; }
.cert-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 40px; }
.cert-card { background: var(--white); border-radius: 28px; padding: 40px 34px; border: 2px solid var(--border); transition: border-color .3s, transform .35s var(--ease), box-shadow .35s; }
.cert-card:hover { border-color: var(--g); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(136,186,81,.15); }
.cert-seal { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 100px; background: var(--g); margin-bottom: 24px; box-shadow: 0 4px 16px rgba(136,186,81,.28); width: auto; height: auto; }
.cert-seal svg { width: 13px; height: 13px; flex-shrink: 0; color: rgba(255,255,255,.9); }
.cert-seal span { font-family: var(--font-h); font-weight: 700; font-size: .75rem; color: white; letter-spacing: .08em; text-transform: uppercase; line-height: 1; white-space: nowrap; }
.cert-seal.dark { background: var(--ink); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.cert-card h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 300; letter-spacing: -.01em; color: var(--ink); margin-bottom: 10px; }
.cert-card p { font-size: .855rem; line-height: 1.72; color: var(--muted); margin-bottom: 16px; }
.cert-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-tag { display: inline-block; background: var(--g-tint); border: 1px solid var(--border); color: var(--g-dk); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.cert-footer { background: var(--g); border-radius: 18px; padding: 22px 30px; display: flex; align-items: center; gap: 14px; color: white; }
.cert-footer svg { width: 22px; height: 22px; flex-shrink: 0; }
.cert-footer p { font-size: .875rem; line-height: 1.6; }
.cert-footer strong { font-weight: 700; }

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; overflow: hidden; }
.split-photo { position: relative; overflow: hidden; }
.split-photo img { position: absolute; inset: 0; }
.split-content { background: var(--white); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }

/* ── STATS ── */
.stats-sec { background: var(--ink); padding: 90px 60px; position: relative; overflow: hidden; }
.stats-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 20% 50%,rgba(136,186,81,.14) 0%,transparent 55%),radial-gradient(ellipse at 80% 20%,rgba(136,186,81,.06) 0%,transparent 45%); }
.stats-inner { position: relative; z-index: 1; }
.stats-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; }
.stats-top .h2 { color: white; }
.stats-top .eyebrow { color: var(--g-lt); }
.stats-top .eyebrow::before { background: var(--g-lt); }
.stats-top-r { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.38); max-width: 280px; }
.stats-head { text-align: center; margin-bottom: 64px; }
.stats-head .h2 { color: white; }
.stats-head .eyebrow { color: var(--g-lt); justify-content: center; }
.stats-head .eyebrow::before { background: var(--g-lt); }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.stat { padding: 48px 36px; border-right: 1px solid rgba(255,255,255,.07); border-top: 2px solid rgba(136,186,81,.25); transition: background .3s, border-top-color .3s; }
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(136,186,81,.05); border-top-color: var(--g); }
.stat-n { font-family: var(--font-h); font-size: clamp(2.2rem,3.2vw,3.8rem); font-weight: 400; line-height: 1.05; letter-spacing: -.02em; color: white; margin-bottom: 14px; display: flex; align-items: baseline; gap: 3px; flex-wrap: wrap; }
.stat-n em { color: var(--g); font-style: normal; font-size: .62em; letter-spacing: 0; }
.stat-lbl { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.stat-sub { margin-top: 8px; font-size: .78rem; line-height: 1.6; color: rgba(255,255,255,.25); }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.process-photo { border-radius: 28px; overflow: hidden; height: 580px; position: sticky; top: 100px; }
.step-list { display: flex; flex-direction: column; }
.pstep { padding: 26px 0; border-bottom: 1px solid var(--mist); display: grid; grid-template-columns: 50px 1fr; gap: 18px; align-items: start; transition: padding .3s var(--ease); }
.pstep:last-child { border-bottom: none; }
.pstep:hover { padding-left: 6px; }
.psn { font-family: var(--font-h); font-size: .68rem; font-weight: 500; letter-spacing: .12em; color: var(--g); padding-top: 3px; text-transform: uppercase; }
.pstep h4 { font-family: var(--font-h); font-size: 1rem; font-weight: 300; letter-spacing: -.01em; margin-bottom: 7px; color: var(--ink); }
.pstep p { font-size: .85rem; line-height: 1.75; color: var(--muted); }

/* ── ADVANTAGES ── */
.adv-band { background: var(--g); padding: 60px; }
.adv-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; }
.adv { display: flex; flex-direction: column; gap: 10px; }
.adv-ic { width: 44px; height: 44px; background: rgba(255,255,255,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.adv-ic svg { width: 20px; height: 20px; color: white; }
.adv h4 { font-family: var(--font-h); font-size: .95rem; font-weight: 300; color: white; letter-spacing: 0; }
.adv p { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.72); }

/* ── BRANDS ── */
.brands-sec { padding: 56px 60px; background: var(--paper); border-top: 1px solid rgba(0,0,0,.07); border-bottom: 1px solid rgba(0,0,0,.07); }
.brands-inner { max-width: 1100px; margin: 0 auto; }
.brands-heading { display: flex; align-items: center; gap: 20px; margin-bottom: 44px; }
.brands-heading::before, .brands-heading::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,.1); }
.brands-heading span { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.brands-logos { display: flex; align-items: center; justify-content: space-around; gap: 40px; flex-wrap: wrap; }
.brands-logos img { height: 80px; width: auto; max-width: 200px; object-fit: contain; transition: transform .3s var(--ease), opacity .3s; }
.brands-logos img:hover { transform: scale(1.08); opacity: .8; }

/* ── TESTIMONIALS ── */
.testi-wrap { background: var(--cream); padding: 90px 60px; }
.testi-head { margin-bottom: 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tc { background: var(--white); border-radius: 22px; padding: 34px 30px; transition: transform .35s var(--ease), box-shadow .35s; }
.tc:nth-child(2) { margin-top: 32px; }
.tc:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(0,0,0,.08); }
.tc-stars { color: var(--g); font-size: .9rem; margin-bottom: 14px; letter-spacing: 2px; }
.tc-quote { font-size: .88rem; line-height: 1.82; color: #4e5a46; font-style: italic; margin-bottom: 22px; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av { width: 40px; height: 40px; border-radius: 50%; background: var(--g); color: white; font-family: var(--font-h); font-weight: 400; font-size: .85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tc-name { font-size: .85rem; font-weight: 700; color: var(--ink); }
.tc-role { font-size: .75rem; color: var(--muted); }

/* ── MINI CTA ── */
.mini-cta { background: var(--ink); padding: 80px 60px; position: relative; overflow: hidden; text-align: center; }
.mini-cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%,rgba(136,186,81,.18) 0%,transparent 60%); }
.mini-cta-inner { position: relative; z-index: 1; }
.mini-cta .h2 { color: white; margin-bottom: 18px; }
.mini-cta .lead { color: rgba(255,255,255,.5); max-width: 520px; margin: 0 auto 36px; }
.mini-cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; }

/* ── ZONES ── */
.zones-section { background: var(--cream); padding: 80px 60px; }
.zones-inner { max-width: 1100px; margin: 0 auto; }
.zones-head { text-align: center; margin-bottom: 52px; }
.zones-head .lead { max-width: 560px; margin: 16px auto 0; }
.zones-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.zone-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 22px 20px; display: flex; flex-direction: column; gap: 4px; transition: border-color .25s, box-shadow .25s; }
.zone-card:hover { border-color: var(--g); box-shadow: 0 6px 24px rgba(136,186,81,.12); }
.zone-dep { font-family: var(--font-h); font-size: .68rem; font-weight: 500; color: var(--g); letter-spacing: .1em; background: rgba(136,186,81,.1); padding: 3px 9px; border-radius: 100px; width: fit-content; margin-bottom: 4px; }
.zone-card strong { font-family: var(--font-h); font-size: .92rem; font-weight: 400; color: var(--ink); }
.zone-card span { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════
   INNER PAGES — PAGE HERO
   ═══════════════════════════════════════════════ */

.page-hero { background: var(--ink); padding: 160px 60px 100px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%,rgba(136,186,81,.18) 0%,transparent 60%); }
.page-hero img { position: absolute; inset: 0; opacity: .12; filter: grayscale(1); }
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero .eyebrow { color: var(--g-lt); }
.page-hero .eyebrow::before { background: var(--g-lt); }
.page-hero .h2 { color: white; font-size: clamp(3rem,5vw,5.2rem); }
.page-hero .lead { color: rgba(255,255,255,.5); margin-top: 18px; }

/* About page hero — 2-column with photo */
.page-hero--about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.page-hero--about .page-hero-inner { max-width: none; }
.page-hero-photo { position: relative; z-index: 1; height: 420px; border-radius: 28px; overflow: hidden; }
.page-hero-photo img { border-radius: 28px; position: static; opacity: 1; filter: none; }
.page-hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(136,186,81,.15) 0%,transparent 60%); border-radius: 28px; }

/* ═══════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════ */

.svc-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; overflow: hidden; }
.svc-section.reverse { direction: rtl; }
.svc-section.reverse > * { direction: ltr; }
.svc-photo { position: relative; overflow: hidden; }
.svc-photo img { position: absolute; inset: 0; transition: transform .8s var(--ease); }
.svc-section:hover .svc-photo img { transform: scale(1.04); }
.svc-photo-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(136,186,81,.15) 0%,rgba(10,14,8,.3) 100%); }
.svc-content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.svc-content.bg-cream { background: var(--cream); }
.svc-content.bg-white { background: var(--white); }
.svc-content.bg-dark { background: var(--ink); }
.svc-content.bg-dark .h2 { color: white; }
.svc-content.bg-dark .eyebrow { color: var(--g-lt); }
.svc-content.bg-dark .eyebrow::before { background: var(--g-lt); }
.svc-content.bg-dark .lead { color: rgba(255,255,255,.5); }
.svc-content.bg-dark .svc-benefits li { color: rgba(255,255,255,.65); }
.svc-content.bg-dark .svc-benefits li::before { background: var(--g-lt); }
.svc-num { font-family: var(--font-h); font-size: 5rem; font-weight: 300; color: var(--g); opacity: .2; line-height: 1; letter-spacing: -.02em; margin-bottom: -10px; }
.svc-content.bg-dark .svc-num { color: var(--g-lt); }
.svc-benefits { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.svc-benefits li { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--muted); }
.svc-benefits li::before { content: ''; width: 6px; height: 6px; background: var(--g); border-radius: 50%; flex-shrink: 0; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.svc-tag { background: var(--g-tint); border: 1px solid var(--border); color: var(--g-dk); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.svc-content.bg-dark .svc-tag { background: rgba(136,186,81,.1); border-color: rgba(136,186,81,.25); color: var(--g-lt); }
.svc-price { display: inline-flex; align-items: baseline; gap: 6px; margin-top: 24px; margin-bottom: 4px; }
.svc-price-from { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.svc-price-val { font-family: var(--font-h); font-size: 1.6rem; font-weight: 300; color: var(--ink); letter-spacing: -.02em; }
.svc-content.bg-dark .svc-price-val { color: white; }
.svc-content.bg-dark .svc-price-from { color: rgba(255,255,255,.4); }
.svc-price-note { font-size: .72rem; color: var(--muted); }

/* AIDS */
.aids-sec { background: var(--g); padding: 80px 60px; }
.aids-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.aids-l .h2 { color: white; }
.aids-l .h2 i { color: rgba(255,255,255,.75); }
.aids-l .eyebrow { color: rgba(255,255,255,.7); }
.aids-l .eyebrow::before { background: rgba(255,255,255,.5); }
.aids-l .lead { color: rgba(255,255,255,.72); margin-top: 16px; }
.aids-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.aid-card { background: rgba(255,255,255,.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 28px 24px; color: white; }
.aid-card h4 { font-family: var(--font-h); font-size: .95rem; font-weight: 300; margin-bottom: 8px; }
.aid-card p { font-size: .82rem; line-height: 1.65; color: rgba(255,255,255,.72); }
.aid-amount { font-family: var(--font-h); font-size: 1.6rem; font-weight: 300; color: white; letter-spacing: -.02em; margin-top: 10px; }

/* CTA STRIP */
.cta-strip { background: var(--ink); padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-strip-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%,rgba(136,186,81,.18) 0%,transparent 60%); }
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip .h2 { color: white; margin-bottom: 16px; }
.cta-strip .lead { color: rgba(255,255,255,.45); max-width: 480px; margin: 0 auto 36px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */

.story { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-photo { border-radius: 28px; overflow: hidden; height: 500px; position: relative; }
.story-photo img { border-radius: 28px; }
.story-year { font-family: var(--font-h); font-size: 5rem; font-weight: 300; color: var(--g); opacity: .25; line-height: 1; letter-spacing: -.02em; margin-bottom: -16px; }
.story-content p { font-size: .95rem; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }
.story-content p:last-of-type { margin-bottom: 28px; }

.values { background: var(--cream); padding: 100px 60px; }
.values-head { text-align: center; margin-bottom: 64px; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.vcard { background: var(--white); border-radius: 24px; padding: 36px 28px; border: 2px solid var(--border); transition: border-color .3s, transform .35s var(--ease), box-shadow .35s; }
.vcard:hover { border-color: var(--g); transform: translateY(-5px); box-shadow: 0 18px 48px rgba(136,186,81,.12); }
.vcard-ico { width: 52px; height: 52px; border-radius: 15px; background: var(--g); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: transform .3s var(--ease); }
.vcard:hover .vcard-ico { transform: rotate(-8deg) scale(1.08); }
.vcard-ico svg { width: 24px; height: 24px; color: white; }
.vcard h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 300; letter-spacing: -.01em; color: var(--ink); margin-bottom: 10px; }
.vcard p { font-size: .85rem; line-height: 1.72; color: var(--muted); }

.certs { padding: 100px 60px; background: var(--white); }
.certs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.certs-content .h2 { margin-bottom: 20px; }
.certs-content .lead { margin-bottom: 36px; }
.cert-list { display: flex; flex-direction: column; gap: 0; }
.cert-item { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--mist); align-items: flex-start; transition: padding .25s var(--ease); }
.cert-item:last-child { border-bottom: none; }
.cert-item:hover { padding-left: 6px; }
.cert-badge-sm { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 100px; background: var(--g); font-family: var(--font-h); font-weight: 700; font-size: .68rem; color: white; line-height: 1; flex-shrink: 0; width: auto; height: auto; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.cert-badge-sm svg { width: 11px; height: 11px; flex-shrink: 0; color: rgba(255,255,255,.9); }
.cert-badge-sm.dark { background: var(--ink); }
.cert-item-name { font-family: var(--font-h); font-size: .95rem; font-weight: 300; color: var(--ink); margin-bottom: 5px; }
.cert-item-desc { font-size: .82rem; line-height: 1.65; color: var(--muted); }
.cert-item-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.cert-item-tag { background: var(--g-tint); border: 1px solid var(--border); color: var(--g-dk); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
.certs-visual { position: relative; }
.certs-photo { border-radius: 28px; overflow: hidden; height: 480px; }
.certs-photo img { border-radius: 28px; }
.cert-float { position: absolute; bottom: -20px; left: -20px; background: var(--ink); border-radius: 20px; padding: 22px 26px; color: white; box-shadow: 0 16px 48px rgba(0,0,0,.25); }
.cert-float-title { font-family: var(--font-h); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.cert-float-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.cert-float-dot { width: 8px; height: 8px; background: var(--g); border-radius: 50%; flex-shrink: 0; }
.cert-float-val { font-size: .85rem; font-weight: 300; color: white; }

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */

.contact-methods { padding: 80px 60px 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.cmethod { border-radius: 24px; padding: 36px 30px; display: flex; flex-direction: column; gap: 16px; transition: transform .35s var(--ease), box-shadow .35s; }
.cmethod:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.cmethod-email { background: var(--cream); border: 2px solid var(--border); }
.cmethod-email:hover { border-color: var(--g); }
.cmethod-wa { background: #f0fdf4; border: 2px solid #bbf7d0; }
.cmethod-wa:hover { border-color: #25D366; box-shadow: 0 20px 50px rgba(37,211,102,.15); }
.cmethod-ico { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.cmethod-ico-g { background: var(--g); }
.cmethod-ico-wa { background: #25D366; }
.cmethod-ico svg { width: 24px; height: 24px; color: white; }
.cmethod h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 300; letter-spacing: -.01em; color: var(--ink); }
.cmethod .cmethod-val { font-family: var(--font-h); font-size: 1.3rem; font-weight: 200; color: var(--ink); letter-spacing: -.02em; }
.cmethod-wa .cmethod-val { color: #15803d; }
.cmethod p { font-size: .82rem; line-height: 1.65; color: var(--muted); }
.cmethod-btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 20px; border-radius: 100px; font-family: var(--font-h); font-size: .78rem; font-weight: 700; letter-spacing: .04em; width: fit-content; transition: transform .25s var(--ease), box-shadow .25s; }
.cmethod-btn-g { background: var(--g); color: white; }
.cmethod-btn-g:hover { background: var(--g-dk); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(136,186,81,.35); }
.cmethod-btn-wa { background: #25D366; color: white; }
.cmethod-btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.35); }
.cmethod-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(37,211,102,.12); color: #15803d; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }

.contact-main { padding: 60px 60px 100px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact-info h3 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 300; letter-spacing: -.02em; color: var(--ink); margin-bottom: 14px; }
.contact-info .lead { margin-bottom: 36px; }
.info-rows { display: flex; flex-direction: column; gap: 0; }
.info-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--mist); align-items: flex-start; }
.info-row:last-child { border-bottom: none; }
.info-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--g-tint); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-ico svg { width: 18px; height: 18px; color: var(--g-dk); }
.info-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-val { font-family: var(--font-h); font-size: .95rem; font-weight: 400; color: var(--ink); }
.info-val a { color: var(--ink); transition: color .25s; }
.info-val a:hover { color: var(--g); }
.info-sub { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.rge-strip { margin-top: 32px; background: var(--ink); border-radius: 18px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; color: white; }
.rge-strip-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 100px; background: var(--g); font-family: var(--font-h); font-weight: 700; font-size: .7rem; color: white; text-align: center; flex-shrink: 0; line-height: 1; width: auto; height: auto; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.rge-strip-badge svg { width: 12px; height: 12px; color: rgba(255,255,255,.9); }
.rge-strip p { font-size: .82rem; line-height: 1.6; color: rgba(255,255,255,.65); }
.rge-strip strong { color: white; }

.form-wrap { background: var(--ink); border-radius: 32px; padding: 44px; }
.form-wrap h3 { font-family: var(--font-h); font-size: 1.4rem; font-weight: 300; color: white; margin-bottom: 5px; }
.form-wrap .sub { font-size: .78rem; color: rgba(255,255,255,.3); margin-bottom: 30px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 7px; }
.fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg2 label { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea, .fg2 input { width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 11px; padding: 14px 16px; color: white; font-family: var(--font-b); font-size: .875rem; outline: none; transition: border-color .25s, background .25s; -webkit-appearance: none; }
.fg input::placeholder, .fg2 input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.25); }
.fg input:focus, .fg select:focus, .fg textarea:focus, .fg2 input:focus { border-color: var(--g); background: rgba(136,186,81,.06); }
.fg select { cursor: pointer; color: rgba(255,255,255,.5); }
.fg select option { background: #1a1f18; }
.fg textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; border: none; cursor: pointer; background: var(--g); color: white; padding: 16px; border-radius: 11px; font-family: var(--font-h); font-size: .88rem; font-weight: 700; letter-spacing: .04em; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 6px; transition: background .25s, transform .3s var(--ease), box-shadow .3s; }
.form-submit svg { width: 14px; height: 14px; }
.form-submit:hover { background: var(--g-dk); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(136,186,81,.38); }
.form-note { font-size: .72rem; color: rgba(255,255,255,.28); text-align: center; margin-top: 10px; line-height: 1.6; }

.wa-banner { background: #f0fdf4; border: 2px solid #bbf7d0; border-radius: 24px; padding: 36px 44px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
/* Dans la grille contact : pleine largeur, 2ème rangée */
.contact-wa-banner { grid-column: 1 / -1; margin: 0; }
.wa-banner-l { display: flex; align-items: center; gap: 20px; }
.wa-banner-ico { width: 60px; height: 60px; background: #25D366; border-radius: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-banner-ico svg { width: 30px; height: 30px; color: white; }
.wa-banner h3 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 300; color: var(--ink); margin-bottom: 5px; }
.wa-banner p { font-size: .85rem; color: var(--muted); }
.wa-banner-btn { display: inline-flex; align-items: center; gap: 9px; background: #25D366; color: white; padding: 15px 28px; border-radius: 100px; font-family: var(--font-h); font-size: .85rem; font-weight: 700; letter-spacing: .04em; white-space: nowrap; transition: background .25s, transform .3s var(--ease), box-shadow .3s; }
.wa-banner-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.35); }
.wa-banner-btn svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media(max-width:1100px) {
  .nav, .nav.stuck { padding-left: 32px; padding-right: 32px; }
  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-r { height: 50vw; min-height: 300px; }
  .hero-l { padding: 140px 32px 80px; }
  /* Inner sections */
  .wrap, .cert-sec, .stats-sec, .testi-wrap, .adv-band, .mini-cta, .brands-sec { padding-left: 32px; padding-right: 32px; }
  .zones-section { padding-left: 32px; padding-right: 32px; }
  .services-head, .cert-head { grid-template-columns: 1fr; gap: 12px; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 220px; }
  .b-pac { grid-column: 1/3; grid-row: 1; } .b-clim { grid-column: 1; grid-row: 2; } .b-conf { grid-column: 2; grid-row: 2; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-photo { height: 42vw; min-height: 260px; }
  .stats-top { flex-direction: column; align-items: flex-start; gap: 14px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat { padding: 38px 24px; }
  .process-grid { grid-template-columns: 1fr; gap: 44px; }
  .process-photo { position: static; height: 340px; }
  .adv-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .tc:nth-child(3) { display: none; }
  footer { padding-left: 32px; padding-right: 32px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  /* Services */
  .page-hero { padding: 120px 32px 70px; }
  .page-hero .h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
  .aids-sec, .cta-strip { padding-left: 32px; padding-right: 32px; }
  .svc-section { grid-template-columns: 1fr; }
  .svc-section.reverse { direction: ltr; }
  .svc-photo { height: 50vw; min-height: 280px; }
  .svc-content { padding: 60px 36px; }
  .aids-inner { grid-template-columns: 1fr; gap: 40px; }
  /* About */
  .page-hero--about { grid-template-columns: 1fr; }
  .page-hero-photo { display: none; }
  .story, .certs-inner { grid-template-columns: 1fr; gap: 44px; }
  .story-photo { height: 320px; }
  .certs-photo { height: 340px; }
  .cert-float { left: 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .story, .values, .certs, .team, .cta-strip { padding-left: 32px; padding-right: 32px; }
  /* Contact */
  .contact-methods, .contact-main, .wa-banner { padding-left: 32px; padding-right: 32px; }
  .wa-banner { margin-left: 32px; margin-right: 32px; }
  .contact-main { grid-template-columns: 1fr; gap: 44px; }
}

@media(max-width:680px) {
  .nav-links { display: none; } .burger { display: flex; }

  /* ── Hero ── */
  .hero-l { padding: 100px 20px 60px; }
  .hero-h1 { font-size: clamp(1.75rem, 8.5vw, 2.2rem); }
  .hero-desc { font-size: .92rem; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-r { height: 55vw; min-height: 200px; }
  .hero-cert-logos { gap: 12px; margin-top: 14px; padding-top: 14px; }
  .hero-cert-logos img { height: 54px; }
  .hero-stats { flex-wrap: nowrap; padding-top: 24px; }
  .hstat { flex: 1; padding: 0 8px; border-right: 1px solid var(--mist); border-bottom: none; }
  .hstat:first-child { padding-left: 0; }
  .hstat:last-child { border-right: none; padding-right: 0; }
  .hstat-n { font-size: 1.15rem; }
  .hstat-l { font-size: .58rem; }

  /* ── Global ── */
  .h2 { font-size: clamp(1.75rem, 7.5vw, 2.2rem); }

  /* ── Home sections ── */
  .wrap { padding-left: 20px; padding-right: 20px; padding-top: 64px; padding-bottom: 64px; }
  .cert-sec, .stats-sec, .testi-wrap, .adv-band, .mini-cta, .brands-sec { padding-left: 20px; padding-right: 20px; }
  .brands-sec { padding-top: 40px; padding-bottom: 40px; }
  .brands-logos { gap: 24px; justify-content: center; }
  .brands-logos img { height: 60px; max-width: 140px; }
  .zones-section { padding-left: 20px; padding-right: 20px; }
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .b-pac, .b-clim, .b-conf { grid-column: 1; grid-row: auto; height: 240px; }
  .cert-cta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 18px; }
  .cert-cta-btn { padding: 11px 22px; font-size: .78rem; align-self: flex-start; }
  .cert-grid { grid-template-columns: 1fr; }
  .stats-sec { padding-top: 60px; padding-bottom: 60px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 16px; }
  .stat-n { font-size: clamp(1.5rem, 6vw, 2rem); flex-wrap: nowrap; }
  .adv-band { padding-top: 48px; padding-bottom: 48px; }
  .adv-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .testi-wrap { padding-top: 64px; padding-bottom: 64px; }
  .testi-grid { grid-template-columns: 1fr; }
  .tc:nth-child(2) { margin-top: 0; } .tc:nth-child(3) { display: block; }
  .mini-cta { padding-top: 64px; padding-bottom: 64px; }
  .mini-cta-btns { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .mini-cta-btns .btn-g,
  .mini-cta-btns .btn-wa,
  .mini-cta-btns .btn-outline { padding: 11px 20px; font-size: .78rem; border-radius: 100px; }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .process-photo { height: 240px; }

  /* ── Footer ── */
  footer { padding-left: 20px; padding-right: 20px; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .wa-float span { display: none; } .wa-float { padding: 13px 14px; border-radius: 50%; }

  /* ── Services ── */
  .page-hero { padding: 100px 20px 56px; }
  .page-hero .h2 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .aids-sec, .cta-strip { padding-left: 20px; padding-right: 20px; }
  .svc-content { padding: 40px 20px; }
  .svc-section + .svc-section { margin-top: 12px; }
  .svc-photo { border-radius: 0; }
  #pac .svc-photo { display: none; }
  #chauffage .svc-photo { display: none; }
  .aids-grid { grid-template-columns: 1fr; }
  .aid-amount { font-size: 1.15rem; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px; }
  .cta-btns .btn-g,
  .cta-btns .btn-wa,
  .cta-btns .btn-outline { padding: 11px 20px; font-size: .78rem; }

  /* ── About ── */
  .story { padding-top: 64px; padding-bottom: 64px; }
  .values { padding-top: 64px; padding-bottom: 64px; }
  .certs { padding-top: 64px; padding-bottom: 64px; }
  .story, .values, .certs, .cta-strip { padding-left: 20px; padding-right: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .vcard { padding: 28px 22px; }
  .stats-head { margin-bottom: 40px; }
  .cert-list { gap: 0; }
  .cert-item { gap: 14px; }

  /* ── Contact ── */
  .contact-methods { padding-left: 20px; padding-right: 20px; padding-top: 64px; grid-template-columns: 1fr; }
  .contact-main { padding-left: 20px; padding-right: 20px; padding-top: 48px; padding-bottom: 64px; }
  .contact-info { order: 3; }
  .contact-form-col { order: 1; }
  .contact-wa-banner { order: 2; margin: 0; }
  .wa-banner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 24px; }
  .fg2 { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; border-radius: 24px; }
  .cmethod { padding: 28px 22px; }
  .cmethod-val { font-size: 0.82rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .cmethod-wa .cmethod-val { font-size: 1.1rem; white-space: normal; }
  .rge-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .wa-banner h3 { font-size: 0.95rem; }
  .nav, .nav.stuck { padding-left: 20px; padding-right: 20px; background: var(--white); }

  /* ── Legal ── */
  .legal-inner { padding: 110px 20px 60px; }
}

/* ── LEGAL PAGES ── */
.legal-page { background: var(--white); min-height: 100vh; }
.legal-inner { max-width: 820px; margin: 0 auto; padding: 140px 60px 100px; }
.legal-inner .eyebrow { margin-bottom: 12px; }
.legal-section { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.legal-section:first-of-type { border-top: none; }
.legal-section h2 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 300; color: var(--ink); margin-bottom: 14px; }
.legal-section p { font-size: 0.975rem; line-height: 1.8; color: var(--muted); margin-bottom: 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 10px 0 12px 0; display: flex; flex-direction: column; gap: 6px; }
.legal-section ul li { font-size: 0.975rem; line-height: 1.7; color: var(--muted); padding-left: 18px; position: relative; }
.legal-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--g); font-size: 0.85rem; }
.legal-section a { color: var(--g-dk); text-decoration: underline; text-decoration-color: var(--g-lt); text-underline-offset: 3px; }
.legal-section a:hover { color: var(--g); }
