/* ═══════════════════════════════════════════════════════════════════════════
   JEETK — Site public — Design System France 2026
   Palette : Bleu #0055A4 · Blanc #F0F0F0 · Rouge #EF4135 · Or #C9A84C
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── VARIABLES ────────────────────────────────────────────────────────────── */
:root {
  --bg:        #060b18;
  --bg-2:      #0a1020;
  --bg-3:      #0f172a;
  --bg-4:      #131d2e;
  --glass:     rgba(255,255,255,.04);
  --glass-b:   rgba(255,255,255,.08);

  --bleu:      #0055A4;
  --bleu-l:    #1a6fc4;
  --bleu-d:    #003d7a;
  --bleu-dim:  rgba(0,85,164,.14);
  --bleu-glow: rgba(0,85,164,.28);

  --rouge:     #EF4135;
  --rouge-l:   #f55a4e;
  --rouge-d:   #c0392b;
  --rouge-dim: rgba(239,65,53,.14);

  --blanc:     #f0f0f0;
  --or:        #C9A84C;
  --or-l:      #ddb95e;
  --or-dim:    rgba(201,168,76,.12);

  --text:      rgba(240,240,240,.95);
  --text-2:    rgba(240,240,240,.55);
  --text-3:    rgba(240,240,240,.28);
  --success:   #22c55e;

  --border:    rgba(255,255,255,.07);
  --border-s:  rgba(255,255,255,.04);

  --tricolore: linear-gradient(90deg, #0055A4 33.33%, #f0f0f0 33.33%, #f0f0f0 66.66%, #EF4135 66.66%);
  --r:    8px;
  --r-lg: 16px;
  --r-sm: 4px;
  --font:      'Space Grotesk', sans-serif;
  --font-s:    'Spectral', serif;
}

/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--bleu-dim); color: var(--bleu-l); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── BANDE TRICOLORE FIXE ─────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tricolore);
  z-index: 10000;
}

/* ── LOGO PNG ─────────────────────────────────────────────────────────────── */
.hdr-logo { height: 34px; width: auto; display: block; flex-shrink: 0; }
.ft-logo  { height: 18px; width: auto; display: block; opacity: .75; }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════════════════════ */
.hdr {
  position: sticky;
  top: 3px;
  z-index: 9000;
  height: 64px;
  background: rgba(6,11,24,.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.hdr-in {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px,3vw,48px);
}
.hdr-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hdr-brand-name {
  font-family: var(--font-s);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: .04em;
  line-height: 1;
}
.hdr-brand-sub {
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 3px;
  display: block;
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-link {
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color .2s, background .2s;
}
.hdr-link:hover  { color: var(--text); background: var(--glass-b); }
.hdr-link.active { color: #79b8f7; }
.hdr-actions { display: flex; align-items: center; gap: 8px; }
.btn-ghost-sm {
  padding: 7px 16px;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-ghost-sm:hover { border-color: rgba(255,255,255,.2); color: var(--text); }
.btn-primary-sm {
  padding: 7px 18px;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  background: var(--bleu);
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .2s, box-shadow .2s;
}
.btn-primary-sm:hover { background: var(--bleu-l); box-shadow: 0 0 20px var(--bleu-glow); }
.hdr-mob {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
}
.hdr-mob-menu {
  display: none;
  position: fixed;
  top: 67px; left: 0; right: 0;
  background: rgba(6,11,24,.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  z-index: 8999;
  flex-direction: column;
  gap: 0;
}
.hdr-mob-menu.open { display: flex; }
.hdr-mob-menu .hdr-link {
  padding: 14px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border-s);
  display: block;
}
.hdr-mob-cta { margin-top: 16px; text-align: center; display: block; padding: 12px !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO (sous-pages)
   ═══════════════════════════════════════════════════════════════════════════ */
.pg-hero {
  padding: 80px clamp(16px,3vw,48px) 72px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-s);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pg-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tricolore);
}
.pg-hero::after {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse,
    rgba(0,85,164,.14) 0%,
    rgba(239,65,53,.06) 45%,
    transparent 70%);
  pointer-events: none;
}
.pg-bc {
  font-size: .75rem;
  color: var(--text-3);
  letter-spacing: .06em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.pg-bc a { color: var(--bleu-l); }
.pg-bc a:hover { color: var(--blanc); }
.pg-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--bleu-dim);
  border: 1px solid rgba(0,85,164,.28);
  font-size: .75rem;
  font-weight: 600;
  color: #79b8f7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.pg-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bleu-l);
  animation: pulse-d 2s infinite;
}
@keyframes pulse-d {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.7); }
}
.pg-hero h1 {
  font-family: var(--font-s);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -.025em;
  margin-bottom: 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.pg-hero h1 .accent {
  background: linear-gradient(135deg, #79b8f7, var(--blanc) 50%, #f08080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pg-hero > p {
  font-size: clamp(.9375rem, 2vw, 1.125rem);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════════════════ */
.s-head { text-align: center; margin-bottom: 52px; }
.s-eyebrow {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bleu-l);
  margin-bottom: 12px;
}
.s-h2 {
  font-family: var(--font-s);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.s-p {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS WRAPPER
   ═══════════════════════════════════════════════════════════════════════════ */
.sct {
  padding: 80px clamp(16px,3vw,48px);
}
.sct-alt { background: var(--bg-2); }
.sct-inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* Tricolore separator */
.sct-alt {
  position: relative;
}
.sct-alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tricolore);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE / FEATURE CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-card {
  background: var(--bg-3);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bleu), var(--rouge));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.svc-card:hover { border-color: rgba(255,255,255,.13); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.28); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.svc-icon.blue  { background: var(--bleu-dim);  color: var(--bleu-l); }
.svc-icon.red   { background: var(--rouge-dim); color: var(--rouge-l); }
.svc-icon.gold  { background: var(--or-dim);    color: var(--or-l); }
.svc-icon.green { background: rgba(34,197,94,.12); color: #4ade80; }

.svc-badge {
  display: inline-flex;
  align-items: center;
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.svc-badge.blue  { background: var(--bleu-dim);  color: var(--bleu-l); border: 1px solid rgba(0,85,164,.2); }
.svc-badge.red   { background: var(--rouge-dim); color: var(--rouge-l); border: 1px solid rgba(239,65,53,.2); }
.svc-badge.gold  { background: var(--or-dim);    color: var(--or-l);    border: 1px solid rgba(201,168,76,.2); }
.svc-badge.green { background: rgba(34,197,94,.1); color: #4ade80;      border: 1px solid rgba(34,197,94,.2); }

.svc-card h3 {
  font-family: var(--font-s);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.svc-card .sd {
  font-size: .875rem;
  color: var(--text-3);
  margin-bottom: 16px;
  font-weight: 500;
}
.svc-list {
  list-style: none;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: .875rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-s);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li i { color: var(--success); font-size: .9375rem; flex-shrink: 0; margin-top: 1px; }


/* ═══════════════════════════════════════════════════════════════════════════
   DETAIL CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.det-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}
.det-card {
  background: var(--bg-4);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: border-color .25s, transform .2s;
}
.det-card:hover { border-color: rgba(0,85,164,.3); transform: translateY(-2px); }
.det-card .di {
  font-size: 1.625rem;
  color: var(--bleu-l);
  margin-bottom: 14px;
  display: block;
}
.det-card h3 {
  font-family: var(--font-s);
  font-size: 1.1250rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.det-card p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 88px clamp(16px,3vw,48px);
  background: var(--bg-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tricolore);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 350px;
  background: radial-gradient(ellipse,
    rgba(0,85,164,.1) 0%,
    rgba(239,65,53,.05) 50%,
    transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-inner .s-h2 { margin-bottom: 14px; }
.cta-inner .s-p  { margin-bottom: 32px; }
.cta-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.btn-cta.primary { background: var(--bleu); color: #fff; }
.btn-cta.primary:hover { background: var(--bleu-l); box-shadow: 0 0 28px var(--bleu-glow); transform: translateY(-1px); }
.btn-cta.outline { background: transparent; color: var(--text-2); border: 1px solid var(--border); }
.btn-cta.outline:hover { border-color: rgba(255,255,255,.25); color: var(--text); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER (slim — sous-pages)
   ═══════════════════════════════════════════════════════════════════════════ */
.footer-slim {
  background: var(--bg-3);
  border-top: 1px solid var(--border-s);
  padding: 20px clamp(16px,3vw,48px);
}
.footer-slim-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-slim-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--text-3);
}
.footer-slim-links {
  display: flex;
  gap: 20px;
}
.footer-slim-links a {
  font-size: .75rem;
  color: var(--text-3);
  transition: color .2s;
}
.footer-slim-links a:hover { color: var(--text-2); }

/* ═══════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.rv.v { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .svc-grid  { grid-template-columns: 1fr 1fr; }
  .det-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hdr-nav, .hdr-actions .btn-ghost-sm { display: none; }
  .hdr-mob { display: block; }
  .svc-grid  { grid-template-columns: 1fr; }
  .footer-slim-in { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .cta-links { flex-direction: column; align-items: center; }
  .pg-hero { padding: 64px 16px 56px; }
}
@media (min-width: 769px) { .hdr-nav { display: flex !important; } }

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.ct-form-wrap { }
.ct-alert {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.ct-alert i { font-size: 1.2rem; flex-shrink: 0; }
.ct-alert-ok  { background: rgba(0,200,100,.08); border: 1px solid rgba(0,200,100,.3); color: #4ade80; }
.ct-alert-err { background: rgba(239,65,53,.08);  border: 1px solid rgba(239,65,53,.3);  color: #f87171; }
.ct-form {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  padding: 2rem;
  border-radius: 2px;
}
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.ct-fg { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.ct-fg:last-of-type { margin-bottom: 1.5rem; }
.ct-fg label { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--or); }
.ct-fg input,
.ct-fg select,
.ct-fg textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--blanc);
  padding: .75rem 1rem;
  font-family: var(--font);
  font-size: .95rem;
  border-radius: 2px;
  transition: border-color .2s;
  outline: none;
}
.ct-fg input::placeholder,
.ct-fg textarea::placeholder { color: rgba(255,255,255,.3); }
.ct-fg input:focus,
.ct-fg select:focus,
.ct-fg textarea:focus { border-color: var(--or); }
.ct-fg select { cursor: pointer; }
.ct-fg select option { background: #0d1526; }
.ct-fg textarea { resize: vertical; min-height: 140px; }
.ct-fg-err input,
.ct-fg-err select,
.ct-fg-err textarea { border-color: #ef4444; }
.ct-err-msg { font-size: .8rem; color: #f87171; }
.ct-submit {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--bleu);
  color: #fff;
  border: none;
  padding: .85rem 2rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 0 24px rgba(0,85,164,.4);
}
.ct-submit:hover { opacity: .9; transform: translateY(-1px); }

/* Sidebar */
.ct-info-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 2px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.ct-info-icon {
  width: 40px; height: 40px;
  background: rgba(0,85,164,.18);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bleu-l);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.ct-info-card h3 { font-size: .9rem; font-weight: 600; margin-bottom: .5rem; }
.ct-info-card p  { font-size: .9rem; color: var(--text-2); line-height: 1.6; }
.ct-link { color: var(--or); text-decoration: none; }
.ct-link:hover { text-decoration: underline; }
.ct-audit-cta {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0,85,164,.1);
  border: 1px solid rgba(0,85,164,.3);
  border-radius: 2px;
}
.ct-audit-cta i { font-size: 1.4rem; color: var(--bleu-l); flex-shrink: 0; margin-top: .1rem; }
.ct-audit-cta strong { display: block; margin-bottom: .25rem; }
.ct-audit-cta p { font-size: .85rem; color: var(--text-2); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   À PROPOS PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.ap-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ap-story-text .s-eyebrow { margin-bottom: .75rem; }
.ap-story-text h2 { margin-bottom: 1.25rem; }
.ap-story-text p { color: var(--text-2); line-height: 1.7; }
.ap-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.ap-stat {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 2px;
  padding: 1.5rem;
  text-align: center;
}
.ap-stat-val {
  font-size: 2rem;
  font-weight: 700;
  color: var(--or);
  letter-spacing: -.02em;
  font-family: 'JetBrains Mono', monospace;
}
.ap-stat-label { font-size: .8rem; color: var(--text-2); text-transform: uppercase; letter-spacing: .06em; margin-top: .4rem; }

.ap-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.ap-feat {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 2px;
  padding: 1.5rem;
  transition: border-color .2s, background .2s;
}
.ap-feat:hover {
  border-color: rgba(201,168,76,.3);
  background: rgba(255,255,255,.04);
}
.ap-feat > i { font-size: 1.5rem; color: var(--or); display: block; margin-bottom: .75rem; }
.ap-feat h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.ap-feat p  { font-size: .85rem; color: var(--text-2); line-height: 1.6; }

@media (max-width: 1200px) { .ap-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px)  {
  .ct-grid    { grid-template-columns: 1fr; }
  .ct-row     { grid-template-columns: 1fr; }
  .ap-story   { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px)  {
  .ap-feat-grid   { grid-template-columns: 1fr; }
  .ap-stats-grid  { grid-template-columns: 1fr 1fr; }
}
