/* ════════════════════════════════════════════
   ALTIDEAL — style.css
   Direction artistique : premium outdoor / blanc épuré
════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ════════════════════════════════════════════
   RESET & ROOT
════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary:        #2D5F2D;   /* vert forêt — boutons, actifs, meilleur prix */
  --primary-light:  #3D7A3D;   /* vert légèrement clair */
  --primary-dark:   #1E4620;   /* vert foncé — hover boutons */
  --accent:         #D97706;   /* orange terre — UNIQUEMENT badges promo */
  --danger:         #DC2626;   /* rouge — codes expirés */
  --bg:             #FFFFFF;
  --surface:        #F5F5F5;   /* sections alternées */
  --surface2:       #EFEFEF;   /* hover, éléments secondaires */
  --border:         #E5E5E5;
  --text:           #1A1A1A;
  --muted:          #6B7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-inner {
  width: 100%;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  width: 320px; flex-shrink: 0;
  flex-shrink: 0;
}

.logo-icon { height: 56px; width: auto; flex-shrink: 0; }

.logo-words { display: flex; flex-direction: column; line-height: 1; }

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 3px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* ── NAV LINKS ── */
.header-nav {
  display: flex; align-items: center; gap: 0.5rem;
  flex: 1; justify-content: center;
}

.nav-link {
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem; font-weight: 600;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 700; }

/* ── SEARCH ── */
.header-search {
  width: 320px; flex-shrink: 0; position: relative;
}

.header-search input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.75rem;
  background: #fff;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  color: var(--text); font-size: 0.88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
}

.header-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(45,95,45,0.12);
}

.header-search input::placeholder { color: var(--muted); }

.search-icon {
  position: absolute; left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}

/* ── STATS ── */
.header-stats {
  display: flex; gap: 1.75rem;
  margin-left: auto; flex-shrink: 0;
}

.stat { text-align: center; }
.stat-val { font-size: 1rem; font-weight: 800; color: var(--primary); }
.stat-lbl { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 1px; }

/* ── HAMBURGER ── */
.nav-btn {
  display: none;
  background: none; border: none;
  color: var(--text); font-size: 1.35rem;
  cursor: pointer; padding: 0.25rem;
  margin-left: auto;
  line-height: 1;
}

/* ── MOBILE NAV DROPDOWN ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.5rem 1rem;
  gap: 0.1rem;
}

.mobile-nav.open { display: flex; }

/* Barre de recherche dans le menu mobile */
.mobile-nav .header-search {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s, background 0.15s;
}

.mobile-nav-link:hover { color: var(--primary); background: var(--surface); }
.mobile-nav-link.active { color: var(--primary); background: var(--surface); font-weight: 700; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  background: var(--surface);
  padding: 7rem 1.5rem 6rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-inner { max-width: 760px; margin: auto; }

.hero-logo {
  display: block;
  width: auto;
  max-width: 320px;
  height: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 4px 16px rgba(45,95,45,0.14));
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--primary);
  font-size: 0.72rem; font-weight: 700;
  padding: 0; margin-bottom: 2rem;
  text-transform: uppercase; letter-spacing: 0.14em;
}

.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 520px; margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #fff; font-size: 0.85rem; font-weight: 700;
  border-radius: 6px;
  cursor: pointer; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: background 0.2s, border-color 0.2s;
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text); font-size: 0.85rem; font-weight: 700;
  border-radius: 6px; cursor: pointer; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
}

.btn-hero-ghost:hover { background: var(--text); color: #fff; }

.hero-numbers {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; margin-top: 4rem; flex-wrap: wrap;
}

.hero-num { text-align: center; }

.hero-num-val {
  font-size: 2rem; font-weight: 900;
  color: var(--primary);
}

.hero-num-lbl {
  font-size: 0.72rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px;
  font-weight: 500;
}

.hero-divider { width: 1px; height: 36px; background: #D1D5DB; }

/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.how-section {
  padding: 6rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-eyebrow {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.section-title span { color: var(--primary); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px; margin: auto;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.25rem; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 1px;
  background: var(--border);
  pointer-events: none;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.step-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.step-num {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary);
  color: #fff; font-size: 0.72rem; font-weight: 800;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}

.step-icon { margin-bottom: 1rem; display: block; color: var(--primary); }
.step-title { font-size: 1rem; font-weight: 800; margin-bottom: 0.65rem; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; }
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════════════
   CATEGORIES SHOWCASE
════════════════════════════════════════════ */
.cats-section { padding: 6rem 1.5rem; background: var(--surface); border-bottom: 1px solid var(--border); }

.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 860px; margin: auto;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.25rem 1rem;
  text-align: center;
  cursor: pointer; text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.cat-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.cat-card-icon { display: block; margin-bottom: 0.85rem; color: var(--primary); }
.cat-card-icon img { max-width: 100%; height: auto; }
.cat-card-name { font-size: 0.88rem; font-weight: 800; color: var(--text); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cat-card-count { font-size: 0.75rem; color: var(--muted); }

/* ════════════════════════════════════════════
   CATALOGUE (comparateur.html)
════════════════════════════════════════════ */
#catalogue {
  max-width: 1400px; margin: auto;
  padding: 3rem 1.5rem 4rem;
}

.catalogue-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.catalogue-title {
  font-size: 1.1rem; font-weight: 900;
  letter-spacing: 0.05em; text-transform: uppercase;
}

.filters-bar {
  display: flex; align-items: center;
  gap: 0.75rem; margin-bottom: 1.75rem; flex-wrap: wrap;
}

.filter-group { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all 0.15s;
  display: flex; align-items: center; gap: 0.45rem;
  white-space: nowrap; font-family: inherit;
}

.filter-btn:hover { border-color: var(--primary); color: var(--primary); }

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.sort-select {
  margin-left: auto;
  padding: 0.45rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text); font-size: 0.82rem;
  cursor: pointer; outline: none; flex-shrink: 0;
  font-family: inherit;
}

.sort-select option { background: #fff; }

.results-bar {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 1.5rem;
}

.results-count { font-size: 0.85rem; color: var(--muted); }
.results-count strong { color: var(--text); font-weight: 700; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

/* ════════════════════════════════════════════
   CARD
════════════════════════════════════════════ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  border-color: #D1D5DB;
}

.card.best-card {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 4px 16px rgba(0,0,0,0.08);
}

.badge-best {
  position: absolute; top: 12px; right: 12px;
  background: var(--primary);
  color: #fff; font-size: 0.64rem; font-weight: 700;
  padding: 0.2rem 0.55rem; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.07em; z-index: 1;
}

/* ── Image produit ── */
.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}

.card-emoji { font-size: 3.5rem; display: block; }

.card-body {
  padding: 1.1rem 1.1rem 0.5rem;
  display: flex; flex-direction: column; gap: 0.85rem; flex: 1;
}

.card-top {
  display: flex; align-items: center;
  justify-content: space-between; gap: 0.5rem;
}

.cat-badge {
  font-size: 0.64rem; font-weight: 700;
  padding: 0.16rem 0.5rem; border-radius: 4px;
  background: transparent;
  color: var(--muted); border: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.06em;
}

.card-discount {
  background: rgba(217,119,6,0.08); color: var(--accent);
  border: 1px solid rgba(217,119,6,0.18);
  font-size: 0.74rem; font-weight: 700;
  padding: 0.16rem 0.48rem; border-radius: 4px;
}

.card-name { font-size: 0.92rem; font-weight: 700; line-height: 1.35; color: var(--text); }

.best-offer-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem 0.9rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}

.best-offer-header {
  display: flex; align-items: center; justify-content: space-between;
}

/* ── Site pills — tintés, sobres ── */
.site-pill {
  display: inline-flex; align-items: center;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.18rem 0.55rem; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.04em;
  border: 1px solid;
}

.site-Amazon    { background: rgba(255,153,0,0.08);  color: #B36B00; border-color: rgba(255,153,0,0.2); }
.site-Decathlon { background: rgba(0,130,195,0.08);  color: #0082C3; border-color: rgba(0,130,195,0.2); }
.site-Alltricks { background: rgba(255,102,0,0.08);  color: #CC5200; border-color: rgba(255,102,0,0.2); }
.site-IRun      { background: rgba(0,177,64,0.08);   color: #007A2A; border-color: rgba(0,177,64,0.2); }
.site-Snowleader{ background: rgba(2,136,209,0.08);  color: #0277BD; border-color: rgba(2,136,209,0.2); }
.site-Ekosport  { background: rgba(229,57,53,0.08);  color: #C62828; border-color: rgba(229,57,53,0.2); }

.offer-prices {
  display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap;
}

.price-final { font-size: 1.6rem; font-weight: 900; color: var(--text); line-height: 1; }
.price-original { font-size: 0.86rem; color: var(--muted); text-decoration: line-through; }

.price-savings {
  font-size: 0.74rem; color: var(--primary);
  background: rgba(45,95,45,0.08);
  padding: 0.1rem 0.4rem; border-radius: 4px; font-weight: 700;
}

.best-code-row { display: flex; align-items: center; gap: 0.5rem; }

.best-code-label {
  font-size: 0.65rem; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em; flex-shrink: 0;
}

.code-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(45,95,45,0.06);
  border: 1px dashed rgba(45,95,45,0.3);
  border-radius: 5px; padding: 0.25rem 0.6rem;
  cursor: pointer; transition: background 0.15s;
  flex: 1; min-width: 0;
}

.code-chip:hover { background: rgba(45,95,45,0.12); }

.code-chip-text {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem; font-weight: 700;
  color: var(--primary); letter-spacing: 0.07em;
  flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.code-chip-val { font-size: 0.7rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.code-copy-icon { font-size: 0.7rem; color: var(--muted); flex-shrink: 0; }

.toggle-offers-btn {
  width: 100%; background: #fff;
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--muted); font-size: 0.78rem; font-weight: 600;
  padding: 0.45rem 0.75rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color 0.15s, color 0.15s;
  font-family: inherit;
}

.toggle-offers-btn:hover {
  border-color: var(--primary); color: var(--primary);
}

.toggle-arrow { display: inline-block; transition: transform 0.25s; }
.toggle-arrow.open { transform: rotate(180deg); }

.other-offers-panel {
  display: none; flex-direction: column; gap: 0.4rem; margin-top: 0.1rem;
}

.other-offers-panel.open { display: flex; }

.other-offer-row {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.55rem 0.8rem; flex-wrap: wrap;
}

.other-offer-prices { display: flex; align-items: baseline; gap: 0.4rem; flex: 1; }

.other-price-final { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.other-price-orig  { font-size: 0.74rem; color: var(--muted); text-decoration: line-through; }

.other-discount {
  font-size: 0.68rem; font-weight: 700; color: var(--muted);
  background: #fff; border: 1px solid var(--border);
  padding: 0.08rem 0.35rem; border-radius: 4px;
}

.other-code-chip {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(45,95,45,0.06);
  border: 1px dashed rgba(45,95,45,0.25);
  border-radius: 4px; padding: 0.16rem 0.45rem;
  cursor: pointer; transition: background 0.15s;
  font-family: 'Courier New', monospace;
  font-size: 0.7rem; font-weight: 700; color: var(--primary);
}

.other-code-chip:hover { background: rgba(45,95,45,0.12); }

.other-code-chip.expired {
  border-style: solid; border-color: rgba(220,38,38,0.2);
  background: rgba(220,38,38,0.04);
  color: var(--danger); cursor: default; opacity: 0.7;
  text-decoration: line-through;
}

.no-code { font-size: 0.7rem; color: var(--muted); font-style: italic; }

.card-footer { padding: 0.75rem 1rem 1rem; display: flex; gap: 0.5rem; align-items: flex-start; }

.offer-links { flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }

.btn-primary {
  width: 100%; padding: 0.6rem;
  background: var(--primary);
  border: 1px solid var(--primary); border-radius: 6px;
  color: #fff; font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: background 0.15s;
  text-decoration: none; text-align: center; display: block;
  font-family: inherit; letter-spacing: 0.03em; text-transform: uppercase;
}

.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-offer-secondary {
  width: 100%; padding: 0.5rem 0.6rem;
  background: #fff; color: var(--primary);
  border: 1px solid var(--primary); border-radius: 6px;
  font-size: 0.7rem; font-weight: 600; cursor: pointer;
  text-align: center; text-decoration: none; display: block;
  transition: all 0.15s; font-family: inherit; letter-spacing: 0.03em;
  text-transform: uppercase;
}
.btn-offer-secondary:hover { background: var(--primary); color: #fff; }

.btn-fav {
  width: 38px; height: 38px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; color: var(--muted); font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; flex-shrink: 0;
}

.btn-fav:hover { color: #E53935; border-color: #E53935; }
.btn-fav.active { color: #E53935; border-color: #E53935; background: rgba(229,57,53,0.05); }

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  background: #1A1A1A;
  padding: 5rem 1.5rem; text-align: center;
  border: none;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900; margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.cta-banner p {
  color: rgba(255,255,255,0.6); font-size: 0.95rem;
  max-width: 480px; margin: 0 auto 2.25rem; line-height: 1.65;
}

/* ════════════════════════════════════════════
   INNER PAGES (about, mentions, confidentialite, contact)
════════════════════════════════════════════ */
.page-hero {
  padding: 4.5rem 1.5rem 3.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 860px; margin: auto;
}

.page-eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900; letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted); font-size: 0.95rem; line-height: 1.65; max-width: 540px;
}

.page-content {
  max-width: 860px; margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.page-section { margin-bottom: 2.75rem; }

.page-section h2 {
  font-size: 0.85rem; font-weight: 800;
  margin-bottom: 1rem; color: var(--text);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.page-section p {
  color: var(--muted); font-size: 0.9rem; line-height: 1.75;
  margin-bottom: 0.6rem;
}

.page-section ul {
  list-style: none; display: flex; flex-direction: column; gap: 0.45rem;
  padding-left: 0.5rem;
}

.page-section ul li {
  color: var(--muted); font-size: 0.9rem; line-height: 1.7;
  padding-left: 1.1rem; position: relative;
}

.page-section ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--primary); font-size: 0.8rem; font-weight: 700;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem; align-items: start;
}

.contact-info h2 { font-size: 1rem; font-weight: 800; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info > p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 2rem; }

.contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted); font-size: 0.85rem;
}

.contact-item:last-child { border-bottom: none; }
.contact-item-icon { font-size: 1.1rem; flex-shrink: 0; }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px; padding: 2.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.form-card h2 { font-size: 0.9rem; font-weight: 800; margin-bottom: 1.75rem; text-transform: uppercase; letter-spacing: 0.06em; }

.form-row { margin-bottom: 1.25rem; }

.form-row label {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.45rem;
  text-transform: uppercase; letter-spacing: 0.07em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: #fff;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  color: var(--text); font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none; resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(45,95,45,0.12);
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: #9CA3AF; }
.form-row select option { background: #fff; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  width: 100%; padding: 0.8rem;
  background: var(--primary);
  border: none; border-radius: 6px;
  color: #fff; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; transition: background 0.15s;
  font-family: inherit; text-transform: uppercase; letter-spacing: 0.07em;
}

.btn-submit:hover { background: var(--primary-dark); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  background: #1A1A1A;
  border-top: none;
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1400px; margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; pointer-events: none; }

footer .logo-icon { filter: brightness(0) invert(1); }
footer .logo-text { color: #fff; }
footer .logo-tagline { color: rgba(255,255,255,0.45); }

.footer-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 280px;
}

.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; color: rgba(255,255,255,0.6); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.15s;
}

.social-btn:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.12); }

.footer-col h4 {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9); margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.15s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  max-width: 1400px; margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* Mention d'affiliation dans le footer */
.footer-affiliation {
  width: 100%;
  text-align: center;
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.3) !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Notice d'affiliation dans le comparateur */
.affiliation-notice {
  max-width: 900px;
  margin: 0 auto 2rem;
  background: rgba(45,95,45,0.06);
  border: 1px solid rgba(45,95,45,0.15);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4); text-decoration: none;
  font-size: 0.78rem; transition: color 0.15s;
}

.footer-bottom a:hover { color: #fff; }

.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   TOAST
════════════════════════════════════════════ */
#toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: #1A1A1A;
  border: 1px solid var(--primary); color: var(--primary);
  padding: 0.7rem 1.25rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 600;
  z-index: 999; opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

#toast.show { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════
   CATÉGORIES TRAIL (emojis, 5 colonnes)
════════════════════════════════════════════ */
.cats-grid--trail { grid-template-columns: repeat(5, 1fr); }

.cat-card-emoji {
  font-size: 3rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.85rem;
}

/* ════════════════════════════════════════════
   SECTION À LA UNE
════════════════════════════════════════════ */
.featured-section {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.featured-grid {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.featured-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.featured-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-3px); }
.featured-card--placeholder { opacity: 0.7; cursor: default; }
.featured-card--placeholder:hover { box-shadow: none; transform: none; }

.featured-img-wrap { position: relative; }

.featured-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e8f0e8 0%, #d4e6d4 100%);
}

.featured-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.featured-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.featured-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.featured-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.featured-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.featured-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.featured-date { font-size: 0.78rem; color: var(--muted); }
.featured-read-more { font-size: 0.82rem; font-weight: 700; color: var(--primary); }

.featured-cta { text-align: center; }

/* ════════════════════════════════════════════
   PAGE MAGAZINE (articles.html)
════════════════════════════════════════════ */
.articles-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2.5rem 5rem;
}

.articles-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.article-filter-btn {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.article-filter-btn:hover,
.article-filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.article-card:not(.article-card--soon):hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-3px); }
.article-card--soon { opacity: 0.65; }

.article-card-img-wrap { position: relative; }

.article-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #e8f0e8 0%, #d4e6d4 100%);
}

.article-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.article-card-tag {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.article-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.article-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.article-card-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.article-card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.article-card-date { font-size: 0.78rem; color: var(--muted); }
.article-card-time { font-size: 0.78rem; color: var(--muted); }
.article-card-soon-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(217,119,6,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* ════════════════════════════════════════════
   PAGE ARTICLE INDIVIDUEL
════════════════════════════════════════════ */
.article-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2.5rem 3rem;
}

.article-hero-inner { max-width: 860px; margin: 0 auto; }

.article-breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.article-breadcrumb a { color: var(--muted); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--primary); }

.article-tag-hero {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.article-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.article-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.article-dot { color: var(--border); }

.article-intro {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  border-left: 3px solid var(--primary);
  padding-left: 1.25rem;
}

/* Layout article : sommaire + corps */
.article-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Sommaire */
.article-toc { position: sticky; top: 90px; }

.toc-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.toc-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.toc-list { list-style: none; padding: 0; margin: 0; counter-reset: toc; }

.toc-list li { counter-increment: toc; margin-bottom: 0.5rem; }

.toc-list a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  gap: 0.5rem;
  line-height: 1.4;
  transition: color 0.15s;
}

.toc-list a::before {
  content: counter(toc) ".";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.toc-list a:hover { color: var(--primary); }

/* Corps article */
.article-body h2 {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--surface);
}

.article-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }

.article-body p { font-size: 1rem; color: var(--text); line-height: 1.75; margin-bottom: 1rem; }

.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-body li { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 0.4rem; }

/* Encadré produit dans article */
.product-card-article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 220px 1fr;
}

.pca-img-wrap { background: var(--surface); display: flex; align-items: center; justify-content: center; }

.pca-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: contain;
  padding: 0.75rem;
}

.pca-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, #e8f0e8 0%, #d4e6d4 100%);
}

.pca-content { padding: 1.5rem; }

.pca-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; }

.pca-name { font-size: 1.15rem; font-weight: 900; color: var(--text); }

.pca-stars { color: #F59E0B; font-size: 1rem; }
.pca-score { font-size: 0.85rem; font-weight: 700; color: var(--muted); }

.pca-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.75rem; }

.pca-specs { list-style: none; padding: 0; margin-bottom: 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; }
.pca-specs li { font-size: 0.85rem; color: var(--text); }

.pca-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
  background: var(--surface);
  border-radius: 8px;
  padding: 1rem;
}

.pca-pros ul, .pca-cons ul { list-style: none; padding: 0; margin: 0.4rem 0 0; }
.pca-pros li, .pca-cons li { font-size: 0.83rem; color: var(--muted); margin-bottom: 0.25rem; }
.pca-pros strong, .pca-cons strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }

.pca-price-row { display: flex; justify-content: space-between; align-items: center; }
.pca-price-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.pca-price-val { font-size: 1.4rem; font-weight: 900; color: var(--primary); }

.pca-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}

.pca-btn:hover { background: var(--primary-dark, #1e4a1e); }

/* Tableau comparatif */
.article-table-wrap { overflow-x: auto; margin: 1rem 0 2rem; }

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.article-table th {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.article-table tr:nth-child(even) td { background: var(--surface); }

/* CTA box dans article */
.article-cta-box {
  background: linear-gradient(135deg, #e8f0e8 0%, #d4e6d4 100%);
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.article-cta-box p { margin: 0; font-size: 0.95rem; }

/* FAQ */
.faq-list { margin-top: 1rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-question::after { content: "+"; font-size: 1.2rem; color: var(--primary); font-weight: 300; }
details[open] .faq-question::after { content: "−"; }

.faq-answer { padding: 0 1.25rem 1rem; font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.faq-answer p { margin: 0; }
.faq-answer a { color: var(--primary); }

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .cats-grid  { grid-template-columns: repeat(3, 1fr); }
  .cats-grid--trail { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .header-stats { gap: 1.25rem; }
  .header-nav .nav-link { padding: 0.4rem 0.6rem; font-size: 0.8rem; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .product-card-article { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .header-inner { height: 60px; gap: 0.75rem; }
  .header-stats { display: none; }
  .logo-tagline { display: none; }
  .logo { width: auto; }
  .header-search { display: none; }
  .header-nav { display: none; }
  .nav-btn { display: block; }

  /* Hero */
  .hero { padding: 4.5rem 1.25rem 4rem; }
  .hero-logo { max-width: 200px; width: 60vw; }
  .hero-numbers { gap: 1.5rem; }
  .hero-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-ghost { text-align: center; justify-content: center; }

  /* How */
  .how-section { padding: 4rem 1.25rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 440px; }
  .steps-grid::before { display: none; }

  /* Cats */
  .cats-section { padding: 4rem 1.25rem; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid--trail { grid-template-columns: repeat(2, 1fr); }

  /* À la une */
  .featured-section { padding: 3.5rem 1.25rem; }
  .featured-grid { grid-template-columns: 1fr; }

  /* Magazine */
  .articles-section { padding: 2rem 1.25rem 4rem; }
  .articles-grid { grid-template-columns: 1fr; }

  /* Article individuel */
  .article-hero { padding: 2.5rem 1.25rem 2rem; }
  .article-hero h1 { font-size: 1.5rem; }
  .article-layout { padding: 2rem 1.25rem 4rem; grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .product-card-article { grid-template-columns: 1fr; }
  .pca-img-placeholder { min-height: 180px; }
  .article-cta-box { flex-direction: column; text-align: center; }

  /* Catalogue */
  #catalogue { padding: 2rem 1rem 3rem; }
  .filters-bar { gap: 0.5rem; }
  .sort-select { margin-left: 0; width: 100%; }
  .products-grid { grid-template-columns: 1fr; }

  /* Inner pages */
  .page-hero { padding: 3rem 1.25rem 2.5rem; }
  .page-content { padding: 2rem 1rem 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* CTA banner */
  .cta-banner { padding: 3.5rem 1.25rem; }
}

@media (max-width: 400px) {
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.7rem; }
}
