/* ============================================================
   PRO-MED — Vitrine
   Palette extraite du logo :
   deep green #006A33  ·  bright green #009640
============================================================ */

:root {
  --green-900: #054d26;
  --green-700: #006A33;   /* primary (logo) */
  --green-500: #009640;   /* secondary (logo) */
  --green-300: #4dbd7a;
  --green-100: #e7f6ee;
  --green-50:  #f3fbf6;

  --ink:      #0f2a1d;
  --ink-soft: #3c5a4b;
  --muted:    #6b8073;
  --line:     #e3ece7;
  --white:    #ffffff;
  --bg:       #ffffff;
  --bg-soft:  #f5faf7;

  --grad: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
  --grad-soft: linear-gradient(135deg, #e9f7ef 0%, #f6fbf8 100%);

  --shadow-sm: 0 2px 8px rgba(6, 77, 38, .06);
  --shadow-md: 0 14px 40px rgba(6, 77, 38, .10);
  --shadow-lg: 0 30px 70px rgba(6, 77, 38, .16);
  --shadow-green: 0 16px 40px rgba(0, 150, 64, .28);

  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-h: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Poppins', sans-serif; line-height: 1.12; color: var(--ink); font-weight: 700; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad); z-index: 1000; transition: width .1s linear;
  box-shadow: 0 0 12px rgba(0,150,64,.6);
}

/* ---------- Eyebrow / titles ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100); padding: 7px 14px; border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(0,150,64,.18); animation: dotPulse 2s infinite; }
@keyframes dotPulse { 0%,100%{ box-shadow:0 0 0 4px rgba(0,150,64,.18);} 50%{ box-shadow:0 0 0 7px rgba(0,150,64,.05);} }

.section__title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.02em; }
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__sub { color: var(--ink-soft); font-size: 1.08rem; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 100px; cursor: pointer; border: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { transition: transform .25s var(--ease); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-green); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(0,150,64,.38); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { background: var(--white); color: var(--green-700); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--green-500); color: var(--green-500); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--green-700); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--block { width: 100%; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 900;
  display: flex; align-items: center;
  background: rgba(255,255,255,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.header.scrolled { background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__icon { width: 38px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.22rem; letter-spacing: -.01em; color: var(--green-700); }
.brand__tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 100px; position: relative; transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--green-700); background: var(--green-50); }
.nav__link.active { color: var(--green-700); }
.nav__cta { background: var(--grad); color: #fff !important; padding: 10px 20px; margin-left: 8px; box-shadow: var(--shadow-green); }
.nav__cta:hover {
  background: var(--green-100);             /* green highlight */
  color: var(--green-700) !important;       /* dark green text — clearly visible */
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 150, 64, .22), inset 0 0 0 1.5px var(--green-300);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: var(--green-50); border: 0; border-radius: 12px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2.3px; background: var(--green-700); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.3px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px;
  background:
    radial-gradient(1100px 600px at 85% -5%, rgba(0,150,64,.10), transparent 60%),
    radial-gradient(900px 500px at -5% 110%, rgba(0,106,51,.10), transparent 60%),
    var(--bg-soft);
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; position: relative; z-index: 2; }

/* hero animated bg */
.hero__bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.blob--1 { width: 460px; height: 460px; right: -120px; top: -80px; background: radial-gradient(circle, rgba(0,150,64,.45), transparent 70%); animation: blobFloat 16s var(--ease) infinite; }
.blob--2 { width: 380px; height: 380px; left: -100px; bottom: -60px; background: radial-gradient(circle, rgba(0,106,51,.40), transparent 70%); animation: blobFloat 20s var(--ease) infinite reverse; }
@keyframes blobFloat { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(30px,40px) scale(1.12);} }

.ecg { position: absolute; left: 0; bottom: 12%; width: 100%; height: 160px; opacity: .35; }
.ecg__path {
  fill: none; stroke: var(--green-500); stroke-width: 2.4;
  stroke-dasharray: 1600; stroke-dashoffset: 1600;
  filter: drop-shadow(0 0 6px rgba(0,150,64,.5));
  animation: ecgRun 4.5s linear infinite;
}
@keyframes ecgRun { to { stroke-dashoffset: -1600; } }

.floaty { position: absolute; font-size: 28px; color: rgba(0,150,64,.30); font-weight: 700; user-select: none; }
.floaty--a { top: 18%; left: 12%; animation: floatY 7s ease-in-out infinite; }
.floaty--b { top: 64%; left: 24%; font-size: 20px; animation: floatY 9s ease-in-out infinite 1s; }
.floaty--c { top: 30%; right: 16%; font-size: 34px; animation: floatY 8s ease-in-out infinite .5s; }
.floaty--d { top: 74%; right: 30%; font-size: 22px; animation: floatY 10s ease-in-out infinite 1.5s; }
@keyframes floatY { 0%,100%{ transform: translateY(0) rotate(0);} 50%{ transform: translateY(-22px) rotate(8deg);} }

.hero__title { font-size: clamp(2.2rem, 5.4vw, 4rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 22px; }
.hero__lead { font-size: 1.14rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero__trust { display: flex; gap: 30px; flex-wrap: wrap; }
.trust { display: flex; flex-direction: column; }
.trust strong { font-family: 'Poppins', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--green-700); }
.trust span { font-size: .86rem; color: var(--muted); }

/* hero emblem */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.emblem { position: relative; width: min(420px, 80vw); aspect-ratio: 1; display: grid; place-items: center; }
.emblem__icon { width: 46%; filter: drop-shadow(0 18px 30px rgba(0,106,51,.30)); animation: emblemBreathe 5s ease-in-out infinite; position: relative; z-index: 3; }
@keyframes emblemBreathe { 0%,100%{ transform: translateY(0) scale(1);} 50%{ transform: translateY(-10px) scale(1.04);} }
.emblem__ring { position: absolute; border-radius: 50%; border: 2px dashed rgba(0,150,64,.30); }
.emblem__ring--1 { width: 78%; height: 78%; animation: spin 26s linear infinite; }
.emblem__ring--2 { width: 100%; height: 100%; border-style: solid; border-color: rgba(0,106,51,.12); animation: spin 40s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.emblem__pulse {
  position: absolute; width: 60%; height: 60%; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,150,64,.22), transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100%{ transform: scale(.85); opacity:.6;} 50%{ transform: scale(1.25); opacity:.15;} }

/* scroll hint */
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-hint__mouse { display: block; width: 24px; height: 40px; border: 2px solid var(--green-500); border-radius: 14px; position: relative; }
.scroll-hint__mouse::before { content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; background: var(--green-500); border-radius: 3px; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0%{ opacity:0; transform: translate(-50%,0);} 40%{ opacity:1;} 80%{ opacity:0; transform: translate(-50%,14px);} 100%{opacity:0;} }

/* ============================================================
   MARQUEE
============================================================ */
.marquee { background: var(--grad); padding: 16px 0; overflow: hidden; }
.marquee__track { display: flex; align-items: center; gap: 26px; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem; letter-spacing: .14em; color: rgba(255,255,255,.92); white-space: nowrap; }
.marquee__track .dot { color: rgba(255,255,255,.5); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
============================================================ */
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.about__card {
  position: relative; background: var(--grad-soft); border: 1px solid var(--green-100);
  border-radius: var(--radius-lg); padding: 48px; display: grid; place-items: center;
  box-shadow: var(--shadow-md); aspect-ratio: 1 / .9;
}
.about__card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 30% 20%, rgba(0,150,64,.12), transparent 60%); }
.about__logo { width: 78%; position: relative; z-index: 1; animation: emblemBreathe 6s ease-in-out infinite; }
.about__badge {
  position: absolute; bottom: -18px; right: 22px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: #fff; padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow-md);
}
.about__badge svg { color: var(--green-500); }
.about__badge strong { display: block; font-size: .95rem; color: var(--ink); }
.about__badge span { font-size: .78rem; color: var(--muted); }

.about__content p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.04rem; }
.about__list { margin-top: 24px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink); }
.check { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--green-100); color: var(--green-700); font-size: .82rem; font-weight: 700; flex-shrink: 0; }

/* ============================================================
   STATS
============================================================ */
.stats { background: var(--grad); position: relative; overflow: hidden; }
.stats::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% 120%, rgba(255,255,255,.12), transparent 60%); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 64px 24px; position: relative; }
.stat { text-align: center; color: #fff; }
.stat__num { font-family: 'Poppins', sans-serif; font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; display: block; line-height: 1; }
.stat__label { display: block; margin-top: 8px; font-size: .95rem; color: rgba(255,255,255,.85); }
.stat + .stat { position: relative; }

/* ============================================================
   SERVICES CARDS
============================================================ */
.services { background: var(--bg-soft); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.card::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  background: var(--green-100); color: var(--green-700); margin-bottom: 20px;
  transition: transform .4s var(--ease), background .4s, color .4s;
}
.card:hover .card__icon { background: var(--grad); color: #fff; transform: rotate(-6deg) scale(1.06); }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   FEATURES
============================================================ */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature { text-align: center; padding: 34px 22px; border-radius: var(--radius); transition: background .3s, transform .3s; }
.feature:hover { background: var(--green-50); transform: translateY(-6px); }
.feature__icon {
  width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: var(--grad);
  box-shadow: var(--shadow-green);
}
.feature__icon svg { width: 30px; height: 30px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: .94rem; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner { padding: 0 0 clamp(40px, 6vw, 70px); }
.cta-banner__inner {
  background: var(--grad); border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px); display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; box-shadow: var(--shadow-green); position: relative; overflow: hidden;
}
.cta-banner__inner::before { content:""; position:absolute; right:-40px; top:-40px; width:220px; height:220px; border-radius:50%; background: rgba(255,255,255,.10); }
.cta-banner__inner::after { content:""; position:absolute; left:-30px; bottom:-60px; width:180px; height:180px; border-radius:50%; background: rgba(255,255,255,.08); }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); position: relative; }
.cta-banner p { color: rgba(255,255,255,.9); margin-top: 6px; position: relative; }
.cta-banner .btn { position: relative; }

/* ============================================================
   LOCATIONS
============================================================ */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.loc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.loc-card__map { position: relative; height: 280px; background: var(--green-50); }
.loc-card__map iframe { width: 100%; height: 100%; filter: grayscale(.2) saturate(1.1); }
.loc-card__body { padding: 26px 28px 30px; }
.loc-card__chip { display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green-700); background: var(--green-100); padding: 5px 12px; border-radius: 100px; margin-bottom: 12px; }
.loc-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.loc-card__addr { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: .98rem; }
.loc-card__addr svg { color: var(--green-500); flex-shrink: 0; margin-top: 3px; }
.loc-card__dir { display: inline-block; margin-top: 16px; font-weight: 600; color: var(--green-700); transition: gap .2s, color .2s; }
.loc-card__dir:hover { color: var(--green-500); }

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--bg-soft); }
.contact__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.contact__cards--two { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
.contact__maps { margin-top: 30px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 30px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-card__ic {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 18px;
  display: grid; place-items: center; background: var(--green-100); color: var(--green-700);
  transition: transform .4s var(--ease), background .4s, color .4s;
}
.contact-card:hover .contact-card__ic { background: var(--grad); color: #fff; transform: rotate(-6deg) scale(1.06); }
.contact-card__ic svg { width: 28px; height: 28px; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.contact-card a, .contact-card p { display: block; color: var(--ink-soft); font-weight: 500; font-size: 1.02rem; transition: color .2s; }
.contact-card a:hover { color: var(--green-700); }
.contact-card a + a, .contact-card p + p { margin-top: 4px; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--green-900); color: #cfe6da; padding-top: 56px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 36px; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__icon { width: 46px; filter: brightness(0) invert(1); opacity: .92; }
.footer__brand strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.2rem; color: #fff; }
.footer__brand span { font-size: .84rem; color: #9fc3ae; }
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__contact a { color: #cfe6da; font-size: .95rem; transition: color .2s, padding-left .2s; width: max-content; }
.footer__nav a:hover, .footer__contact a:hover { color: #fff; padding-left: 4px; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.10); font-size: .86rem; color: #8fb6a1; }

/* ============================================================
   REVEAL ANIMATION
============================================================ */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(28px); }   /* hidden only when JS can reveal it */
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { order: -1; }
  .emblem { width: min(320px, 70vw); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__card { max-width: 420px; margin-inline: auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 18px 20px 26px; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .4s var(--ease); border-bottom: 1px solid var(--line);
  }
  .nav.open { transform: translateY(0); }
  .nav__link { padding: 13px 16px; border-radius: 12px; font-size: 1rem; }
  .nav__cta { margin-left: 0; text-align: center; margin-top: 6px; }
  .nav-toggle { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

@media (max-width: 620px) {
  .container { padding-inline: 18px; }
  .cards { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .brand__tag { display: none; }
  .hero__trust { gap: 22px; }
  .cta-banner__inner { text-align: center; justify-content: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
