/* ================================================================
   EL RAPHA — CSS Global
   Couvre : reset, variables, nav, footer, pages communes
================================================================ */

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --yellow: #F5B800;
  --yellow-dark: #D49D00;
  --black: #111111;
  --dark: #1A1A1A;
  --gray: #F4F4F2;
  --white: #FFFFFF;
  --text: #222222;
  --muted: #666666;
  --border: #E2E2E0;
  --radius: 8px;
  --radius-lg: 12px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── NAVIGATION ───────────────────────────────────────────────── */
nav {
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  position: sticky; top: 0; z-index: 200;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.logo-area { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px; background: var(--yellow); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; }
.logo-text .et {
  font-family: var(--font-head); font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase;
}
.logo-text .name {
  font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--yellow);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7);
  padding: 7px 14px; border-radius: 4px; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links .nav-cta {
  background: var(--yellow) !important; color: var(--black) !important; font-weight: 700 !important;
}
.nav-links .nav-cta:hover { background: var(--yellow-dark) !important; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ── BOUTONS ──────────────────────────────────────────────────── */
.btn-primary {
  background: var(--yellow); color: var(--black);
  font-size: 15px; font-weight: 700; padding: 13px 26px; border-radius: 4px;
  border: none; display: inline-flex; align-items: center; gap: 8px; transition: all .2s;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-outline {
  background: transparent; color: #fff;
  font-size: 15px; font-weight: 600; padding: 13px 26px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.25); display: inline-flex; align-items: center; gap: 8px; transition: all .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.btn-dark {
  background: var(--black); color: #fff;
  font-size: 15px; font-weight: 700; padding: 13px 26px; border-radius: 4px; border: none; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-dark:hover { background: #333; }
.btn-border-dark {
  background: transparent; color: var(--black);
  font-size: 15px; font-weight: 600; padding: 13px 26px;
  border-radius: 4px; border: 2px solid var(--black); transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-border-dark:hover { background: rgba(0,0,0,0.07); }
.btn-yellow {
  background: var(--yellow); color: var(--black);
  font-size: 15px; font-weight: 700; padding: 13px 26px; border-radius: 4px; border: none; transition: all .2s;
}
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-ghost {
  background: transparent; color: #fff;
  font-size: 15px; font-weight: 600; padding: 13px 26px;
  border-radius: 4px; border: 1.5px solid rgba(255,255,255,0.2); transition: all .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); }

/* ── SECTION COMMONS ──────────────────────────────────────────── */
.section-inner, .si { max-width: 1200px; margin: 0 auto; }
.section-tag, .stag {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px;
}
.section-title, .stitle {
  font-family: var(--font-head); font-size: 42px; font-weight: 800;
  color: var(--black); text-transform: uppercase; line-height: 1.05; margin-bottom: 16px;
}
.section-sub, .ssub { font-size: 15px; color: var(--muted); max-width: 560px; line-height: 1.75; }
.section, .section-cats, .section-catalogue, .section-why, .section-testi { padding: 80px 24px; }
.bg-gray { background: var(--gray); }
.bg-black { background: var(--black); }
.bg-black .section-title, .bg-black .stitle, .white { color: #fff; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-28 { margin-top: 28px; }

/* ── PAGE HEADER ──────────────────────────────────────────────── */
.page-header {
  background: var(--black); padding: 56px 24px 48px; position: relative; overflow: hidden;
}
.page-header-inner, .ph-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.ph-inner { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.ph-accent, .ph-circle, .ph-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.ph-accent { right:-80px; top:-80px; width:320px; height:320px; background:var(--yellow); opacity:.05; }
.ph-circle { right:-120px; top:-120px; width:400px; height:400px; background:var(--yellow); opacity:.06; }
.ph-glow { right:-100px; top:-100px; width:380px; height:380px; background:var(--yellow); opacity:.06; }
.ph-pattern {
  position:absolute; inset:0; opacity:.03;
  background-image: repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 1px,transparent 28px);
}
.ph-grid {
  position:absolute; inset:0; opacity:.03;
  background-image:
    repeating-linear-gradient(90deg,#fff 0,#fff 1px,transparent 1px,transparent 48px),
    repeating-linear-gradient(0deg,#fff 0,#fff 1px,transparent 1px,transparent 48px);
}
.page-header h1, .ph-inner h1 {
  font-family: var(--font-head); font-size: 52px; font-weight: 800;
  color: #fff; text-transform: uppercase; line-height: 1; margin-bottom: 12px;
}
.page-header h1 em, .ph-inner h1 em { color: var(--yellow); font-style: normal; }
.page-header p, .ph-inner p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 520px; }
.ph-stats {
  display: flex; flex-direction: column; gap: 12px; padding: 24px;
  background: rgba(245,184,0,0.08); border: 1px solid rgba(245,184,0,0.2);
  border-radius: 10px; min-width: 200px;
}
.ph-stat .num { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--yellow); line-height: 1; }
.ph-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: .5px; }

/* breadcrumb */
.breadcrumb, .bc {
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.breadcrumb a, .bc a { font-size: 13px; color: rgba(255,255,255,0.35); }
.breadcrumb a:hover, .bc a:hover { color: var(--yellow); }
.breadcrumb span, .bc span { font-size: 13px; color: rgba(255,255,255,0.2); }
.breadcrumb .current, .bc .cur { font-size: 13px; color: rgba(255,255,255,0.55); }

.header-info { display: flex; align-items: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.info-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(245,184,0,0.1); border: 1px solid rgba(245,184,0,0.2);
  border-radius: 4px; padding: 7px 14px; font-size: 13px; color: rgba(255,255,255,0.6);
}

/* ── HERO (ACCUEIL) ───────────────────────────────────────────── */
.hero {
  background: var(--black); padding: 90px 24px 80px; position: relative; overflow: hidden;
}
.hero-pattern {
  position:absolute; inset:0; opacity:.04;
  background-image:
    repeating-linear-gradient(90deg,#fff 0,#fff 1px,transparent 1px,transparent 60px),
    repeating-linear-gradient(0deg,#fff 0,#fff 1px,transparent 1px,transparent 60px);
}
.hero-accent  { position:absolute; right:-80px; top:-80px; width:400px; height:400px; background:var(--yellow); opacity:.07; border-radius:50%; }
.hero-accent2 { position:absolute; left:-60px; bottom:-60px; width:300px; height:300px; background:var(--yellow); opacity:.05; border-radius:50%; }
.hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,184,0,0.12); border: 1px solid rgba(245,184,0,0.3);
  color: var(--yellow); font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 4px; margin-bottom: 24px;
}
.hero-tag span { width:6px; height:6px; background:var(--yellow); border-radius:50%; display:inline-block; }
.hero h1 {
  font-family: var(--font-head); font-size: 60px; font-weight: 800;
  color: #fff; text-transform: uppercase; line-height: 1.0; margin-bottom: 22px; letter-spacing: -0.5px;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 34px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 13px; }
.badge-dot {
  width: 20px; height: 20px; background: rgba(245,184,0,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--yellow); font-weight: 700; flex-shrink: 0;
}
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 18px; display: flex; align-items: center; gap: 14px; transition: all .3s;
}
.hero-card:hover { background: rgba(245,184,0,0.08); border-color: rgba(245,184,0,0.3); }
.hero-card-icon {
  width: 48px; height: 48px; background: var(--yellow); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card-icon svg { width: 24px; height: 24px; }
.hc-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
.hc-value { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: #fff; }
.hero-card-arrow { margin-left: auto; color: var(--yellow); font-size: 20px; opacity: 0.6; }

/* ── STATS BAND ───────────────────────────────────────────────── */
.stats-band { background: var(--yellow); padding: 32px 24px; }
.stats-inner {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center;
}
.stat-item .num { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--black); line-height: 1; }
.stat-item .lbl { font-size: 13px; font-weight: 500; color: rgba(0,0,0,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { border-right: 1.5px solid rgba(0,0,0,0.15); }

/* ── CATEGORIES ───────────────────────────────────────────────── */
.cats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.cat-card {
  background: var(--black); border-radius: 10px; padding: 30px 26px;
  position: relative; overflow: hidden; display: block; transition: transform .25s;
}
.cat-card:hover { transform: translateY(-3px); }
.cat-card::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(245,184,0,0.08) 0%, transparent 60%);
}
.cat-card-icon {
  width: 54px; height: 54px; background: rgba(245,184,0,0.12); border: 1.5px solid rgba(245,184,0,0.25);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; position: relative;
}
.cat-card h3 { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: #fff; text-transform: uppercase; margin-bottom: 8px; }
.cat-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.cat-card-link {
  display: flex; align-items: center; gap: 6px; margin-top: 18px;
  color: var(--yellow); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── PRODUCTS GRID ────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.product-card {
  background: #fff; border-radius: 10px; border: 1px solid var(--border);
  overflow: hidden; transition: all .3s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.product-img {
  background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
  height: 170px; display: flex; align-items: center; justify-content: center; position: relative;
}
.pi-icon svg, .product-img-icon svg { width: 72px; height: 72px; }
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.badge-devis {
  background: var(--yellow); color: var(--black); font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-dispo {
  background: rgba(39,200,120,0.9); color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 3px; text-transform: uppercase;
}
.product-body { padding: 18px; }
.product-cat { font-size: 11px; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.product-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.product-equiv { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.product-specs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.spec-tag { background: var(--gray); color: var(--text); font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 4px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid #f0f0ee; }
.product-price-info span { font-size: 11px; color: var(--muted); display: block; }
.product-price-info strong { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--black); }
.btn-devis {
  background: var(--black); color: #fff; font-size: 12px; font-weight: 700;
  padding: 9px 14px; border-radius: 5px; border: none; transition: all .2s; white-space: nowrap;
}
.btn-devis:hover { background: var(--yellow); color: var(--black); }

/* ── WHY US ───────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-points { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-icon {
  width: 38px; height: 38px; background: var(--yellow); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 14px; font-weight: 700; color: var(--black); margin-top: 2px;
}
.why-point h4 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--black); text-transform: uppercase; margin-bottom: 4px; }
.why-point p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.why-right {
  background: var(--black); border-radius: 14px; padding: 36px; position: relative; overflow: hidden;
}
.why-right::before {
  content:''; position:absolute; top:-60px; right:-60px; width:200px; height:200px;
  background:var(--yellow); opacity:.08; border-radius:50%;
}
.stats-box { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; position: relative; z-index: 1; }
.stat-box { text-align: center; padding: 22px 14px; background: rgba(255,255,255,0.04); border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); }
.stat-box .num { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--yellow); line-height: 1; }
.stat-box .lbl { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.4; }

/* ── TÉMOIGNAGES ──────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.testi-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 26px; transition: border-color .25s;
}
.testi-card:hover { border-color: rgba(245,184,0,0.3); }
.stars { color: var(--yellow); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px; background: rgba(245,184,0,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--yellow); flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: #fff; }
.testi-role { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── CTA SECTIONS ─────────────────────────────────────────────── */
.cta-section { background: var(--yellow); padding: 70px 24px; }
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-family: var(--font-head); font-size: 46px; font-weight: 800; color: var(--black); text-transform: uppercase; line-height: 1.05; margin-bottom: 12px; }
.cta-inner p { font-size: 15px; color: rgba(0,0,0,0.5); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.bottom-cta { background: var(--black); padding: 56px 24px; border-top: 3px solid var(--yellow); }
.bottom-cta-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.bottom-cta-inner h2 { font-family: var(--font-head); font-size: 38px; font-weight: 800; color: #fff; text-transform: uppercase; margin-bottom: 10px; }
.bottom-cta-inner p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 26px; }
.cta-band { background: var(--yellow); padding: 64px 24px; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer { background: #0a0a0a; padding: 60px 24px 28px; border-top: 3px solid var(--yellow); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-area { margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 18px; }
.footer-contact { display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-contact strong { color: rgba(255,255,255,0.6); font-weight: 500; }
.footer-col h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p, .footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.2); }

/* ── CATALOGUE ────────────────────────────────────────────────── */
.catalogue-layout { max-width: 1200px; margin: 40px auto; padding: 0 24px 60px; display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.sidebar { position: sticky; top: 88px; }
.sidebar-block { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.sidebar-block-head { background: var(--black); padding: 14px 18px; }
.sidebar-block-head h3 { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-block-body { padding: 14px 18px; }
.filter-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid #f0f0ee; cursor: pointer; }
.filter-item:last-child { border-bottom: none; }
.filter-item-left { display: flex; align-items: center; gap: 10px; }
.filter-item-left input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--yellow); cursor: pointer; }
.filter-item-left label { font-size: 13px; color: var(--text); cursor: pointer; font-weight: 500; }
.filter-item.active .filter-item-left label { color: var(--black); font-weight: 600; }
.filter-item-count { font-size: 11px; color: var(--muted); background: var(--gray); padding: 2px 7px; border-radius: 10px; font-weight: 600; }
.search-box { display: flex; align-items: center; gap: 8px; border: 1px solid var(--border); border-radius: 6px; padding: 9px 12px; transition: border-color .2s; }
.search-box:focus-within { border-color: var(--yellow); }
.search-box svg { width: 15px; height: 15px; flex-shrink: 0; }
.search-box input { border: none; outline: none; font-family: var(--font-body); font-size: 14px; width: 100%; color: var(--text); background: transparent; }
.reset-btn { width: 100%; background: transparent; border: 1.5px solid var(--border); border-radius: 6px; padding: 9px; font-size: 13px; color: var(--muted); transition: all .2s; }
.reset-btn:hover { border-color: var(--black); color: var(--black); }
.content-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.results-count { font-size: 14px; color: var(--muted); }
.results-count strong { color: var(--black); font-weight: 700; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 34px; height: 34px; border: 1.5px solid var(--border); border-radius: 6px; background: #fff; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.view-btn svg { width: 15px; height: 15px; }
.view-btn.active, .view-btn:hover { border-color: var(--black); background: var(--black); color: #fff; }
.info-banner { background: rgba(245,184,0,0.06); border: 1px solid rgba(245,184,0,0.2); border-radius: 8px; padding: 13px 16px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px; }
.info-banner svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.info-banner p { font-size: 13px; color: #555; line-height: 1.6; }
.info-banner p strong { color: var(--black); }
.no-results { text-align: center; padding: 48px 20px; background: var(--gray); border-radius: 10px; }
.no-results p { font-size: 14px; color: var(--muted); }
.link-btn { background: none; border: none; color: var(--yellow); font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: underline; }
.products-grid.list-view { grid-template-columns: 1fr; }
.products-grid.list-view .product-card { display: grid; grid-template-columns: 220px 1fr; }
.products-grid.list-view .product-img { height: 100%; min-height: 140px; border-radius: 10px 0 0 10px; }

/* ── DEVIS ────────────────────────────────────────────────────── */
.steps-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 0 24px; }
.steps-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: stretch; }
.step-item { display: flex; align-items: center; gap: 12px; padding: 18px 20px 18px 0; position: relative; flex: 1; cursor: default; }
.step-item:not(:last-child)::after { content: '›'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 18px; color: #ccc; }
.step-num { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #bbb; flex-shrink: 0; transition: all .3s; }
.s-label { font-size: 11px; color: #bbb; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.s-name { font-size: 14px; font-weight: 600; color: #bbb; }
.step-item.active .step-num { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.step-item.active .s-label { color: var(--yellow); }
.step-item.active .s-name { color: var(--black); }
.step-item.done .step-num { background: var(--black); border-color: var(--black); color: #fff; }
.step-item.done .s-name, .step-item.done .s-label { color: #888; }

.devis-layout { max-width: 900px; margin: 36px auto; padding: 0 24px 60px; display: grid; grid-template-columns: 1fr 290px; gap: 26px; align-items: start; }
.form-card { background: #fff; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.form-section { padding: 26px 30px; border-bottom: 1px solid var(--border); }
.form-section:last-child { border-bottom: none; }
.form-section-title { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.form-section-num { width: 28px; height: 28px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 14px; font-weight: 800; color: var(--black); flex-shrink: 0; }
.form-section-num.muted { background: #e8e8e6; color: #888; }
.form-section-title h2 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--black); text-transform: uppercase; }
.form-section-title h2.muted { color: #aaa; }

.engin-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.engin-option { border: 1.5px solid var(--border); border-radius: 8px; padding: 16px 10px; text-align: center; cursor: pointer; transition: all .2s; position: relative; }
.engin-option:hover { border-color: #aaa; }
.engin-option.selected { border-color: var(--yellow); background: rgba(245,184,0,0.05); }
.engin-option.selected::after { content: '✓'; position: absolute; top: 6px; right: 8px; font-size: 11px; font-weight: 700; color: var(--yellow); }
.engin-label { font-size: 12px; font-weight: 600; color: var(--muted); }
.engin-option.selected .engin-label { color: var(--black); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row.full, .field { display: flex; flex-direction: column; gap: 5px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); }
.req { color: var(--yellow); margin-left: 2px; }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: 14px; color: var(--text); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 10px 14px; outline: none; transition: border-color .2s; background: #fff; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--yellow); }
.field select { appearance: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 12px center #fff; padding-right: 36px; cursor: pointer; }
.field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.hint { font-size: 12px; color: var(--muted); margin-top: 3px; }
.field-group { display: flex; flex-direction: column; }
.field-group label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }
.mt-18 { margin-top: 18px; }
.mt-20 { margin-top: 20px; }

.duration-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.dur-tab { border: 1.5px solid var(--border); border-radius: 6px; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--muted); background: #fff; transition: all .2s; }
.dur-tab:hover { border-color: #aaa; color: var(--text); }
.dur-tab.active { background: var(--black); border-color: var(--black); color: #fff; }

.date-range { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; }
.date-sep { font-size: 13px; color: var(--muted); text-align: center; padding-top: 22px; font-weight: 500; }

.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.check-item input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--yellow); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.check-item label { font-size: 14px; color: var(--text); cursor: pointer; line-height: 1.5; }
.check-item label span { font-size: 12px; color: var(--muted); display: block; }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-item { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--border); border-radius: 6px; padding: 10px 14px; cursor: pointer; transition: all .2s; flex: 1; min-width: 110px; }
.radio-item:hover { border-color: #aaa; }
.radio-item input[type=radio] { accent-color: var(--yellow); width: 15px; height: 15px; cursor: pointer; }
.radio-item label { font-size: 13px; font-weight: 600; color: var(--text); cursor: pointer; }
.radio-item:has(input:checked) { border-color: var(--yellow); background: rgba(245,184,0,0.04); }

.form-actions { padding: 22px 30px; background: #fafafa; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: var(--muted); line-height: 1.5; max-width: 260px; }
.btn-submit { background: var(--yellow); color: var(--black); font-size: 15px; font-weight: 700; padding: 13px 28px; border-radius: 6px; border: none; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-submit:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-back { background: transparent; color: var(--muted); border: 1.5px solid var(--border); border-radius: 6px; padding: 12px 20px; font-size: 14px; font-weight: 600; transition: all .2s; }
.btn-back:hover { border-color: var(--black); color: var(--black); }

.recap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.recap-row { padding: 8px 0; border-bottom: 1px solid #f0f0ee; }
.rr-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #999; margin-bottom: 2px; }
.rr-value { font-size: 14px; font-weight: 600; color: var(--black); }

.success-state { padding: 56px 30px; text-align: center; }
.success-icon { width: 68px; height: 68px; background: rgba(245,184,0,0.1); border: 2px solid var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 26px; color: var(--yellow); }
.success-state h2 { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--black); text-transform: uppercase; margin-bottom: 10px; }
.success-state p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 400px; margin: 0 auto 24px; }
.next-steps { background: var(--gray); border-radius: 10px; padding: 20px; text-align: left; max-width: 360px; margin: 0 auto 24px; font-size: 13px; color: var(--muted); }
.next-steps strong { color: var(--black); font-size: 14px; display: block; margin-bottom: 10px; }
.next-steps ol { padding-left: 18px; line-height: 2; }
.btn-back-cat { background: var(--black); color: #fff; font-size: 14px; font-weight: 600; padding: 12px 24px; border-radius: 6px; border: none; transition: all .2s; display: inline-block; }
.btn-back-cat:hover { background: #333; }

.devis-sidebar { display: flex; flex-direction: column; gap: 14px; }
.sidebar-card { background: #fff; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.sidebar-card-head { background: var(--black); padding: 14px 18px; }
.sidebar-card-head h3 { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-card-body { padding: 18px; }
.guarantee-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); padding: 8px 0; border-bottom: 1px solid #f2f2f0; }
.guarantee-item:last-child { border-bottom: none; }
.gi-check { width: 18px; height: 18px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--black); flex-shrink: 0; }
.how-step { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f2f2f0; }
.how-step:last-child { border-bottom: none; }
.how-num { width: 26px; height: 26px; background: rgba(245,184,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--yellow); flex-shrink: 0; }
.how-text { font-size: 13px; color: var(--text); font-weight: 500; }
.contact-dark { background: var(--black); border-radius: 8px; padding: 18px; }
.contact-dark p { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 14px; line-height: 1.6; }
.contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item span:first-child { font-size: 15px; }
.contact-item span:last-child { font-size: 13px; color: rgba(255,255,255,0.65); }
.contact-item a { font-size: 13px; color: var(--yellow); font-weight: 600; }

/* ── À PROPOS ─────────────────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-text p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 16px; }
.story-text p:last-child { margin-bottom: 0; }
.story-text strong { color: var(--black); }
.story-visual { background: var(--black); border-radius: 14px; padding: 34px; position: relative; overflow: hidden; }
.story-visual::before { content:''; position:absolute; top:-60px; right:-60px; width:220px; height:220px; background:var(--yellow); opacity:.07; border-radius:50%; }
.story-logo-big { font-family: var(--font-head); font-size: 68px; font-weight: 800; color: var(--yellow); line-height: .9; margin-bottom: 8px; position: relative; z-index: 1; }
.story-logo-sub { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.3); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; position: relative; z-index: 1; }
.story-divider { height: 2px; background: rgba(245,184,0,0.2); margin-bottom: 24px; position: relative; z-index: 1; }
.story-vals { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.story-val { display: flex; align-items: center; gap: 10px; }
.sv-dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }
.sv-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }

.atouts-section { background: var(--gray); }
.atouts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 44px; }
.atout-card { background: #fff; border-radius: 10px; border: 1px solid var(--border); padding: 26px 22px; transition: all .25s; }
.atout-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.07); }
.atout-icon { width: 42px; height: 42px; background: var(--yellow); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 18px; }
.atout-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--black); text-transform: uppercase; margin-bottom: 8px; }
.atout-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

.chiffres-section { background: var(--black); }
.chiffres-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.chiffre-block { text-align: center; padding: 48px 20px; border-right: 1px solid rgba(255,255,255,0.06); }
.chiffre-block:last-child { border-right: none; }
.chiffre-block .num { font-family: var(--font-head); font-size: 58px; font-weight: 800; color: var(--yellow); line-height: 1; margin-bottom: 6px; }
.chiffre-block .lbl { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.4; }

.engagements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 44px; align-items: start; }
.eng-list { display: flex; flex-direction: column; }
.eng-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid #eee; }
.eng-item:first-child { padding-top: 0; }
.eng-item:last-child { border-bottom: none; }
.eng-num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: rgba(245,184,0,0.2); line-height: 1; flex-shrink: 0; min-width: 34px; }
.eng-content h4 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--black); text-transform: uppercase; margin-bottom: 6px; }
.eng-content p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.eng-right { background: var(--yellow); border-radius: 14px; padding: 36px; position: sticky; top: 100px; }
.eng-right h3 { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--black); text-transform: uppercase; margin-bottom: 10px; }
.eng-right p { font-size: 14px; color: rgba(0,0,0,.5); line-height: 1.7; margin-bottom: 18px; }
.process-steps { display: flex; flex-direction: column; gap: 10px; }
.process-step { display: flex; align-items: center; gap: 12px; background: rgba(0,0,0,.06); border-radius: 8px; padding: 12px 14px; }
.ps-num { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: rgba(0,0,0,.3); flex-shrink: 0; min-width: 22px; }
.ps-text { font-size: 13px; font-weight: 600; color: rgba(0,0,0,.6); line-height: 1.4; }
.btn-devis-eng { background: var(--black); color: #fff; font-size: 14px; font-weight: 700; padding: 13px 24px; border-radius: 6px; border: none; margin-top: 18px; display: inline-block; transition: all .2s; }
.btn-devis-eng:hover { background: #333; }

.zone-section { background: var(--black); padding: 80px 24px; }
.zone-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.zone-text .stag { color: var(--yellow); }
.zone-text .stitle { color: #fff; }
.zone-text p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 22px; }
.zone-list { display: flex; flex-direction: column; gap: 10px; }
.zone-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); }
.zone-dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }
.zone-map { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 36px; text-align: center; min-height: 240px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.map-pin-icon { font-size: 42px; }
.map-address { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; text-align: center; }
.map-address strong { color: #fff; display: block; margin-bottom: 6px; font-family: var(--font-head); font-size: 16px; text-transform: uppercase; }

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-cards-band { background: var(--yellow); }
.contact-cards-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.cc { padding: 26px; border-right: 1px solid rgba(0,0,0,0.1); display: flex; align-items: center; gap: 14px; transition: background .2s; cursor: default; }
.cc:last-child { border-right: none; }
.cc:hover { background: rgba(0,0,0,0.05); }
.cc-icon { font-size: 24px; flex-shrink: 0; }
.cc-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(0,0,0,0.45); margin-bottom: 3px; }
.cc-val { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--black); line-height: 1.2; }

.contact-layout { max-width: 1200px; margin: 40px auto; padding: 0 24px 60px; display: grid; grid-template-columns: 1fr 360px; gap: 26px; align-items: start; }
.fc-head { background: var(--black); padding: 22px 28px; display: flex; align-items: center; gap: 14px; }
.fc-head-icon { font-size: 22px; width: 42px; height: 42px; background: var(--yellow); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-head h2 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: #fff; text-transform: uppercase; }
.fc-head p { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.fc-body { padding: 28px 28px 0; }
.fc-footer { padding: 18px 28px 26px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; }

.objet-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { border: 1.5px solid var(--border); border-radius: 20px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--muted); background: #fff; transition: all .2s; }
.pill:hover { border-color: #aaa; color: var(--text); }
.pill.active { background: var(--black); border-color: var(--black); color: #fff; }

.contact-sidebar { display: flex; flex-direction: column; gap: 14px; }
.info-card { background: #fff; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.ic-head { background: var(--black); padding: 14px 18px; }
.ic-head h3 { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.ic-body { padding: 16px 18px; }
.info-item { padding: 10px 0; border-bottom: 1px solid #f2f2f0; }
.info-item:last-child { border-bottom: none; }
.ii-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 3px; }
.ii-val { font-size: 14px; font-weight: 600; color: var(--black); }
.ii-val a { color: var(--yellow); }
.horaire-grid { display: flex; flex-direction: column; gap: 0; }
.h-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid #f2f2f0; font-size: 13px; }
.h-row:last-child { border-bottom: none; }
.h-day { color: var(--muted); font-weight: 500; }
.h-time { font-weight: 700; color: var(--black); }
.h-time.closed { color: #ccc; font-weight: 400; }
.h-row.highlight .h-day { color: var(--black); font-weight: 700; }
.h-row.highlight .h-time { color: var(--yellow); }
.horaire-note { margin-top: 12px; padding: 10px 12px; background: rgba(245,184,0,0.07); border-left: 3px solid var(--yellow); border-radius: 4px; font-size: 12px; color: #555; line-height: 1.5; }

.wa-card { background: linear-gradient(135deg,#25D366,#1da851); border-radius: 12px; padding: 18px; display: flex; align-items: center; gap: 14px; cursor: pointer; transition: opacity .2s; }
.wa-card:hover { opacity: .9; }
.wa-icon { font-size: 28px; }
.wa-t1 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; }
.wa-t2 { font-size: 12px; color: rgba(255,255,255,0.7); }

.map-card { background: var(--black); border-radius: 12px; overflow: hidden; }
.map-placeholder { height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.map-pin { font-size: 36px; }
.map-placeholder p { font-size: 13px; color: rgba(255,255,255,0.35); text-align: center; line-height: 1.5; }
.map-footer { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.06); }
.map-footer span { font-size: 13px; color: rgba(255,255,255,0.35); }
.map-btn { background: var(--yellow); color: var(--black); font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 4px; border: none; cursor: pointer; transition: all .2s; display: inline-block; }
.map-btn:hover { background: var(--yellow-dark); }

.si-icon { width: 64px; height: 64px; background: rgba(245,184,0,0.1); border: 2px solid var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 24px; color: var(--yellow); }
.success-state h3 { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--black); text-transform: uppercase; margin-bottom: 10px; }
.btn-reset { background: var(--black); color: #fff; font-size: 14px; font-weight: 600; padding: 11px 22px; border-radius: 6px; border: none; cursor: pointer; transition: all .2s; }
.btn-reset:hover { background: #333; }

.faq-section { max-width: 1200px; margin: 0 auto; padding: 0 24px 60px; }
.faq-title { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--black); text-transform: uppercase; margin-bottom: 6px; }
.faq-sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; cursor: pointer; gap: 12px; }
.faq-q:hover { background: #fafaf8; }
.faq-q span { font-size: 14px; font-weight: 600; color: var(--black); line-height: 1.4; }
.faq-arrow { width: 24px; height: 24px; background: var(--gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--muted); flex-shrink: 0; transition: all .3s; }
.faq-item.open .faq-arrow { background: var(--yellow); color: var(--black); transform: rotate(180deg); }
.faq-a { display: none; padding: 0 18px 16px; font-size: 14px; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 14px; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .atouts-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ph-inner { grid-template-columns: 1fr; }
  .ph-stats { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--black); padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.08); gap: 6px; }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .hero h1, .ph-inner h1 { font-size: 40px; }
  .section-title, .stitle { font-size: 32px; }
  .stats-inner, .chiffres-grid, .contact-cards-inner { grid-template-columns: repeat(2,1fr); }
  .cats-grid, .testi-grid, .products-grid, .atouts-grid { grid-template-columns: 1fr; }
  .story-grid, .engagements-grid, .why-grid, .zone-inner { grid-template-columns: 1fr; }
  .catalogue-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .devis-layout, .contact-layout { grid-template-columns: 1fr; }
  .devis-sidebar, .contact-sidebar { order: -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .engagements-grid { gap: 32px; }
  .eng-right { position: static; }
}
