/* ============================================================
   MOURID PROFESSIONALS — style.css
   Charte graphique globale — v2.0
   Utilisé par toutes les pages du site
============================================================ */

/* ── VARIABLES ── */
:root {
  --dark:        #0D3D56;
  --teal:        #0A7E8C;
  --green:       #00A896;
  --green-light: #00C9B1;
  --gold:        #E8A000;
  --white:       #FFFFFF;
  --off-white:   #F4FAFB;
  --gray:        #64748B;
  --gray-light:  #E8F4F6;
  --text:        #1E3A4A;
  --border:      #D0E8EC;

  --font-title:  'Playfair Display', serif;
  --font-body:   'Nunito Sans', sans-serif;

  --radius:      12px;
  --radius-sm:   6px;
  --shadow:      0 4px 20px rgba(13,61,86,0.08);
  --shadow-lg:   0 16px 40px rgba(13,61,86,0.14);
  --transition:  0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a  { text-decoration:none; }
ul { list-style:none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: var(--font-title);
  line-height: 1.2;
  color: var(--dark);
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-family: var(--font-title);
  color: var(--dark);
  line-height: 1.2;
}

.section-sub {
  font-size: 0.975rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 560px;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5.5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,168,150,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: #d4920a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,0,0.3);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.03);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* ── HEADER ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 61, 86, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,168,150,0.15);
  transition: all 0.3s ease;
}
#header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo img { height: 38px; width: auto; }
.logo-text-main {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
}
.logo-text-sub {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width 0.3s;
}
.nav-link:hover,
.nav-link.active { color: var(--green-light); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-header-membre {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.42rem 1rem;
  border-radius: 4px;
  border: 1.5px solid var(--green);
  color: var(--green);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-header-membre:hover {
  background: var(--green);
  color: var(--white);
}

.btn-header-don {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.42rem 1rem;
  border-radius: 4px;
  border: 1.5px solid var(--gold);
  color: var(--dark);
  background: var(--gold);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-header-don:hover {
  background: #d4920a;
  border-color: #d4920a;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.25rem;
}

/* Mobile menu */
#mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 1rem 1.5rem 1.75rem;
  border-top: 1px solid rgba(0,168,150,0.15);
}
#mobile-menu.open { display: flex; }

.mobile-nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.975rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--green-light); }

.mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1rem;
}

/* ── PAGE BANNER (pages secondaires) ── */
.page-banner {
  padding: 7rem 0 3.5rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(0,168,150,0.15), transparent 60%);
}
.page-banner-inner {
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.page-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 540px;
}
/* ── SERIE EXPERT — grille 4 cartes ── */
.serie-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/14;
  background: var(--dark);
  cursor: pointer;
}

.serie-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

.responsive-serie {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .responsive-serie { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .responsive-serie { grid-template-columns: repeat(2, 1fr); }
}
/* ── CARDS — COMMON ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

/* ── PROGRAMME CARDS ── */
.programme-card { display: flex; flex-direction: column; }

.programme-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--dark), var(--teal));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.programme-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: transform 0.45s;
}
.programme-card:hover .programme-card-img img {
  transform: scale(1.06);
}
.programme-number {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  width: 2rem; height: 2rem;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800;
  color: var(--white);
  transition: background var(--transition);
  z-index: 2;
}
.programme-card:hover .programme-number { background: var(--dark); }

.programme-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.programme-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
}
.programme-card-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

/* ── SERVICE BLOCKS ── */
.service-block {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 4px solid var(--green);
  transition: all var(--transition);
  text-align: center;
}
.service-block:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 3.25rem; height: 3.25rem;
  background: linear-gradient(135deg, var(--dark), var(--teal));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.3rem;
}
.service-block h3 {
  font-size: 0.975rem;
  margin-bottom: 0.6rem;
}
.service-block p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── ARTICLE CARDS ── */
.article-card-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal), var(--dark));
}
.article-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.article-card:hover .article-card-img img { transform: scale(1.06); }

.article-cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}

.article-card-body { padding: 1.3rem; }
.article-card-body h3 {
  font-size: 0.975rem;
  margin: 0.55rem 0 0.5rem;
  line-height: 1.4;
}
.article-date {
  font-size: 0.76rem;
  color: var(--gray);
  display: flex; align-items: center; gap: 0.4rem;
}
.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.8rem;
  transition: gap 0.2s;
}
.article-read-more:hover { gap: 0.6rem; }

/* ── MARKETPLACE CARDS ── */
.mp-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.mp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.mp-card-top {
  height: 88px;
  position: relative;
}
.mp-avatar {
  width: 3.4rem; height: 3.4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 3px solid rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  color: var(--white);
  position: absolute;
  bottom: -1.7rem; left: 1.2rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.mp-badge {
  position: absolute;
  top: 0.7rem; right: 0.7rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 50px;
}
.mp-card-body { padding: 2.4rem 1.2rem 1.3rem; }
.mp-name {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.mp-info {
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.mp-info i { color: var(--green); width: 13px; flex-shrink: 0; margin-top: 2px; }
.mp-divider { height: 1px; background: var(--gray-light); margin: 1rem 0; }
.mp-actions { display: flex; gap: 0.6rem; }

.mp-btn-contact {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.mp-btn-contact:hover { background: var(--teal); color: var(--white); }

.mp-btn-wa {
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  background: #25D366;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  white-space: nowrap;
}
.mp-btn-wa:hover { background: #1ebe5d; }

/* ── STATS ── */
.stat-item { text-align: center; position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(0,168,150,0.25);
}
.stat-number {
  font-family: var(--font-title);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  margin-top: 0.45rem;
}

/* ── SERIE EXPERT ── */
.serie-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 340px;
  background: var(--dark);
  cursor: pointer;
  flex-shrink: 0;
  width: 200px;
}
.serie-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.serie-card:hover img { opacity: 0.5; }
.serie-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(13,61,86,0.9) 0%, transparent 55%);
}
.serie-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 2.8rem; height: 2.8rem;
  border-radius: 50%;
  background: rgba(0,168,150,0.85);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.serie-card:hover .serie-play {
  background: var(--green);
  transform: translate(-50%,-50%) scale(1.1);
}
.serie-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.serie-role {
  font-size: 0.7rem;
  color: var(--green-light);
}

/* ── VIDEO MODAL ── */
#video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
#video-modal.open { display: flex; }
.modal-inner {
  position: relative;
  width: 90vw;
  max-width: 720px;
}
.modal-close {
  position: absolute;
  top: -2.5rem; right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal-close:hover { opacity: 1; }
.modal-video {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 80vh;
  border-radius: var(--radius);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal) 60%, var(--green) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0,168,150,0.18), transparent 60%);
}
.cta-section h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.5rem); }
.cta-section p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 500px;
  margin: 1rem auto 2.25rem;
  line-height: 1.75;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 0;
}
.footer-brand { margin-bottom: 1.25rem; }
.footer-brand-name {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.footer-brand-sub {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
}
.footer-desc {
  font-size: 0.845rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 0.6rem; }
.footer-social {
  width: 2.1rem; height: 2.1rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all 0.25s;
}
.footer-social:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0,168,150,0.1);
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.1rem;
}
.footer-link {
  display: block;
  font-size: 0.845rem;
  color: rgba(255,255,255,0.58);
  padding: 0.28rem 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--green-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 0.6rem;
}
.footer-contact-item i { color: var(--green); width: 14px; flex-shrink:0; margin-top:2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--green-light); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity:0; transform:translateX(-28px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes scrollBar {
  0%,100% { opacity:1; transform:scaleY(1); }
  50%     { opacity:0.3; transform:scaleY(0.4); }
}

.anim-1 { animation: fadeInLeft 0.9s ease 0.2s both; }
.anim-2 { animation: fadeInUp  0.9s ease 0.45s both; }
.anim-3 { animation: fadeInUp  0.9s ease 0.65s both; }
.anim-4 { animation: fadeInUp  0.9s ease 0.85s both; }
.anim-5 { animation: fadeInUp  0.9s ease 1.05s both; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
  animation: fadeInUp 1s ease 1.5s both;
}
.scroll-indicator .bar {
  width: 1.5px; height: 36px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollBar 2s ease infinite;
}

/* ── FORMS ── */
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  transition: border-color 0.25s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--green); }
.form-textarea { resize: vertical; min-height: 110px; }

/* ── GRIDS ── */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.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.5rem; }
.grid-5 { display:grid; grid-template-columns:repeat(5,1fr); gap:1.25rem; }

/* ── DIVIDER ── */
.divider { height:1px; background:var(--border); margin:2rem 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .header-ctas { display: none; }
  .mobile-menu-btn { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2,1fr); }
  .stat-item + .stat-item::before { display: none; }
  .section-pad { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .grid-5 { grid-template-columns: 1fr; }
  .container { padding: 0 1rem; }
}
