/* ============================================================
   Institut SABIQOUNA – design system
   Palette : #1a7a6e (teal profond) · #78350f (ambre foncé)
   ============================================================ */

:root {
  --teal: #1a7a6e;
  --teal-dark: #125e58;
  --teal-soft: #e8f3f1;
  --amber: #78350f;
  --amber-dark: #5a240d;
  --amber-soft: #fbf5ec;
  --amber-900: #78350f;
  --gold: #c9a35b;
  --ink: #1f2937;
  --ink-soft: #374151;
  --muted: #6b7280;
  --line: #e5e7eb;
  --paper: #fdfbf7;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 6px rgba(24,20,10,.06);
  --shadow: 0 10px 30px rgba(24,20,10,.08);
  --shadow-lg: 0 20px 55px rgba(24,20,10,.14);
  --container: 1180px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  padding: 0 28px;
  max-width: 1400px; margin: 0 auto;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 58px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__menu a {
  font-weight: 600; color: var(--ink); font-size: 15px;
  position: relative; padding: 6px 0;
}
.nav__menu a:hover { color: var(--amber); }
.nav__menu a::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0; background: var(--amber);
  transition: width .25s ease;
}
.nav__menu a:hover::after { width: 100%; }
.nav__menu .has-dropdown { position: relative; }
.nav__menu .has-dropdown > button {
  background: none; border: 0; font: inherit; cursor: pointer;
  color: var(--ink); font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 0;
}
.nav__menu .has-dropdown > button:hover { color: var(--amber); }
.nav__menu .has-dropdown > button::after { content: "▾"; font-size: 10px; margin-top: 2px; }
.nav__menu .dropdown {
  position: absolute; top: 100%; left: -12px;
  min-width: 240px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .2s ease;
}
.nav__menu .has-dropdown:hover .dropdown,
.nav__menu .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__menu .dropdown a {
  display: block; padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
}
.nav__menu .dropdown a::after { display: none; }
.nav__menu .dropdown a:hover { background: var(--amber-soft); color: var(--amber); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__burger {
  display: none;
  background: none; border: 0; cursor: pointer; padding: 8px;
  color: var(--ink);
}
.nav__burger svg { width: 28px; height: 28px; }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(24,20,10,.45); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: all .25s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 90vw);
  background: #fff; padding: 24px; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.mobile-menu__head img { height: 52px; }
.mobile-menu__close {
  background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink);
}
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu a {
  display: block; padding: 12px 14px; border-radius: 10px;
  font-weight: 600; color: var(--ink); font-size: 16px;
}
.mobile-menu a:hover { background: var(--amber-soft); color: var(--amber); }
.mobile-menu details { border-radius: 10px; }
.mobile-menu details > summary {
  list-style: none; cursor: pointer;
  padding: 12px 14px; border-radius: 10px;
  font-weight: 600; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu details > summary::-webkit-details-marker { display: none; }
.mobile-menu details > summary::after {
  content: "▾"; font-size: 12px; transition: transform .2s ease;
}
.mobile-menu details[open] > summary::after { transform: rotate(180deg); }
.mobile-menu details .sub { padding-left: 14px; }
.mobile-menu details .sub a { padding: 10px 12px; font-size: 14px; font-weight: 500; }
.mobile-menu__cta { margin-top: 20px; }

@media (max-width: 960px) {
  .nav__menu, .nav__cta .btn-outline { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease;
  border: 0; cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 18px rgba(24,20,10,.10);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(24,20,10,.16); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-secondary { background: var(--amber); color: #fff; }
.btn-secondary:hover { background: var(--amber-dark); color: #fff; }
.btn-outline {
  background: transparent; color: var(--amber);
  border: 2px solid var(--amber); padding: 12px 22px;
  box-shadow: none;
}
.btn-outline:hover { background: var(--amber); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.cta-group { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- Bande (section title) ---------- */
.bande {
  background: linear-gradient(120deg, var(--amber) 0%, #8f4614 55%, var(--amber) 100%);
  color: #fff;
  padding: 22px 24px;
  text-align: center;
  border-radius: 999px;
  max-width: 720px;
  margin: 72px auto 32px;
  box-shadow: var(--shadow);
  position: relative;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 26px);
  letter-spacing: .01em;
}
.bande::before, .bande::after {
  content: "✦"; color: var(--gold);
  margin: 0 14px; opacity: .85;
}

/* ---------- Sections ---------- */
main { padding-top: calc(var(--header-h) + 12px); }
.section { padding: 40px 0; }
.section-tight { padding: 24px 0; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 20px auto 40px;
  max-width: 1320px;
  min-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 24px;
  color: #fff; text-align: center;
  background: #1a1512;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(.55);
  transform: scale(1.03);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 70%);
  z-index: 1;
}
.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero__eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 22px; color: #fff;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  color: #fff; margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.hero__lede {
  font-size: clamp(18px, 2.2vw, 24px);
  color: #f8f2e6; font-weight: 500;
  margin-bottom: 12px;
}
.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic; color: var(--gold);
  font-size: 18px; letter-spacing: .05em; margin-bottom: 22px;
}
.hero__desc {
  color: #ecebe8; font-size: 17px; max-width: 700px;
  margin: 0 auto 32px;
}
.hero .cta-group { margin-top: 12px; }

/* Page hero (compact) */
.page-hero {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 20px auto 32px;
  max-width: 1320px;
  min-height: 44vh;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px; text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, #0e4a44 100%);
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(.5);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
.page-hero__content { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 {
  color: #fff; font-size: clamp(32px, 4.5vw, 50px); margin-bottom: 14px;
}
.page-hero p { color: #f0ede6; font-size: 18px; margin: 0; }

/* Prose card */
.prose {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px clamp(24px, 4vw, 56px);
  box-shadow: var(--shadow-sm);
  max-width: 820px; margin: 0 auto 32px;
}
.prose p { color: var(--ink-soft); font-size: 17px; }
.prose .lede {
  font-size: 20px; text-align: center; font-weight: 600;
  color: var(--ink); margin-bottom: 24px;
}
.prose h3 { color: var(--amber-900); font-size: 26px; margin-top: 28px; }
.prose h4 { color: var(--amber-900); font-size: 20px; margin-top: 22px; }
.prose blockquote {
  border-left: 4px solid var(--teal);
  padding: 10px 0 10px 20px;
  font-style: italic; font-size: 20px; color: var(--ink);
  font-family: 'Playfair Display', serif;
  margin: 24px 0;
}
.prose ul { padding-left: 22px; }
.prose ul li { margin-bottom: 8px; color: var(--ink-soft); }

/* Grid cards (values) */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { color: var(--amber-900); font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin: 0; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-soft); color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 14px;
}
.card--amber .card__icon { background: var(--amber-soft); color: var(--amber); }

/* Feature block (pillar / step) */
.pillar {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.pillar h4 {
  display: flex; align-items: center; gap: 14px;
  font-size: 22px; color: var(--ink); margin-bottom: 14px;
}
.pillar__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.pillar--amber .pillar__num {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
}
.pillar ul { padding-left: 22px; color: var(--ink-soft); }
.pillar ul li { margin-bottom: 8px; }

/* Split section (image + text) */
.split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 48px; align-items: center;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.split--reverse { grid-template-columns: 1fr 1.05fr; }
.split--reverse .split__media { order: 2; }
.split__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); object-fit: cover;
  aspect-ratio: 4/3; background: var(--teal-soft);
  max-height: 460px;
}
.split__text h3 {
  font-size: clamp(24px, 3vw, 34px); color: var(--amber-900);
  margin-bottom: 16px;
}
.split__text p { color: var(--ink-soft); font-size: 17px; }
@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 28px; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 3/2; }
}

/* Parcours cards */
.parcours {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  position: relative; overflow: hidden;
}
.parcours::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}
.parcours h3 {
  font-size: 28px; color: var(--ink); margin-bottom: 12px;
}
.parcours__meta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-soft); color: var(--teal);
  padding: 8px 14px; border-radius: 999px;
  font-weight: 600; font-size: 14px; margin-bottom: 20px;
}
.parcours h4 { color: var(--ink); font-size: 18px; margin: 20px 0 8px; }
.parcours ul { padding-left: 22px; color: var(--ink-soft); }
.parcours ul li { margin-bottom: 6px; }

/* Step (numbered) */
.step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 20px; align-items: start;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.step__num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; font-weight: 700; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
}
.step h3 { font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.step p { color: var(--ink-soft); margin: 0; }
.step__arrow {
  text-align: center; color: var(--teal); font-size: 28px;
  margin: -4px 0 -4px 30px;
}

/* Callout / checklist */
.callout {
  background: #fff; border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  max-width: 820px; margin: 0 auto;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; gap: 14px; align-items: start;
  padding: 12px 0; border-bottom: 1px dashed var(--line);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "✓"; flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--amber); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; margin-top: 2px;
}
.check-list li p { margin: 0; color: var(--ink-soft); }

/* FAQ */
.faq-group { max-width: 860px; margin: 0 auto 40px; }
.faq-group h2 {
  font-size: 26px; color: var(--amber);
  padding-bottom: 12px; border-bottom: 2px solid var(--amber);
  margin-bottom: 20px;
}
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 12px;
  transition: box-shadow .2s ease;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item > summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  font-weight: 600; font-size: 17px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "▾"; color: var(--teal); font-size: 14px;
  transition: transform .2s ease; flex-shrink: 0;
}
.faq-item[open] > summary::after { transform: rotate(180deg); }
.faq-item[open] > summary { color: var(--amber); }
.faq-item .faq-answer {
  padding: 0 24px 22px; color: var(--ink-soft); line-height: 1.7;
}

/* CTA banner */
.cta-banner {
  max-width: 1180px; margin: 60px auto 40px;
  border-radius: var(--radius-lg); overflow: hidden;
  background:
    linear-gradient(135deg, rgba(120,53,15,.92) 0%, rgba(26,122,110,.92) 100%);
  color: #fff; padding: 60px 32px; text-align: center;
  position: relative;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(201,163,91,.15), transparent 40%);
  pointer-events: none;
}
.cta-banner h2 {
  color: #fff; font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px;
}
.cta-banner p { color: #f7f3ec; max-width: 640px; margin: 0 auto 26px; font-size: 17px; }
.cta-banner .btn-primary { background: #fff; color: var(--teal); }
.cta-banner .btn-primary:hover { background: var(--paper); color: var(--teal-dark); }
.cta-banner .btn-secondary { background: var(--gold); color: #2b1a05; }
.cta-banner .btn-secondary:hover { background: #b58c48; color: #2b1a05; }

/* Floating WhatsApp */
.whatsapp-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 50;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,.4);
  transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); color: #fff; }
.whatsapp-fab svg { width: 32px; height: 32px; }

/* Contact page big whatsapp card */
.wa-card {
  max-width: 620px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-lg);
  padding: 44px 32px; text-align: center;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.wa-card__icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.wa-card__icon svg { width: 48px; height: 48px; }
.wa-card h3 { font-size: 26px; margin-bottom: 8px; }
.wa-card p { color: var(--ink-soft); margin-bottom: 22px; }
.wa-card .btn { background: #25d366; color: #fff; }
.wa-card .btn:hover { background: #1ebe5b; }

/* Founder card */
.founder {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 28px; align-items: center;
  background: linear-gradient(135deg, var(--amber-soft), #fff);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; margin-top: 30px;
  box-shadow: var(--shadow-sm);
}
.founder img {
  width: 220px; height: 220px; object-fit: cover;
  border-radius: 50%; border: 5px solid #fff;
  box-shadow: var(--shadow);
}
.founder h4 { color: var(--amber-900); font-size: 24px; margin-bottom: 4px; }
.founder p { margin: 0; color: var(--ink-soft); }
@media (max-width: 700px) {
  .founder { grid-template-columns: 1fr; text-align: center; }
  .founder img { margin: 0 auto; }
}

/* Feature strip */
.feature-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1180px; margin: 40px auto; padding: 0 24px;
}
.feature-strip .feat {
  text-align: center; padding: 20px 14px;
  border-right: 1px solid var(--line);
}
.feature-strip .feat:last-child { border-right: 0; }
.feature-strip .feat__num {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 700; color: var(--amber);
  line-height: 1;
}
.feature-strip .feat__label { color: var(--muted); font-size: 14px; margin-top: 6px; }
@media (max-width: 780px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-strip .feat { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
  .feature-strip .feat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* Footer */
.site-footer {
  background: #1a1512; color: #d9d2c3;
  padding: 60px 24px 30px; margin-top: 60px;
}
.site-footer__top {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.site-footer h4 {
  color: #fff; font-family: 'Playfair Display', serif;
  font-size: 18px; margin-bottom: 14px;
}
.site-footer img.footer-logo { max-width: 110px; width: auto; height: auto; margin-bottom: 16px; filter: brightness(1.1); }
.site-footer a { color: #d9d2c3; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 5px 0; }
.footer-hadith {
  max-width: 1180px; margin: 40px auto 0;
  border-top: 1px solid #3a2f26; padding-top: 30px;
  font-style: italic; color: #b8ae9c; font-size: 14px;
  line-height: 1.75;
}
.footer-hadith p { margin-bottom: 12px; }
.footer-hadith strong { color: var(--gold); font-style: normal; }
.footer-copy {
  text-align: center; color: #7c7568; font-size: 13px;
  margin-top: 30px; padding-top: 20px; border-top: 1px solid #3a2f26;
}
@media (max-width: 800px) {
  .site-footer__top { grid-template-columns: 1fr; gap: 30px; }
}

/* Inscription steps */
.inscription-hero {
  background: linear-gradient(135deg, var(--amber) 0%, #8f4614 100%);
}
.enroll-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin: 40px 0;
}
@media (max-width: 900px) { .enroll-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .enroll-steps { grid-template-columns: 1fr; } }
.enroll-step {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  text-align: center; box-shadow: var(--shadow-sm);
  position: relative;
}
.enroll-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--amber); color: #fff;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px;
  margin-bottom: 12px;
}
.enroll-step h4 { color: var(--amber-900); font-size: 17px; margin-bottom: 8px; }
.enroll-step p { color: var(--muted); font-size: 14px; margin: 0; }

/* Small helpers */
.text-center { text-align: center; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.italic { font-style: italic; }
