/* ============================================================
   TSN Déménagement — Feuille de style commune (tsndem.fr)
   ============================================================ */

:root {
  --navy: #0f2c4d;
  --navy-dk: #0a2038;
  --blue: #1d62b3;
  --blue-lt: #eaf2fb;
  --accent: #f97316;
  --accent-dk: #ea580c;
  --grey-50: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  --grey-400: #94a3b8;
  --grey-600: #475569;
  --grey-800: #1e293b;
  --white: #ffffff;
  --text: #16202e;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(15, 44, 77, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 44, 77, 0.15);
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4rem 0; }

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.18; }

.section-label {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 1rem; }
.section-intro { color: var(--grey-600); font-size: 1.02rem; max-width: 640px; margin-bottom: 2.6rem; }
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
  cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(249,115,22,0.35); }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--grey-300); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--blue-lt); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-200);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo {
  width: 64px; height: 64px; border-radius: 14px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(15,44,77,0.25);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); line-height: 1; }
.brand-name span { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 0.4rem; list-style: none; }
.nav-links a {
  padding: 0.55rem 0.9rem; border-radius: 8px;
  font-size: 0.92rem; font-weight: 500; color: var(--grey-600); transition: all 0.18s;
}
.nav-links a:hover { color: var(--navy); background: var(--grey-100); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-phone { font-weight: 700; color: var(--navy); font-size: 0.95rem; white-space: nowrap; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; text-align: center;
  padding: 5.5rem 0 5rem;
  background: linear-gradient(135deg, rgba(10,32,56,0.92), rgba(29,98,179,0.82)),
              url('https://images.unsplash.com/photo-1431274172761-fca41d930114?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.2rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 620px; margin: 0 auto 2rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Page banner (inner pages) */
.page-banner {
  position: relative; color: #fff; text-align: center; padding: 3.5rem 0;
  background: linear-gradient(135deg, rgba(10,32,56,0.93), rgba(29,98,179,0.85)),
              url('https://images.unsplash.com/photo-1530124566582-a618bc2615dc?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.page-banner h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
.page-banner p { color: rgba(255,255,255,0.85); margin-top: 0.6rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.9); }

/* ---------- Stats ---------- */
.stats { background: var(--navy); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; color: #fff; padding: 0.5rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--accent); display: block; line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.5rem; display: block; }

/* ---------- Cards grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; align-items: center; }

.card {
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius);
  padding: 1.8rem; transition: all 0.25s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--blue-lt); }
.card-icon {
  width: 54px; height: 54px; border-radius: 12px; background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card p { color: var(--grey-600); font-size: 0.94rem; }

/* feature list */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--grey-600); }
.checklist li::before { content: '✓'; color: #fff; background: var(--accent); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* media block */
.media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.media img,
.media video { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* emplacement photo à remplacer */
.photo-placeholder {
  border: 2px dashed var(--grey-300); border-radius: var(--radius);
  background: var(--grey-50); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  aspect-ratio: 4/3; padding: 2rem; color: var(--grey-400);
}
.photo-placeholder .ph-icon { font-size: 2.6rem; margin-bottom: 0.6rem; }
.photo-placeholder strong { color: var(--grey-600); display: block; margin-bottom: 0.3rem; }
.photo-placeholder span { font-size: 0.85rem; }

/* cases cliquables + popup */
.info-boxes { display: flex; flex-direction: column; gap: 0.9rem; }
.info-box {
  display: flex; align-items: center; gap: 0.9rem; width: 100%; text-align: left;
  background: #fff; border: 1.5px solid var(--grey-200); border-radius: 12px;
  padding: 1rem 1.2rem; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy);
  transition: all 0.2s;
}
.info-box:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.info-box-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.info-box-label { flex: 1; }
.info-box-plus { color: var(--accent); font-size: 1.4rem; font-weight: 700; line-height: 1; }

.info-modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,32,56,0.55);
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
.info-modal.open { display: flex; }
.info-modal-card {
  background: #fff; border-radius: var(--radius); max-width: 560px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  padding: 2.2rem 2rem; position: relative; box-shadow: var(--shadow-lg);
  animation: modalIn 0.2s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.info-modal-body h3 { font-size: 1.45rem; margin-bottom: 0.9rem; padding-right: 1.5rem; }
.info-modal-body p { color: var(--grey-600); font-size: 1rem; margin-bottom: 1rem; }
.info-modal-body p:last-child { margin-bottom: 0; }
.info-modal-body .modal-lead { color: var(--navy); font-weight: 600; }
.info-modal-close {
  position: absolute; top: 0.7rem; right: 1rem; background: #fff; border: none;
  font-size: 1.8rem; line-height: 1; color: var(--grey-400); cursor: pointer;
}
.info-modal-close:hover { color: var(--navy); }

/* case (card) cliquable */
.card-clickable { cursor: pointer; }
.card-clickable:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.card-more { display: inline-block; margin-top: 1rem; color: var(--accent); font-weight: 700; font-size: 0.9rem; }

.motion-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  max-height: 480px;
  background: var(--grey-50);
  isolation: isolate;
}
.motion-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.motion-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: motionPan 12s ease-in-out infinite;
  filter: saturate(1.08) contrast(1.02);
}
.motion-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  transform: scale(1.06);
}
.motion-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,44,77,0.08), rgba(29,98,179,0.03));
  z-index: 1;
}
.motion-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px;
  mix-blend-mode: screen;
  opacity: 0.08;
  animation: shimmer 4s linear infinite;
}

@keyframes motionPan {
  0% { transform: scale(1.08) translate3d(0, 0, 0); }
  25% { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
  50% { transform: scale(1.1) translate3d(1.2%, 0.8%, 0); }
  75% { transform: scale(1.12) translate3d(-0.8%, 1.1%, 0); }
  100% { transform: scale(1.08) translate3d(0, 0, 0); }
}

@keyframes shimmer {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 0 0, 28px 28px; }
}

/* ---------- Formules ---------- */
.formules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.formule {
  background: #fff; border: 2px solid var(--grey-200); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center; transition: all 0.25s; position: relative;
}
.formule:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow); }
.formule.featured { border-color: var(--accent); }
.formule-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.9rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.06em; }
.formule-emoji { font-size: 2.2rem; margin-bottom: 0.8rem; }
.formule h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.formule .price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--accent); font-weight: 900; margin: 0.6rem 0; }
.formule p { font-size: 0.9rem; color: var(--grey-600); margin-bottom: 1.2rem; }
.formule ul { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.4rem; }
.formule ul li { font-size: 0.88rem; color: var(--grey-600); padding-left: 1.4rem; position: relative; }
.formule ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.step { background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 2rem 1.4rem; position: relative; }
.step-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--blue-lt); position: absolute; top: 0.6rem; right: 1rem; }
.step-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--grey-600); }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* bandeau d'avis qui défile de droite à gauche */
.testimonials-marquee { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.testimonials-track { display: flex; width: max-content; animation: testimonials-scroll 50s linear infinite; }
.testimonials-track:hover { animation-play-state: paused; }
.testimonials-marquee .testimonial { flex: 0 0 340px; width: 340px; margin-right: 1.5rem; box-sizing: border-box; }
@keyframes testimonials-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .testimonials-track { animation: none; flex-wrap: wrap; justify-content: center; } }
.testimonial { background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 1.8rem; }
.stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 0.8rem; }
.testimonial p { font-style: italic; color: var(--grey-600); margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; padding-top: 1rem; border-top: 1px solid var(--grey-200); }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.92rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--grey-400); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; text-align: center; border-radius: 20px; padding: 3.5rem 2rem; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 1.8rem; }

/* ---------- Zones ---------- */
.zones-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.8rem; }
.zone-chip { background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: 10px; padding: 0.9rem 1rem; display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 500; color: var(--grey-800); transition: all 0.2s; }
.zone-chip { cursor: pointer; }
.zone-chip:hover { border-color: var(--accent); background: #fff; box-shadow: 0 4px 12px rgba(15,44,77,0.08); }
.zone-chip .pin { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 900px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 6px 20px rgba(15, 44, 77, 0.05);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-right: 1.8rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
}
.faq-item[open] summary::after { content: '-'; }
.faq-item p {
  color: var(--grey-600);
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ci-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-lt); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--navy); margin-bottom: 2px; }
.contact-item span { color: var(--grey-600); font-size: 0.94rem; }
.form-card { background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--grey-800); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 0.9rem; border: 1.5px solid var(--grey-200); border-radius: 9px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; background: #fff; transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--grey-400); margin-top: 0.8rem; }
.form-success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; padding: 1rem; border-radius: 10px; margin-top: 1rem; display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dk); color: rgba(255,255,255,0.75); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-col h4 { color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a, .footer-col li { font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--accent); }
.footer-brand p { font-size: 0.92rem; margin-top: 1rem; max-width: 280px; }
.footer-brand .brand-name, .footer-brand .brand-name span { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ---------- Floating call button ---------- */
.float-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  background: var(--accent); color: #fff; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(249,115,22,0.5); animation: pulse 2.5s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 6px 24px rgba(249,115,22,0.5), 0 0 0 0 rgba(249,115,22,0.4); } 50% { box-shadow: 0 6px 24px rgba(249,115,22,0.5), 0 0 0 12px rgba(249,115,22,0); } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--grey-200); padding: 1rem; gap: 0.2rem; box-shadow: var(--shadow);
  }
  .nav-links.open a { padding: 0.8rem 1rem; }
  .grid-4, .formules-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-phone { display: none; }
}
@media (max-width: 560px) {
  section { padding: 3rem 0; }
  .grid-3, .grid-4, .formules-grid, .steps, .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
