/* =====================================================================
   GLOBUS-NET SERVICES SARL — Feuille de style principale
   Palette de marque : vert (parabole) + bleu (satellite) + navy
   Conçu pour être rapide, responsive et adapté au contexte africain
   (faible bande passante, mobile-first, WhatsApp/Mobile Money).
   ===================================================================== */

/* ------------------------------- Tokens ---------------------------- */
:root {
  /* Marque */
  --green: #7ac142;
  --green-600: #6bc418;
  --green-700: #4f9a15;
  --green-900: #173404;
  --green-050: #f2faec;

  --blue: #0090c9;
  --blue-400: #38b0e3;
  --blue-200: #8ec5e8;
  --navy: #042c53;
  --navy-800: #0b2545;
  --blue-050: #eaf6fc;

  --amber: #f5a623;

  /* Neutres */
  --ink: #16211c;
  --body: #4a5551;
  --muted: #6b7772;
  --line: #e6ece8;
  --bg: #ffffff;
  --bg-soft: #f7faf5;

  /* Effets */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 8px rgba(4, 44, 83, .06);
  --shadow: 0 14px 40px rgba(4, 44, 83, .10);
  --shadow-lg: 0 30px 70px rgba(4, 44, 83, .16);
  --ring: 0 0 0 4px rgba(0, 144, 201, .18);

  --grad-brand: linear-gradient(120deg, var(--green) 0%, var(--blue) 100%);
  --grad-hero: linear-gradient(135deg, #0b2545 0%, #06325c 45%, #0a4d76 100%);

  --container: 1180px;
  --header-h: 132px;

  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ------------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
ul { padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; font-weight: 700; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------------------------- Layout utils ------------------------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--grad-hero); color: #dbe7f2; }
.section--green { background: var(--green-050); }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--blue-200); }
h1 { font-size: clamp(2rem, 5vw, 3.35rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.22rem; }
.lead { font-size: 1.12rem; color: var(--muted); }
.section-head { max-width: 660px; margin: 0 auto clamp(40px, 5vw, 60px); }
.section-head.center { text-align: center; }

/* ------------------------------ Buttons ---------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: .82em 1.5em; border-radius: 999px;
  transition: transform .18s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: 0 10px 24px rgba(0,144,201,.28); }
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,144,201,.36); }
.btn--green { background: var(--green-600); color: #08240a; }
.btn--green:hover { background: var(--green); color: #08240a; transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--outline { background: #fff; color: var(--navy); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--sm { padding: .6em 1.05em; font-size: .86rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ------------------------------ Header ----------------------------- */
.topbar {
  display: none; /* barre de contact du haut masquée (les coordonnées restent dans le pied de page) */
  background: var(--navy); color: #cfe0ef;
  font-size: .82rem; letter-spacing: .01em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #cfe0ef; display: inline-flex; align-items: center; gap: .4em; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__right { display: flex; gap: 14px; align-items: center; }
.topbar svg { width: 15px; height: 15px; opacity: .85; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  /* ligne de séparation stylée (dégradé de marque) sous la bannière du haut */
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--green) 0%, var(--blue-400) 50%, var(--blue) 100%) 1;
  box-shadow: 0 4px 14px rgba(4, 44, 83, .10);
  transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 100px; width: auto; }
/* Le logo contient déjà le nom : on masque le texte à côté pour éviter le doublon. */
.brand__txt { display: none !important; line-height: 1.05; }
.brand__txt b { font-family: var(--font-head); color: var(--green-700); font-size: 1.02rem; letter-spacing: .02em; }
.brand__txt span { display: block; font-size: .66rem; color: var(--blue); letter-spacing: .18em; text-transform: uppercase; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  color: var(--ink); padding: .55em .85em; border-radius: 10px; position: relative;
}
.nav__menu a:hover { color: var(--blue); background: var(--blue-050); }
.nav__menu a.active { color: var(--green-700); }
.nav__menu a.active::after {
  content: ""; position: absolute; left: .85em; right: .85em; bottom: .2em;
  height: 2px; background: var(--green); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------- Hero / slider ------------------------- */
.hero {
  position: relative; color: #eaf2fb; overflow: hidden;
  background-color: var(--navy);
  /* Photo d'arrière-plan (déposer le fichier dans assets/img/hero.jpg) + voile bleu
     foncé pour garder le texte lisible ; redimensionnée à la zone via cover. */
  background-image:
    linear-gradient(100deg, rgba(4,44,83,.84) 0%, rgba(6,50,92,.44) 44%, rgba(8,58,98,.06) 100%),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center right;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(122,193,66,.28), transparent 42%),
              radial-gradient(circle at 8% 92%, rgba(0,144,201,.30), transparent 46%);
}
/* ligne de séparation stylée en bas du héro */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 3;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue-400) 50%, var(--blue) 100%);
}
/* même ligne stylée sous les bannières de page intérieures */
.page-hero { border-bottom: 4px solid transparent; border-image: linear-gradient(90deg, var(--green), var(--blue-400), var(--blue)) 1; }
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center;
  padding: clamp(48px, 7vw, 88px) 0; min-height: 460px;
}
.hero__copy { max-width: 620px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .hl { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: #c6d7e8; margin-bottom: 30px; max-width: 560px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.hero__badge { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #cfe0ef; }
.hero__badge svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; }

/* Slider */
.slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #0b2545; }
.slider__track { display: flex; transition: transform .6s cubic-bezier(.65,.05,.2,1); }
.slide { min-width: 100%; position: relative; }
.slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.slide__cap { position: absolute; left: 20px; bottom: 18px; right: 20px; color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.slider__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.slider__dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.5); transition: .25s; }
.slider__dots button.active { background: #fff; width: 26px; border-radius: 6px; }
.slider__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--navy);
  display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.slider__arrow:hover { background: #fff; }
.slider__arrow.prev { left: 12px; } .slider__arrow.next { right: 12px; }

/* --------------------------- Marquee bar --------------------------- */
.trust { background: var(--navy-800); color: #a9c2d8; padding: 16px 0; }
.trust__row { display: flex; flex-wrap: wrap; gap: 12px 30px; align-items: center; justify-content: center; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.trust__row span { display: inline-flex; align-items: center; gap: 8px; }
.trust__row svg { width: 16px; height: 16px; color: var(--green); }

/* ------------------------------ Cards ------------------------------ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: var(--green-050); color: var(--green-700); margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card--blue .card__icon { background: var(--blue-050); color: var(--blue); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }
.card__link { display: inline-flex; align-items: center; gap: .4em; margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* -------------------------- Stats counter -------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 22px 12px; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; line-height: 1; }
.section--navy .stat b { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: .9rem; color: #bcd0e4; letter-spacing: .04em; }

/* --------------------------- Feature split ------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.checklist { display: grid; gap: 14px; margin-top: 22px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { width: 24px; height: 24px; color: var(--green-600); flex-shrink: 0; margin-top: 1px; }
.checklist b { color: var(--ink); font-family: var(--font-head); }

/* ------------------------- Process / steps ------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
.step { position: relative; padding-top: 8px; }
.step__num { width: 46px; height: 46px; border-radius: 14px; background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; margin-bottom: 16px; font-size: 1.15rem; }
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { font-size: .92rem; color: var(--muted); }

/* --------------------------- Testimonials -------------------------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; }
.quote .stars { color: var(--amber); letter-spacing: 3px; margin-bottom: 12px; }
.quote p { font-size: 1rem; color: var(--ink); }
.quote .who { margin-top: 16px; font-size: .88rem; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.quote .who .av { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; }

/* ------------------------------- CTA ------------------------------- */
.cta-band { background: var(--green-900); color: #eaf7dc; border-radius: var(--radius-lg); padding: clamp(38px, 5vw, 60px); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(122,193,66,.25), transparent 45%), radial-gradient(circle at 90% 90%, rgba(0,144,201,.25), transparent 45%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c0dd97; margin: 12px auto 26px; max-width: 560px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ------------------------------ Footer ----------------------------- */
.site-footer { background: var(--navy-800); color: #a9c2d8; padding-top: 64px; font-size: .93rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: #a9c2d8; }
.site-footer a:hover { color: var(--green); }
.footer__brand img { height: 52px; margin-bottom: 16px; }
.footer__brand p { max-width: 320px; }
.footer__list li { margin-bottom: 10px; }
.footer__list li.ico { display: flex; gap: 10px; align-items: flex-start; }
.footer__list svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.socials a:hover { background: var(--green); color: #08240a; }
.socials svg { width: 19px; height: 19px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .84rem; color: #7f99b0; }

/* ---------------------- Floating WhatsApp / top -------------------- */
.wa-float { position: fixed; right: 20px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.5); animation: waPulse 2.4s infinite; }
.wa-float svg { width: 30px; height: 30px; }
@keyframes waPulse { 0%,100%{ box-shadow: 0 10px 30px rgba(37,211,102,.5);} 50%{ box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,0);} }
.to-top { position: fixed; right: 22px; bottom: 90px; z-index: 65; width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .3s; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; }

/* --------------------------- Page banner --------------------------- */
.page-hero { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; padding: clamp(50px, 7vw, 84px) 0 clamp(40px, 6vw, 64px); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 10%, rgba(122,193,66,.28), transparent 45%), radial-gradient(circle at 5% 95%, rgba(0,144,201,.3), transparent 45%); }
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #c6d7e8; font-size: 1.1rem; margin-top: 14px; }
.crumbs { display: flex; gap: 8px; font-size: .85rem; color: #9fb8ce; margin-bottom: 16px; }
.crumbs a { color: #9fb8ce; } .crumbs a:hover { color: #fff; }

/* --------------------------- Boutique / shop ----------------------- */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 34px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 16px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.filters h4 { font-size: .95rem; margin-bottom: 12px; }
.filters .chip { display: block; width: 100%; text-align: left; padding: .55em .8em; border-radius: 10px; color: var(--body); font-size: .92rem; margin-bottom: 4px; }
.filters .chip:hover { background: var(--bg-soft); }
.filters .chip.active { background: var(--green-050); color: var(--green-700); font-weight: 600; }
.shop-toolbar { display: flex; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 22px; flex-wrap: wrap; }
.search { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .5em 1em; flex: 1; min-width: 220px; box-shadow: var(--shadow-sm); }
.search svg { width: 18px; height: 18px; color: var(--muted); }
.search input { border: 0; outline: 0; flex: 1; font-size: .95rem; background: transparent; color: var(--ink); }

.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product__media { aspect-ratio: 4/3; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue-050), var(--green-050)); position: relative; }
.product__media svg { width: 64px; height: 64px; color: var(--blue); opacity: .8; }
.product__tag { position: absolute; top: 12px; left: 12px; background: var(--green-600); color: #08240a; font-size: .72rem; font-weight: 700; font-family: var(--font-head); padding: .3em .7em; border-radius: 999px; }
.product__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product__cat { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.product h3 { font-size: 1.04rem; margin: 4px 0 6px; }
.product p { font-size: .87rem; color: var(--muted); flex: 1; }
.product__price { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.2rem; margin: 12px 0; }
.product__price small { font-weight: 400; font-size: .78rem; color: var(--muted); }
.product__actions { display: flex; gap: 8px; }
.product__actions .btn { flex: 1; }

/* Quote drawer */
.quote-fab { position: fixed; left: 20px; bottom: 22px; z-index: 66; background: var(--navy); color: #fff; border-radius: 999px; padding: .8em 1.2em; display: inline-flex; align-items: center; gap: 10px; box-shadow: var(--shadow); font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.quote-fab svg { width: 20px; height: 20px; }
.quote-fab .count { background: var(--green-600); color: #08240a; border-radius: 999px; min-width: 22px; height: 22px; padding: 0 6px; display: grid; place-items: center; font-size: .78rem; }
.drawer-overlay { position: fixed; inset: 0; background: rgba(4,44,83,.5); z-index: 80; opacity: 0; visibility: hidden; transition: .3s; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%); background: #fff; z-index: 81; transform: translateX(100%); transition: transform .35s cubic-bezier(.6,.05,.2,1); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.drawer.open { transform: translateX(0); }
.drawer__head { padding: 20px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.drawer__head h3 { font-size: 1.15rem; }
.drawer__close { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.drawer__empty { text-align: center; color: var(--muted); padding: 40px 10px; }
.qitem { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); align-items: center; }
.qitem__info { flex: 1; }
.qitem__info b { font-family: var(--font-head); font-size: .95rem; color: var(--ink); display: block; }
.qitem__info span { font-size: .82rem; color: var(--muted); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty button { width: 30px; height: 30px; font-size: 1.1rem; color: var(--navy); background: var(--bg-soft); }
.qty span { width: 34px; text-align: center; font-weight: 600; font-size: .9rem; }
.qitem__rm { color: #c0392b; font-size: .78rem; }
.drawer__foot { padding: 18px 22px; border-top: 1px solid var(--line); }

/* ------------------------------ Forms ------------------------------ */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; padding: .82em 1em; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .96rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: var(--ring); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }
.form-success { display: none; background: var(--green-050); border: 1px solid var(--green); color: var(--green-900); border-radius: 12px; padding: 16px; margin-bottom: 18px; }
.form-success.show { display: block; }

/* ---------------------------- Contact info ------------------------- */
.info-card { display: flex; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.info-card .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; flex-shrink: 0; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card b { font-family: var(--font-head); color: var(--ink); display: block; margin-bottom: 3px; }
.info-card span, .info-card a { font-size: .92rem; color: var(--muted); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* --------------------------- Accordion (FAQ) ----------------------- */
.acc { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.acc__item + .acc__item { border-top: 1px solid var(--line); }
.acc__q { width: 100%; text-align: left; display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 20px 22px; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.acc__q svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; transition: transform .25s; }
.acc__item.open .acc__q svg { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc__a p { padding: 0 22px 20px; color: var(--muted); font-size: .96rem; }

/* --------------------------- Pricing (formations) ------------------ */
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%; transition: .2s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--green); box-shadow: var(--shadow); position: relative; }
.price-card.featured::before { content: "Populaire"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green-600); color: #08240a; font-family: var(--font-head); font-weight: 700; font-size: .74rem; padding: .35em 1em; border-radius: 999px; }
.price-card h3 { font-size: 1.2rem; }
.price-card .price { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--navy); margin: 10px 0 4px; }
.price-card .price small { font-size: .8rem; color: var(--muted); font-weight: 400; }
.price-card ul { margin: 18px 0; display: grid; gap: 10px; flex: 1; }
.price-card ul li { display: flex; gap: 10px; font-size: .92rem; }
.price-card ul svg { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; }

/* --------------------------- Animations ---------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------- Responsive --------------------------- */
@media (min-width: 480px) { .brand__txt { display: block; } }
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
  .filters h4 { width: 100%; }
  .filters .chip { width: auto; }
}
@media (max-width: 880px) {
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 12px 20px 22px; gap: 2px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .25s;
  }
  .nav__menu.open { transform: none; opacity: 1; visibility: visible; }
  .nav__menu a { padding: .85em .6em; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__menu a.active::after { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta .btn:not(.nav__toggle) { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .stats { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__left { gap: 12px; }
  .steps { grid-template-columns: 1fr; }
  .slider__arrow { display: none; }
  .btn { white-space: normal; text-align: center; }
}
