/* ═══════════════════════════════════════════════════════════
   FORMALYZER THEME — GLOBAL CSS
   DA: Violet/Rose Dark Tech 2.0
   Version: 2.0
   ═══════════════════════════════════════════════════════════ */

/* ─── IMPORTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@400,500,700&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  /* Fonts */
  --fh: 'ClashDisplay', 'Syne', sans-serif;
  --fb: 'Satoshi', 'Outfit', -apple-system, sans-serif;

  /* Colors - Violet/Rose DA */
  --bg: #08060f;
  --bg-card: rgba(255,255,255,0.025);
  --bg-card-hover: rgba(255,255,255,0.05);

  --accent: #c084fc;
  --accent-dark: #a855f7;
  --accent-glow: rgba(192,132,252,0.12);
  --accent-soft: rgba(192,132,252,0.06);

  --secondary: #f472b6;
  --secondary-soft: rgba(244,114,182,0.08);

  --tertiary: #818cf8;
  --tertiary-soft: rgba(129,140,248,0.08);

  --gold: #fbbf24;
  --gold-soft: rgba(251,191,36,0.08);
  --rose: #fb7185;
  --red: #ef4444;
  --red-soft: rgba(239,68,68,0.04);
  --orange: #fb923c;
  --mint: #34d399;

  --title: #ffffff;
  --subtitle: #c8cfd8;
  --body: #9ca3b0;
  --muted: #6b7280;
  --dim: #3e4550;

  --border: rgba(255,255,255,0.05);
  --border-hover: rgba(255,255,255,0.10);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  --shadow-glow: 0 0 30px var(--accent-glow);
  --shadow-glow-hover: 0 0 50px var(--accent-glow), 0 8px 25px var(--accent-glow);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-card-hover: 0 24px 64px rgba(0,0,0,0.3);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, body.page, body.home, body.single, body.archive, body.search,
html body, .wp-site-blocks, #page, .site {
  font-family: var(--fb);
  background: #08060f !important;
  background-color: #08060f !important;
  color: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.25s; }
img { max-width: 100%; display: block; }
button { font-family: var(--fb); cursor: pointer; }

::selection { background: var(--accent-glow); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.05); border-radius: 3px; }
input::placeholder { color: var(--dim); }

/* ─── BACKGROUND EFFECTS ─── */
.fz-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}
.fz-bg__grid {
  position: absolute; inset: 0; opacity: 0.015;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 80px 80px;
}
.fz-bg__orb-1 {
  position: absolute; top: -15%; left: -10%; width: 55vw; height: 55vw;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(80px); border-radius: 50%;
}
.fz-bg__orb-2 {
  position: absolute; bottom: -20%; right: -10%; width: 60vw; height: 60vw;
  background: radial-gradient(circle, var(--secondary-soft), transparent 60%);
  filter: blur(100px); border-radius: 50%;
}

/* ─── LAYOUT ─── */
.fz-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.fz-container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.fz-section { position: relative; z-index: 1; padding-bottom: 80px; }
.fz-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fz-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fz-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* ─── TYPOGRAPHY ─── */
.fz-eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em;
  font-weight: 600; display: block; margin-bottom: 10px;
}
.fz-eyebrow--accent { color: var(--accent); }
.fz-eyebrow--secondary { color: var(--secondary); }
.fz-eyebrow--tertiary { color: var(--tertiary); }
.fz-eyebrow--gold { color: var(--gold); }

.fz-h1 {
  font-size: clamp(36px, 5vw, 52px); font-weight: 700; line-height: 1.1;
  font-family: var(--fh); letter-spacing: -0.03em; color: var(--title);
}
.fz-h1--hero { font-size: clamp(44px, 6vw, 74px); letter-spacing: -0.04em; }

.fz-h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
  font-family: var(--fh); letter-spacing: -0.03em; color: var(--title);
}

.fz-h3 {
  font-size: 20px; font-weight: 700;
  font-family: var(--fh); color: var(--title);
}

.fz-h4 {
  font-size: 17px; font-weight: 600;
  font-family: var(--fh); color: var(--title);
}

.fz-text { font-size: 17px; line-height: 1.9; color: var(--body); }
.fz-text--lg { font-size: 18px; line-height: 1.75; color: var(--muted); }
.fz-text--sm { font-size: 14px; line-height: 1.7; color: var(--body); }
.fz-text--bright { color: var(--subtitle); }

.fz-gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ─── HEADER (SaaS 2026) ─── */
.fz-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,6,15,0.4); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent; transition: all 0.4s;
}
.fz-header--scrolled {
  background: rgba(8,6,15,0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.fz-header__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center; height: 72px;
}

/* Logo SaaS */
.fz-logo { display: flex; align-items: center; gap: 14px; cursor: pointer; text-decoration: none; }
.fz-logo__icon {
  width: 42px; height: 42px; border-radius: 14px; position: relative;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(192,132,252,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.fz-logo:hover .fz-logo__icon { transform: scale(1.05); box-shadow: 0 0 36px rgba(192,132,252,0.3); }
.fz-logo__icon span {
  font-size: 21px; font-weight: 800; color: #fff; font-family: var(--fh);
}
.fz-logo__icon::after {
  content: ''; position: absolute; top: -3px; right: -3px;
  width: 11px; height: 11px; border-radius: 50%;
  background: #34d399; border: 2.5px solid var(--bg);
  box-shadow: 0 0 8px rgba(52,211,153,0.5);
}
.fz-logo__text {
  font-size: 21px; font-weight: 700; font-family: var(--fh); color: #fff;
  letter-spacing: -0.02em;
}
.fz-logo__dot { color: var(--accent); }

/* Nav pill style */
.fz-nav {
  display: flex; gap: 2px; align-items: center;
  background: rgba(255,255,255,0.02); border-radius: 14px;
  padding: 4px; border: 1px solid var(--border);
}
.fz-nav a, .fz-nav__link {
  padding: 8px 18px; border-radius: 10px; font-size: 14px; font-weight: 500;
  color: var(--muted); background: transparent; border: none;
  transition: all 0.25s; text-decoration: none; cursor: pointer; font-family: var(--fb);
}
.fz-nav a:hover, .fz-nav__link:hover { color: var(--title); background: rgba(255,255,255,0.04); }
.fz-nav a.active, .fz-nav__link--active { color: var(--accent); background: var(--accent-soft); }

/* Header CTA */
.fz-header__cta {
  padding: 9px 22px; border-radius: 10px; font-size: 13px; font-weight: 600;
  background: linear-gradient(135deg, var(--accent), #7c3aed); color: #fff;
  border: none; cursor: pointer; font-family: var(--fh);
  box-shadow: 0 0 20px rgba(192,132,252,0.15);
  transition: all 0.3s; text-decoration: none;
}
.fz-header__cta:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(192,132,252,0.25); }

.fz-nav__search {
  margin-left: 12px; padding: 9px 20px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--body); display: flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.fz-nav__search:hover { border-color: var(--border-hover); color: var(--title); }

/* ─── FOOTER (SaaS 2026) ─── */
.fz-footer {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, rgba(8,6,15,0) 0%, rgba(8,6,15,1) 15%, rgba(4,3,8,1) 100%);
}
.fz-footer::before {
  content: ''; position: absolute; top: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--secondary) 70%, transparent 100%);
  opacity: 0.4;
}
.fz-footer__inner { max-width: 1200px; margin: 0 auto; padding: 72px 32px 28px; }

/* Footer newsletter banner */
.fz-footer__newsletter {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 36px; border-radius: 20px; margin-bottom: 56px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  gap: 24px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.fz-footer__newsletter::before {
  content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%); border-radius: 50%;
}
.fz-footer__nl-text { position: relative; }
.fz-footer__nl-title { font-size: 17px; font-weight: 700; color: var(--title); font-family: var(--fh); margin-bottom: 4px; }
.fz-footer__nl-sub { font-size: 13px; color: var(--muted); }
.fz-footer__nl-form {
  display: flex; gap: 8px; position: relative;
  background: rgba(0,0,0,0.3); border-radius: 12px; padding: 4px; border: 1px solid var(--border);
}
.fz-footer__nl-input {
  padding: 12px 20px; border-radius: 8px; border: none; background: transparent;
  color: var(--title); font-size: 14px; outline: none; width: 240px; font-family: var(--fb);
}
.fz-footer__nl-input::placeholder { color: var(--dim); }
.fz-footer__nl-btn {
  padding: 10px 22px; border-radius: 8px; border: none;
  background: linear-gradient(135deg, var(--accent), #7c3aed); color: #fff;
  font-size: 13px; font-weight: 700; font-family: var(--fh); cursor: pointer;
  transition: all 0.3s;
}
.fz-footer__nl-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,132,252,0.3); }

.fz-footer__grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.fz-footer__brand-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.fz-footer__col-title {
  font-size: 11px; color: var(--dim); text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 600; margin-bottom: 18px;
}
.fz-footer__link {
  font-size: 13px; color: var(--muted); margin-bottom: 11px;
  display: block; cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.fz-footer__link:hover { color: var(--accent); transform: translateX(3px); }

/* Footer social */
.fz-footer__social { display: flex; gap: 8px; margin-top: 20px; }
.fz-footer__social-link {
  width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--muted); font-size: 16px; transition: all 0.3s; cursor: pointer; text-decoration: none;
}
.fz-footer__social-link:hover { color: var(--accent); border-color: rgba(192,132,252,0.2); background: var(--accent-soft); transform: translateY(-2px); }

.fz-footer__bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.fz-footer__copy { font-size: 12px; color: var(--dim); }

/* Footer badge */
.fz-footer__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: 11px; color: var(--muted);
}
.fz-footer__badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--mint);
  box-shadow: 0 0 8px rgba(52,211,153,0.5);
}

.fz-footer__featured {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px; border-radius: 16px; margin-bottom: 48px;
  background: var(--bg-card); border: 1px solid var(--border);
}

/* ─── BUTTONS ─── */
.fz-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fh); font-weight: 700; border: none;
  border-radius: var(--radius-md); cursor: pointer;
  transition: all 0.35s ease; text-decoration: none;
}
.fz-btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; font-size: 15px; padding: 15px 34px;
  box-shadow: var(--shadow-glow);
}
.fz-btn--primary:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-glow-hover);
}
.fz-btn--primary-sm {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; font-size: 13px; padding: 11px 24px;
  box-shadow: var(--shadow-glow);
}
.fz-btn--primary-sm:hover { transform: translateY(-2px); }

.fz-btn--ghost {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--body); font-size: 15px; padding: 15px 30px;
}
.fz-btn--ghost:hover {
  border-color: var(--border-hover); color: var(--title);
  background: var(--bg-card-hover);
}

.fz-btn--outline {
  background: var(--accent-soft); border: 1px solid rgba(192,132,252,0.15);
  color: var(--accent); font-size: 13px; padding: 10px 20px;
}
.fz-btn--outline:hover { background: rgba(192,132,252,0.12); }

/* ─── BADGES ─── */
.fz-badge {
  display: inline-flex; padding: 4px 12px; border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fz-badge--accent { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(192,132,252,0.15); }
.fz-badge--secondary { background: var(--secondary-soft); color: var(--secondary); border: 1px solid rgba(244,114,182,0.15); }
.fz-badge--tertiary { background: var(--tertiary-soft); color: var(--tertiary); border: 1px solid rgba(129,140,248,0.15); }
.fz-badge--gold { background: var(--gold-soft); color: var(--gold); border: 1px solid rgba(251,191,36,0.15); }
.fz-badge--red { background: var(--red-soft); color: var(--red); border: 1px solid rgba(239,68,68,0.12); }
.fz-badge--muted { background: var(--bg-card); color: var(--muted); border: 1px solid var(--border); }
.fz-badge--new { background: rgba(244,114,182,0.12); color: var(--secondary); }
.fz-badge--update { background: rgba(129,140,248,0.1); color: var(--tertiary); }
.fz-badge--verdict-good { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(192,132,252,0.2); }
.fz-badge--verdict-mid { background: var(--gold-soft); color: var(--gold); border: 1px solid rgba(251,191,36,0.2); }
.fz-badge--verdict-bad { background: var(--red-soft); color: var(--red); border: 1px solid rgba(239,68,68,0.15); }

.fz-tag {
  padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 500;
  background: var(--secondary-soft); color: var(--secondary);
  border: 1px solid rgba(244,114,182,0.1);
}

/* ─── CARDS ─── */
.fz-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fz-card:hover {
  background: var(--bg-card-hover); border-color: var(--border-hover);
  transform: translateY(-6px); box-shadow: var(--shadow-card-hover);
}

.fz-card__thumb {
  width: 100%; height: 160px; overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft), var(--secondary-soft));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; position: relative;
}
.fz-card__thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.fz-card__thumb--compact { height: 120px; font-size: 36px; }
.fz-card__thumb-overlay {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 10px; border-radius: 8px;
  background: rgba(8,6,15,0.8); backdrop-filter: blur(8px);
  font-size: 10px; font-weight: 600; line-height: 1.3;
  max-width: 140px; white-space: nowrap;
}
.fz-card__thumb-badges {
  position: absolute; top: 12px; left: 12px; display: flex; gap: 6px;
}
.fz-card__thumb-badges .fz-badge {
  background: rgba(8,6,15,0.85) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(192,132,252,0.25) !important;
  color: var(--accent) !important;
  font-size: 11px;
  padding: 4px 10px;
}

.fz-card__body { padding: 22px 24px 20px; }
.fz-card__body--compact { padding: 18px 20px 16px; }

.fz-card__title {
  font-size: 19px; font-weight: 700; font-family: var(--fh);
  color: var(--title); letter-spacing: -0.02em; margin-bottom: 4px;
}
.fz-card__title--sm { font-size: 16px; }
.fz-card__subtitle { font-size: 13px; color: var(--muted); margin-bottom: 12px; }

.fz-card__tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }

.fz-card__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.fz-card__rating {
  display: flex; align-items: center; gap: 8px;
}
.fz-card__rating-value {
  font-size: 15px; font-weight: 700; color: var(--title);
  font-family: var(--fh);
}
.fz-card__arrow {
  color: var(--accent); font-size: 14px;
  transition: transform 0.3s;
}
.fz-card:hover .fz-card__arrow { transform: translateX(4px); }

/* ─── STARS ─── */
.fz-stars { display: flex; gap: 2px; }
.fz-star { width: 15px; height: 15px; }
.fz-star--filled { fill: var(--accent); }
.fz-star--empty { fill: rgba(255,255,255,0.07); }

/* ─── TOP 3 CARDS ─── */
.fz-top-card {
  background: var(--bg-card); border-radius: var(--radius-xl);
  overflow: hidden; transition: all 0.4s;
}
.fz-top-card:hover { transform: translateY(-4px); }

.fz-top-card--gold { border: 2px solid rgba(251,191,36,0.12); background: rgba(251,191,36,0.02); }
.fz-top-card--gold:hover { border-color: rgba(251,191,36,0.2); box-shadow: 0 0 60px rgba(251,191,36,0.06); }
.fz-top-card--silver { border: 1px solid rgba(148,163,184,0.1); background: rgba(148,163,184,0.02); }
.fz-top-card--bronze { border: 1px solid rgba(251,146,60,0.1); background: rgba(251,146,60,0.02); }

.fz-top-card__accent-line { height: 3px; }
.fz-top-card__accent-line--gold { background: linear-gradient(90deg, #fbbf24, rgba(251,191,36,0.3), transparent); }
.fz-top-card__accent-line--silver { background: linear-gradient(90deg, #94a3b8, transparent); }
.fz-top-card__accent-line--bronze { background: linear-gradient(90deg, #fb923c, transparent); }

.fz-top-card__body { padding: 36px 40px 32px; }
.fz-top-card__body--sm { padding: 28px 28px 24px; }

/* ─── SCORE ─── */
.fz-score-card {
  padding: 32px 28px; border-radius: var(--radius-lg);
  background: rgba(192,132,252,0.04); border: 1px solid rgba(192,132,252,0.1);
  text-align: center;
}
.fz-score-big {
  font-size: 56px; font-weight: 800; font-family: var(--fh);
  color: var(--accent); line-height: 1;
}
.fz-score-big span { font-size: 20px; color: var(--body); }

.fz-score-bar { display: flex; flex-direction: column; gap: 4px; }
.fz-score-bar__label {
  display: flex; justify-content: space-between;
  font-size: 12px; margin-bottom: 4px;
}
.fz-score-bar__label-text { color: var(--body); font-weight: 500; }
.fz-score-bar__label-value { font-weight: 700; font-family: var(--fh); }
.fz-score-bar__track { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.05); }
.fz-score-bar__fill { height: 100%; border-radius: 2px; transition: width 1.2s cubic-bezier(0.16,1,0.3,1); }

/* ─── REVIEW PAGE BLOCKS ─── */
.fz-review-nav {
  position: sticky; top: 72px; z-index: 99;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(8,6,15,0.85); border-bottom: 1px solid var(--border);
  padding: 10px 0; display: flex; justify-content: center;
}
.fz-review-nav__inner {
  display: flex; gap: 2px; background: var(--bg-card);
  border-radius: 12px; padding: 3px; border: 1px solid var(--border);
}
.fz-review-nav__btn {
  padding: 7px 14px; border-radius: 9px; border: none;
  font-size: 12px; font-weight: 500; font-family: var(--fb);
  white-space: nowrap; color: var(--muted); background: transparent;
  transition: all 0.2s; cursor: pointer;
}
.fz-review-nav__btn:hover { color: var(--subtitle); }
.fz-review-nav__btn--active { color: var(--accent); background: var(--accent-soft); }

.fz-section-head { margin-bottom: 36px; }
.fz-section-head__title { margin-top: 8px; }

/* Characteristics grid */
.fz-carac-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 18px; transition: all 0.3s;
}
.fz-carac-card:hover {
  background: rgba(192,132,252,0.04);
  border-color: rgba(192,132,252,0.15);
  transform: translateY(-2px);
}
.fz-carac-card__icon { font-size: 26px; margin-bottom: 10px; }
.fz-carac-card__label {
  font-size: 10px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 600; margin-bottom: 5px;
}
.fz-carac-card__value { font-size: 15px; font-weight: 600; color: var(--title); margin-bottom: 3px; }
.fz-carac-card__sub { font-size: 12px; color: var(--muted); }

/* Pros/Cons */
.fz-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fz-pros { background: rgba(192,132,252,0.03); border-radius: var(--radius-lg); border: 1px solid rgba(192,132,252,0.08); padding: 32px; }
.fz-cons { background: var(--red-soft); border-radius: var(--radius-lg); border: 1px solid rgba(239,68,68,0.08); padding: 32px; }

.fz-pros-item, .fz-cons-item {
  display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start;
}
.fz-pros-icon, .fz-cons-icon {
  width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.fz-pros-icon { background: var(--accent-soft); color: var(--accent); }
.fz-cons-icon { background: rgba(239,68,68,0.1); color: var(--red); }

/* Modules */
.fz-module-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 24px; transition: all 0.3s;
}
.fz-module-card:hover {
  background: rgba(192,132,252,0.04);
  border-color: rgba(192,132,252,0.15);
  transform: translateY(-2px);
}
.fz-module-card__num {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-soft); border: 1px solid rgba(192,132,252,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-weight: 700; font-size: 14px; font-family: var(--fh);
}

/* FAQ */
.fz-faq { background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 6px 32px; }
.fz-faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.fz-faq-item:last-child { border-bottom: none; }
.fz-faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer; padding: 0; text-align: left;
}
.fz-faq-q__text { font-size: 15px; font-weight: 500; color: var(--title); font-family: var(--fb); }
.fz-faq-q__icon {
  color: var(--accent); font-size: 20px;
  transition: transform 0.3s;
}
.fz-faq-q__icon--open { transform: rotate(45deg); }
.fz-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.fz-faq-a--open { max-height: 200px; padding-top: 12px; }
.fz-faq-a p { font-size: 14px; line-height: 1.7; color: var(--body); }

/* ─── ARTICLE BLOCKS ─── */
.fz-callout {
  padding: 24px 28px; border-radius: var(--radius-lg); margin-bottom: 40px;
}
.fz-callout--accent {
  background: var(--accent-soft); border-left: 4px solid var(--accent);
}
.fz-callout--red {
  background: var(--red-soft); border: 1px solid rgba(239,68,68,0.12);
}
.fz-callout__title { font-size: 14px; font-weight: 700; margin-bottom: 8px; }

.fz-quote {
  padding: 36px; border-radius: var(--radius-xl); text-align: center;
  background: linear-gradient(135deg, var(--accent-soft), var(--secondary-soft));
  border: 1px solid rgba(192,132,252,0.08); margin-bottom: 40px;
}
.fz-quote__text {
  font-size: 22px; line-height: 1.6; color: var(--subtitle);
  font-style: italic; font-family: var(--fh); font-weight: 500;
}
.fz-quote__author { font-size: 13px; color: var(--muted); margin-top: 14px; }

.fz-checklist { padding: 28px 32px; border-radius: var(--radius-lg); background: var(--bg-card); border: 1px solid var(--border); }
.fz-checklist-item {
  display: flex; gap: 14px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.fz-checklist-item:last-child { border-bottom: none; }
.fz-checklist-icon {
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;
  background: var(--accent-soft); border: 1px solid rgba(192,132,252,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 13px; font-weight: 700;
}

.fz-table { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin-bottom: 40px; }
.fz-table__head { display: grid; grid-template-columns: 1fr 1fr 1fr; background: var(--bg-card); }
.fz-table__row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--border); }
.fz-table__row:nth-child(even) { background: rgba(255,255,255,0.01); }
.fz-table__cell { padding: 14px 20px; font-size: 13px; color: var(--body); }
.fz-table__cell--head { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.fz-table__cell--label { font-weight: 600; color: var(--title); font-size: 14px; }

/* Step cards */
.fz-step-card {
  display: flex; gap: 18px; padding: 22px 24px; border-radius: 18px;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.3s;
}
.fz-step-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateX(6px); }

.fz-step-num {
  width: 44px; height: 44px; border-radius: 14px; flex-shrink: 0;
  background: var(--accent-soft); border: 1px solid rgba(192,132,252,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: var(--accent); font-family: var(--fh);
}

/* Stats block */
.fz-stat-card {
  padding: 28px 20px; border-radius: 18px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--border);
}
.fz-stat-card__value {
  font-size: 32px; font-weight: 700; font-family: var(--fh); margin-bottom: 6px;
}
.fz-stat-card__label { font-size: 13px; color: var(--muted); }

/* ─── BREADCRUMB ─── */
.fz-breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.fz-breadcrumb a { cursor: pointer; transition: color 0.2s; }
.fz-breadcrumb a:hover { color: var(--accent); }
.fz-breadcrumb__sep { color: var(--dim); }
.fz-breadcrumb__current { color: var(--body); }

/* ─── CATEGORY PAGE ─── */
.fz-cat-hero { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
.fz-cat-hero__icon {
  width: 68px; height: 68px; border-radius: 22px;
  background: linear-gradient(135deg, var(--accent-soft), var(--secondary-soft));
  border: 1px solid rgba(192,132,252,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 34px;
}
.fz-cat-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.fz-cat-filter {
  padding: 8px 16px; border-radius: 10px; border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; font-family: var(--fb);
  background: var(--bg-card); color: var(--muted); cursor: pointer; transition: all 0.25s;
}
.fz-cat-filter:hover { background: var(--bg-card-hover); color: var(--title); }
.fz-cat-filter--active {
  background: var(--accent-soft); color: var(--accent);
  border-color: rgba(192,132,252,0.2);
}

/* ─── CTA BLOCKS ─── */
.fz-cta-block {
  padding: 52px 40px; border-radius: var(--radius-xl); text-align: center;
  background: linear-gradient(135deg, var(--accent-soft), var(--secondary-soft));
  border: 1px solid rgba(192,132,252,0.08);
}
.fz-cta-block--sm { padding: 36px 32px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fz-animate { animation: fadeInUp 0.7s ease both; }
.fz-animate--d1 { animation-delay: 0.1s; }
.fz-animate--d2 { animation-delay: 0.2s; }
.fz-animate--d3 { animation-delay: 0.3s; }
.fz-animate--d4 { animation-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   AUTO-STYLING: BALISES HTML NATIVES (WiseWand, Gutenberg, etc.)
   Tout contenu généré automatiquement (listes, tableaux, images,
   blockquotes, etc.) sera stylisé dans la DA violet/rose.
   Cible: tout ce qui est dans .fz-article-content ou .entry-content
   (WordPress utilise .entry-content par défaut)
   ═══════════════════════════════════════════════════════════ */

.fz-article-content,
.entry-content,
.wp-block-post-content,
article .post-content {
  font-family: var(--fb);
  font-size: 17px;
  line-height: 1.9;
  color: var(--body);
}

/* ─── Headings ─── */
.fz-article-content h1, .entry-content h1,
.fz-article-content h2, .entry-content h2,
.fz-article-content h3, .entry-content h3,
.fz-article-content h4, .entry-content h4,
.fz-article-content h5, .entry-content h5,
.fz-article-content h6, .entry-content h6 {
  font-family: var(--fh);
  color: var(--title);
  letter-spacing: -0.02em;
  margin-top: 2.2em;
  margin-bottom: 0.7em;
  line-height: 1.25;
}
.fz-article-content h2, .entry-content h2 { font-size: 26px; font-weight: 700; padding-top: 16px; border-top: 1px solid var(--border); }
.fz-article-content h1, .entry-content h1 {
  font-size: clamp(32px, 4vw, 44px); font-weight: 700;
  margin-top: 0; margin-bottom: 0.8em; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.fz-article-content h3, .entry-content h3 { font-size: 21px; font-weight: 700; }
.fz-article-content h4, .entry-content h4 { font-size: 18px; font-weight: 600; }
.fz-article-content h5, .entry-content h5 { font-size: 16px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── Paragraphes ─── */
.fz-article-content p, .entry-content p {
  margin-bottom: 1.4em;
  color: var(--body);
}

/* ─── Links ─── */
.fz-article-content a, .entry-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(192,132,252,0.2);
  transition: all 0.25s;
}
.fz-article-content a:hover, .entry-content a:hover {
  color: #d8b4fe;
  border-bottom-color: rgba(192,132,252,0.5);
}

/* ─── Bold / Italic / Strong ─── */
.fz-article-content strong, .entry-content strong,
.fz-article-content b, .entry-content b {
  color: var(--subtitle);
  font-weight: 600;
}
.fz-article-content em, .entry-content em,
.fz-article-content i, .entry-content i {
  font-style: italic;
  color: var(--subtitle);
}

/* ─── Listes à puces (ul) ─── */
.fz-article-content ul,
.entry-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8em 0;
}
.fz-article-content ul li,
.entry-content ul li {
  position: relative;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.fz-article-content ul li:last-child,
.entry-content ul li:last-child {
  border-bottom: none;
}
.fz-article-content ul li::before,
.entry-content ul li::before {
  content: '•';
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* Reset inside .wwc — let WiseWand handle its own lists */
.wwc ul { list-style: revert; padding: revert; margin: revert; }
.wwc ul li { position: static; padding: revert; border-bottom: none; }
.wwc ul li::before { content: none; }

/* Listes imbriquées */
.fz-article-content ul ul, .entry-content ul ul {
  margin: 8px 0 0 0;
}
.fz-article-content ul ul li::before, .entry-content ul ul li::before {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--secondary); opacity: 0.5;
}

/* ─── Listes numérotées (ol) ─── */
.fz-article-content ol, .entry-content ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8em 0;
  counter-reset: fz-ol;
}
.fz-article-content ol li, .entry-content ol li {
  position: relative;
  padding: 12px 0 12px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  counter-increment: fz-ol;
}
.fz-article-content ol li:last-child, .entry-content ol li:last-child { border-bottom: none; }
.fz-article-content ol li::before, .entry-content ol li::before {
  content: counter(fz-ol);
  position: absolute;
  left: 0; top: 12px;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--accent-soft);
  border: 1px solid rgba(192,132,252,0.15);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--fh);
  display: flex; align-items: center; justify-content: center;
}

/* Reset inside .wwc — let WiseWand handle its own ordered lists */
.wwc ol { list-style: revert; padding: revert; margin: revert; counter-reset: none; }
.wwc ol li { position: static; padding: revert; border-bottom: none; counter-increment: none; }
.wwc ol li::before { content: none; }

/* ─── Blockquote / Citations ─── */
.fz-article-content blockquote, .entry-content blockquote {
  margin: 2em 0;
  padding: 28px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-soft), var(--secondary-soft));
  border: 1px solid rgba(192,132,252,0.08);
  border-left: 4px solid var(--accent);
  font-size: 18px;
  line-height: 1.7;
  color: var(--subtitle);
  font-style: italic;
  position: relative;
}
.fz-article-content blockquote::before, .entry-content blockquote::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 48px;
  font-family: var(--fh);
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.fz-article-content blockquote p, .entry-content blockquote p {
  margin: 0;
  color: var(--subtitle);
}
.fz-article-content blockquote cite, .entry-content blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

/* ─── Tableaux ─── */
.fz-article-content table, .entry-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.8em 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 14px;
}
.fz-article-content thead, .entry-content thead {
  background: var(--bg-card);
}
.fz-article-content th, .entry-content th {
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.fz-article-content td, .entry-content td {
  padding: 13px 18px;
  color: var(--body);
  border-bottom: 1px solid var(--border);
}
.fz-article-content tr:last-child td, .entry-content tr:last-child td {
  border-bottom: none;
}
.fz-article-content tr:nth-child(even), .entry-content tr:nth-child(even) {
  background: rgba(255,255,255,0.01);
}
.fz-article-content tbody tr:hover, .entry-content tbody tr:hover {
  background: rgba(192,132,252,0.03);
}

/* ─── Images ─── */
.fz-article-content img, .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin: 1.8em 0;
  display: block;
}
.fz-article-content figure, .entry-content figure {
  margin: 2em 0;
}
.fz-article-content figcaption, .entry-content figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
}

/* WordPress image alignments */
.fz-article-content .aligncenter, .entry-content .aligncenter { display: block; margin: 2em auto; }
.fz-article-content .alignleft, .entry-content .alignleft { float: left; margin: 0.5em 1.5em 1em 0; }
.fz-article-content .alignright, .entry-content .alignright { float: right; margin: 0.5em 0 1em 1.5em; }
.fz-article-content .wp-caption, .entry-content .wp-caption { max-width: 100%; }

/* ─── Code ─── */
.fz-article-content code, .entry-content code {
  background: rgba(192,132,252,0.08);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.9em;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.fz-article-content pre, .entry-content pre {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  overflow-x: auto;
  margin: 1.8em 0;
  font-size: 14px;
  line-height: 1.6;
}
.fz-article-content pre code, .entry-content pre code {
  background: none;
  padding: 0;
  color: var(--subtitle);
}

/* ─── Séparateurs (hr) ─── */
.fz-article-content hr, .entry-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.15;
  margin: 2.5em 0;
}

/* ─── Mark / Surligné ─── */
.fz-article-content mark, .entry-content mark {
  background: rgba(192,132,252,0.15);
  color: var(--title);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ─── Video embeds ─── */
.fz-article-content iframe, .entry-content iframe {
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin: 1.8em 0;
}
.fz-article-content .wp-block-embed, .entry-content .wp-block-embed {
  margin: 2em 0;
}
.fz-article-content .wp-block-embed__wrapper, .entry-content .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
}
.fz-article-content .wp-block-embed__wrapper iframe, .entry-content .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  margin: 0;
}

/* ─── WordPress Gallery ─── */
.fz-article-content .wp-block-gallery, .entry-content .wp-block-gallery {
  gap: 12px;
  margin: 2em 0;
}
.fz-article-content .wp-block-gallery img, .entry-content .wp-block-gallery img {
  margin: 0;
}

/* ─── WordPress Buttons block ─── */
.fz-article-content .wp-block-button__link, .entry-content .wp-block-button__link {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 13px 28px !important;
  font-family: var(--fh) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  border: none !important;
  box-shadow: 0 0 30px var(--accent-glow);
  transition: all 0.35s !important;
}
.fz-article-content .wp-block-button__link:hover, .entry-content .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--accent-glow), 0 8px 25px var(--accent-glow);
}

/* ─── Definition lists (dl) ─── */
.fz-article-content dl, .entry-content dl { margin: 1.5em 0; }
.fz-article-content dt, .entry-content dt {
  font-weight: 600; color: var(--title); font-family: var(--fh); margin-bottom: 4px;
}
.fz-article-content dd, .entry-content dd {
  margin: 0 0 1em 0; padding-left: 16px;
  border-left: 2px solid rgba(192,132,252,0.15); color: var(--body);
}

/* ─── Responsive: native elements on mobile ─── */
@media (max-width: 768px) {
  .fz-article-content, .entry-content { font-size: 15px; }
  .fz-article-content h2, .entry-content h2 { font-size: 22px; }
  .fz-article-content h3, .entry-content h3 { font-size: 19px; }
  .fz-article-content blockquote, .entry-content blockquote { padding: 20px 18px; font-size: 16px; }
  .fz-article-content table, .entry-content table { display: block; overflow-x: auto; }
  .fz-article-content img, .entry-content img { border-radius: 12px; margin: 1.2em 0; }
  .fz-article-content .alignleft, .entry-content .alignleft,
  .fz-article-content .alignright, .entry-content .alignright { float: none; margin: 1.2em 0; }
  .fz-article-content ol li, .entry-content ol li { padding-left: 38px; }
  .fz-article-content ol li::before, .entry-content ol li::before { width: 24px; height: 24px; font-size: 10px; }
}

/* ═══════════════════════════════════════════════════════════ */

/* ─── RESPONSIVE ─── */
/* ─── RESPONSIVE: TABLET (max 1024px) ─── */
@media (max-width: 1024px) {
  .fz-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fz-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .fz-article-layout { grid-template-columns: 1fr; }
  .fz-sidebar { display: none; }
  .fz-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Top card #1: reduce sidebar width on tablet but keep 2-col */
  .fz-top-card__body[style*="grid-template-columns"] {
    grid-template-columns: 1fr 260px !important;
    gap: 24px !important;
  }

  /* Hero card in review: stack */
  #presentation [style*="grid-template-columns: 1fr 280px"],
  #presentation [style*="grid-template-columns:1fr 280px"] {
    display: flex !important; flex-direction: column !important;
  }

  /* Header search hide on tablet */
  .fz-nav__search { display: none; }

  /* Section padding reduce */
  .fz-section { padding-bottom: 60px; }
}

/* ─── RESPONSIVE: MOBILE (max 768px) ─── */
@media (max-width: 768px) {
  /* Layout */
  .fz-container { padding: 0 16px; }
  .fz-container--narrow { padding: 0 16px; }
  .fz-grid-2, .fz-grid-3, .fz-grid-4 { grid-template-columns: 1fr; }
  .fz-section { padding-bottom: 48px; }

  /* Typography */
  .fz-h1 { font-size: 28px; line-height: 1.15; }
  .fz-h1--hero { font-size: 32px; }
  .fz-h2 { font-size: 24px; }
  .fz-h3 { font-size: 18px; }
  .fz-text { font-size: 15px; }
  .fz-text--lg { font-size: 16px; }

  /* Header */
  .fz-header__inner { padding: 0 16px; height: 60px; }
  .fz-nav { display: none; }
  .fz-logo__text { font-size: 18px; }
  .fz-logo__icon { width: 36px; height: 36px; border-radius: 10px; }
  .fz-logo__icon span { font-size: 17px; }

  /* TODO: add hamburger menu via JS if needed */

  /* Buttons */
  .fz-btn--primary { font-size: 14px; padding: 13px 28px; width: 100%; justify-content: center; }
  .fz-btn--ghost { font-size: 14px; padding: 13px 24px; width: 100%; justify-content: center; }
  .fz-btn--primary-sm { font-size: 12px; padding: 10px 20px; }

  /* Cards */
  .fz-card__thumb { height: 140px; font-size: 36px; }
  .fz-card__body { padding: 18px 16px 16px; }
  .fz-card__title { font-size: 17px; }
  .fz-card__tags { gap: 4px; }

  /* Footer */
  .fz-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .fz-footer__inner { padding: 36px 16px 20px; }
  .fz-footer__featured { flex-direction: column; gap: 14px; text-align: center; padding: 16px 20px; }
  .fz-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Pros/Cons */
  .fz-pros-cons { grid-template-columns: 1fr; }
  .fz-pros, .fz-cons { padding: 24px 20px; }

  /* Review nav: horizontal scroll */
  .fz-review-nav { top: 60px; overflow-x: auto; justify-content: flex-start; padding: 8px 16px; }
  .fz-review-nav__inner { flex-wrap: nowrap; min-width: max-content; }
  .fz-review-nav__btn { font-size: 11px; padding: 6px 10px; }

  /* Score card */
  .fz-score-big { font-size: 42px; }
  .fz-score-big span { font-size: 16px; }
  .fz-score-card { padding: 24px 20px; }

  /* Characteristics */
  .fz-carac-card { padding: 18px 14px; }
  .fz-carac-card__icon { font-size: 22px; }
  .fz-carac-card__value { font-size: 14px; }

  /* Module cards */
  .fz-module-card { padding: 18px 16px; }

  /* FAQ */
  .fz-faq { padding: 4px 18px; }
  .fz-faq-q__text { font-size: 14px; }

  /* Top 3 cards */
  .fz-top-card__body { padding: 24px 20px 20px !important; }
  .fz-top-card__body--sm { padding: 20px 18px 18px !important; }

  /* TOP 1: stack on mobile */
  .fz-top-card__body[style*="grid-template-columns"] {
    display: block !important;
  }
  .fz-top-card__body[style*="grid-template-columns"] > div:last-child {
    margin-top: 24px;
  }

  /* Hero presentation: stack completely */
  #presentation [style*="grid-template-columns"],
  #presentation [style*="display:grid"] {
    display: flex !important; flex-direction: column !important;
  }

  /* Stats bar in contenu: 2 cols */
  #contenu > div:first-of-type { flex-wrap: wrap; }
  #contenu > div:first-of-type > div { min-width: 45%; }

  /* Verdict scores: 2 cols */
  #verdict .fz-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }

  /* Category hero */
  .fz-cat-hero { flex-direction: column; align-items: flex-start; gap: 14px; }
  .fz-cat-hero__icon { width: 56px; height: 56px; font-size: 28px; }
  .fz-cat-filters { gap: 6px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .fz-cat-filter { white-space: nowrap; flex-shrink: 0; }

  /* Blog featured article: stack */
  [style*="grid-template-columns: 1fr 1fr"][style*="border-radius"] {
    display: flex !important; flex-direction: column !important;
  }

  /* CTA blocks */
  .fz-cta-block { padding: 36px 20px; }
  .fz-cta-block--sm { padding: 28px 18px; }

  /* Callouts */
  .fz-callout { padding: 18px 20px; }
  .fz-quote { padding: 24px 20px; }
  .fz-quote__text { font-size: 18px; }

  /* Checklist */
  .fz-checklist { padding: 20px 18px; }

  /* Table: horizontal scroll */
  .fz-table { overflow-x: auto; }
  .fz-table__head, .fz-table__row { min-width: 500px; }

  /* Step cards */
  .fz-step-card { padding: 18px 16px; gap: 14px; }
  .fz-step-num { width: 38px; height: 38px; font-size: 15px; }

  /* Stat cards */
  .fz-stat-card { padding: 20px 14px; }
  .fz-stat-card__value { font-size: 26px; }

  /* Breadcrumb */
  .fz-breadcrumb { font-size: 12px; overflow-x: auto; white-space: nowrap; margin-bottom: 20px; }

  /* Badges */
  .fz-badge { font-size: 10px; padding: 3px 10px; }

  /* Newsletter input */
  .fz-cta-block [style*="display:inline-flex"][style*="gap:8px"] {
    flex-direction: column !important; width: 100%;
  }
  .fz-cta-block input[type="email"] { width: 100% !important; }

  /* Sidebar block title */
  .fz-sidebar-block { padding: 18px; }

  /* Formateur section: stack */
  #formateur [style*="grid-template-columns:auto 1fr"],
  #formateur [style*="grid-template-columns: auto 1fr"] {
    display: flex !important; flex-direction: column !important;
  }

  /* Animations: reduce motion */
  @media (prefers-reduced-motion: reduce) {
    .fz-animate { animation: none; }
    .fz-card:hover { transform: none; }
  }
}

/* ─── RESPONSIVE: SMALL MOBILE (max 480px) ─── */
@media (max-width: 480px) {
  .fz-h1 { font-size: 24px; }
  .fz-h1--hero { font-size: 28px; }
  .fz-h2 { font-size: 21px; }

  .fz-score-big { font-size: 36px; }

  /* Top 1 card specs: stack to 2 cols */
  .fz-top-card .fz-grid-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 6px !important; }

  /* Footer: simpler */
  .fz-footer__featured { display: none; }

  /* Reduce all padding */
  .fz-container { padding: 0 12px; }
  .fz-container--narrow { padding: 0 12px; }
}

/* ─── BURGER MENU ─── */
.fz-burger { display:none; background:none; border:none; padding:8px; cursor:pointer; z-index:1001; flex-direction:column; gap:5px; }
.fz-burger span { display:block; width:24px; height:2px; background:var(--body); border-radius:2px; transition:all 0.3s; }
.fz-burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); background:var(--accent); }
.fz-burger.open span:nth-child(2) { opacity:0; }
.fz-burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); background:var(--accent); }
.fz-mobile-menu { display:none; position:fixed; top:0; left:0; right:0; bottom:0; z-index:999; background:rgba(8,6,15,0.98); backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px); flex-direction:column; align-items:center; justify-content:center; gap:8px; }
.fz-mobile-menu.open { display:flex; }
.fz-mobile-menu a { font-size:22px; font-weight:600; color:var(--body); font-family:var(--fh); padding:16px 32px; border-radius:14px; transition:all 0.25s; text-decoration:none; }
.fz-mobile-menu a:hover { color:var(--accent); background:var(--accent-soft); }
@media(max-width:768px) {
  .fz-burger { display:flex; }
  .fz-header__cta { display:none; }
  .fz-footer__newsletter { flex-direction:column; text-align:center; }
  .fz-footer__nl-form { width:100%; flex-direction:column; }
  .fz-footer__nl-input { width:100% !important; }
  .fz-footer__social { justify-content:center; }
  .fz-footer__badge { margin:0 auto; }
}
@media(max-width:1024px) {
  .fz-footer__newsletter { flex-direction:column; text-align:center; }
}

/* ═══════════════════════════════════════════════════════════
   WISEWAND COMPONENTS — DARK THEME OVERRIDE (Formalyzer DA)
   Override .wwc variables to match violet/rose dark theme
   ═══════════════════════════════════════════════════════════ */

/* Core override — maps WWC tokens to Formalyzer DA */
.wwc {
  color-scheme: dark !important;
  /* Primary colors — violet DA */
  --wwc-primary: #c084fc;
  --wwc-primary-100: rgba(192,132,252,0.10);
  --wwc-primary-500: #c084fc;
  --wwc-primary-600: #a855f7;
  --wwc-primary-800: #7c3aed;
  /* Gray scale — adapted for dark bg */
  --wwc-gray: #6b7280;
  --wwc-gray-100: rgba(255,255,255,0.04);
  --wwc-gray-500: #6b7280;
  --wwc-gray-800: #c8cfd8;
  /* Black/White inverted for dark mode */
  --wwc-black: #ffffff;
  --wwc-white: #0d0b14;
  /* Status colors */
  --wwc-success: #34d399;
  --wwc-danger: #ef4444;
  /* Typography */
  --wwc-font-family: 'Satoshi', 'Outfit', -apple-system, sans-serif;
  --wwc-line-height: 1.7;
  /* Spacing & radius */
  --wwc-radius: 14px;
  --wwc-space: 1rem;
  --wwc-border-width: 1px;
  --wwc-card-border-width: 1px;
  /* Card surfaces — dark mode */
  --wwc-card-bg: rgba(255,255,255,0.025);
  --wwc-card-surface: #0d0b14;
  --wwc-card-border-color: rgba(255,255,255,0.06);
  --wwc-card-text: #c8cfd8;
  --wwc-card-heading: #ffffff;
  --wwc-card-header-weight: 700;
  --wwc-card-subheader-weight: 500;
  /* Shadow */
  --wwc-shadow: 0 4px 20px rgba(0,0,0,0.15);
  --wwc-transition: 250ms ease;
  /* Ring/outline */
  --wwc-ring: 0 0 0 3px rgba(192,132,252,0.15);
  /* Form inputs */
  --wwc-form-input-bg: rgba(255,255,255,0.05);
  --wwc-form-input-border: rgba(255,255,255,0.10);
  --wwc-form-input-text: #ffffff;
  --wwc-form-input-placeholder: #3e4550;
  --wwc-form-input-focus: #c084fc;
  --wwc-form-label-weight: 600;
  /* Buttons */
  --wwc-button-primary-bg: #c084fc;
  --wwc-button-primary-bg-hover: #7c3aed;
  --wwc-button-primary-text: #ffffff;
  --wwc-button-primary-ring: 0 0 0 3px rgba(192,132,252,0.2);
  --wwc-button-secondary-bg: rgba(255,255,255,0.04);
  --wwc-button-secondary-bg-hover: rgba(255,255,255,0.08);
  --wwc-button-secondary-text: #c8cfd8;
  --wwc-button-secondary-border: rgba(255,255,255,0.08);
  --wwc-button-secondary-ring: 0 0 0 3px rgba(255,255,255,0.05);
  /* Links */
  --wwc-link-color: #c084fc;
  --wwc-link-color-hover: #a855f7;
  /* Slider */
  --wwc-slider-track-bg: rgba(255,255,255,0.06);
  --wwc-slider-thumb-bg: #c084fc;
  /* Checkbox */
  --wwc-checkbox-bg: rgba(255,255,255,0.05);
  --wwc-checkbox-border: rgba(255,255,255,0.10);
  --wwc-checkbox-checked-bg: #c084fc;
  --wwc-checkbox-checked-border: #c084fc;
  /* Radio */
  --wwc-radio-bg: rgba(255,255,255,0.05);
  --wwc-radio-border: rgba(255,255,255,0.10);
  --wwc-radio-checked-border: #c084fc;
  --wwc-radio-checked-dot: #c084fc;
  /* Switch */
  --wwc-switch-bg: #3e4550;
  --wwc-switch-checked-bg: #c084fc;
  --wwc-switch-thumb-bg: #0d0b14;
}


  background: rgba(255,255,255,0.02) !important;
  border-color: rgba(255,255,255,0.06) !important;
  color: #c8cfd8 !important;
}

/* WWC headings */
.wwc h1, .wwc h2, .wwc h3, .wwc h4, .wwc h5, .wwc h6,
.wwc [class*="heading"], .wwc [class*="header"], .wwc strong {
  color: #ffffff !important;
}

/* WWC body text */
.wwc p, .wwc li, .wwc span, .wwc label, .wwc td {
  color: #c8cfd8;
}

/* WWC links */
.wwc a { color: #c084fc !important; }
.wwc a:hover { color: #a855f7 !important; }

/* WWC tables */
.wwc table { border-color: rgba(255,255,255,0.06) !important; }
.wwc th { background: rgba(192,132,252,0.08) !important; color: #fff !important; border-color: rgba(255,255,255,0.06) !important; }
.wwc td { border-color: rgba(255,255,255,0.04) !important; }
.wwc tr:nth-child(even) td { background: rgba(255,255,255,0.02) !important; }

/* WWC inputs/selects */
.wwc input, .wwc select, .wwc textarea {
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(255,255,255,0.08) !important;
  color: #fff !important;
}
.wwc input:focus, .wwc select:focus, .wwc textarea:focus {
  border-color: rgba(192,132,252,0.4) !important;
  box-shadow: 0 0 0 3px rgba(192,132,252,0.1) !important;
}

/* WWC buttons */
.wwc button { cursor: pointer; }

/* WWC range slider */
.wwc input[type="range"] {
  accent-color: #c084fc !important;
  background: transparent !important;
}

/* WWC pros/cons icons */
.wwc [class*="icon-pro"] { color: #34d399 !important; }
.wwc [class*="icon-con"] { color: #ef4444 !important; }

/* Smooth transitions on WWC */
.wwc * { transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease; }

/* ═══ FIXES v3.1 ═══ */

/* Fix: badge sizing consistency */
.fz-badge { font-size: 11px; padding: 4px 10px; }

/* Fix: card rating value — consistent size */
.fz-card__rating-value { font-size: 15px; font-weight: 700; }

/* Fix: card footer arrow alignment */
.fz-card__footer { 
  display: flex; justify-content: space-between; align-items: center; 
  padding-top: 12px; border-top: 1px solid var(--border); 
}

/* Fix: tag sizing */
.fz-tag { font-size: 11px; padding: 3px 10px; }

/* ─── RESPONSIVE FIXES ─── */

/* Tablet: newsletter input */
@media (max-width: 1024px) {
  .fz-footer__newsletter { flex-direction: column; text-align: center; gap: 16px; }
  .fz-footer__nl-form { width: 100%; justify-content: center; }
  .fz-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fz-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: ensure all grids stack properly */
@media (max-width: 768px) {
  .fz-grid-2, .fz-grid-3, .fz-grid-4 { grid-template-columns: 1fr !important; }
  
  /* Hero buttons stack on very small */
  .fz-btn--primary, .fz-btn--ghost { width: 100%; justify-content: center; text-align: center; }
  
  /* Card thumb height adapt */
  .fz-card__thumb { height: 160px; }
  .fz-card__thumb img { height: 100%; object-fit: cover; }
  
  /* Footer newsletter form stack */
  .fz-footer__nl-form { flex-direction: column !important; width: 100%; }
  .fz-footer__nl-input { width: 100% !important; }
  
  /* Footer grid stack */
  .fz-footer__grid { grid-template-columns: 1fr !important; gap: 28px; }
  
  /* Footer social center */
  .fz-footer__social { justify-content: flex-start; }
  
  /* Header CTA hide on mobile */
  .fz-header__cta { display: none; }
  
  /* Stat cards: 2 cols on mobile */
  .fz-section .fz-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  
  /* Step cards: full width */
  .fz-step-card { padding: 28px 20px !important; }
  
  /* Cat filters: horizontal scroll */
  .fz-cat-filters { overflow-x: auto; flex-wrap: nowrap !important; -webkit-overflow-scrolling: touch; gap: 6px; padding-bottom: 8px; }
  .fz-cat-filter { white-space: nowrap; flex-shrink: 0; }
  
  /* Review nav: scroll horizontal */
  .fz-review-nav { overflow-x: auto; }
  .fz-review-nav__inner { flex-wrap: nowrap; min-width: max-content; }
  
  /* CTA block tighter */
  .fz-cta-block { padding: 36px 20px; }
  
  /* Article layout: no sidebar */
  .fz-article-layout { grid-template-columns: 1fr !important; }
  .fz-sidebar { display: none; }
}

/* Small mobile fixes */
@media (max-width: 480px) {
  .fz-h1 { font-size: 24px !important; }
  .fz-h1--hero { font-size: 28px !important; }
  .fz-h2 { font-size: 21px !important; }
  .fz-container { padding: 0 14px; }
  .fz-container--narrow { padding: 0 14px; }
  .fz-card__body { padding: 16px 14px 14px; }
  .fz-card__title { font-size: 16px; }
  .fz-stat-card__value { font-size: 24px; }
  .fz-footer__inner { padding: 48px 14px 20px; }
}

/* ─── GUIDE PAGES: enhanced article content for WP pages ─── */
/* Make sure entry-content class also gets styled (WP default) */
.fz-article-content,
.entry-content,
.page .fz-article-content,
.single .fz-article-content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--body);
}

/* Sommaire/TOC links in guides */
.fz-article-content > ol:first-of-type,
.fz-article-content > ul:first-of-type {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 28px 28px 48px;
  margin: 1.5em 0 2em;
}
.fz-article-content > ol:first-of-type li,
.fz-article-content > ul:first-of-type li {
  padding: 6px 0;
}
.fz-article-content > ol:first-of-type a,
.fz-article-content > ul:first-of-type a {
  color: var(--accent);
  font-weight: 500;
}
.fz-article-content > ol:first-of-type a:hover,
.fz-article-content > ul:first-of-type a:hover {
  color: var(--secondary);
}

/* Strong/bold in guides */
.fz-article-content strong,
.entry-content strong {
  color: var(--title);
  font-weight: 600;
}

/* Emoji callout boxes (for guide tips) */
.fz-article-content p:has(strong:first-child) {
  /* doesn't break anything, just future-proofs */
}

/* ─── TESTIMONIALS ─── */
.fz-testimonial {
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 18px;
  transition: all 0.35s ease;
}
.fz-testimonial:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.fz-testimonial__stars {
  font-size: 14px; letter-spacing: 2px;
}
.fz-testimonial__text {
  font-size: 15px; line-height: 1.75; color: var(--subtitle);
  font-style: italic; margin: 0; flex: 1;
  position: relative; padding-left: 16px;
  border-left: 2px solid rgba(192,132,252,0.2);
}
.fz-testimonial__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.fz-testimonial__avatar {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(192,132,252,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--accent);
  font-family: var(--fh);
}
.fz-testimonial__name {
  font-size: 14px; font-weight: 600; color: var(--title);
  font-family: var(--fh);
}
.fz-testimonial__info {
  font-size: 12px; color: var(--muted); margin-top: 1px;
}

/* Responsive: testimonials */
@media (max-width: 768px) {
  .fz-testimonial { padding: 22px 18px; }
  .fz-testimonial__text { font-size: 14px; padding-left: 12px; }
}

/* ─── GLOBAL IMAGE FIX: center & cover in all card containers ─── */
.fz-top-card img,
.fz-card img,
.fz-top-card__body img {
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}
/* Small avatar/logo images inside cards: contained, not cover */
.fz-card__body img[style*="border-radius:"],
.fz-top-card__body img[style*="border-radius:"] {
  object-fit: contain;
  object-position: center;
}

/* ─── WISEWAND INLINE STYLE OVERRIDES ─── */
/* WiseWand puts inline background:lightblue etc. on callout paragraphs — override to dark */
/* EXCLUDE .wwc elements which have their own dark styling via variables */
.fz-article-content > p[style*="background"],
.entry-content > p[style*="background"] {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  border-left: 4px solid var(--accent) !important;
  color: var(--subtitle) !important;
  padding: 24px 28px !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
  margin: 1.5em 0 !important;
}

/* WiseWand div[style*="background"] callout blocks — only direct children, not inside .wwc */
.fz-article-content > div[style*="background:"]:not(.wwc),
.fz-article-content > div[style*="background-color:"]:not(.wwc),
.entry-content > div[style*="background:"]:not(.wwc),
.entry-content > div[style*="background-color:"]:not(.wwc) {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  color: var(--subtitle) !important;
  padding: 24px 28px !important;
}

/* Inline color overrides — only outside .wwc */
.fz-article-content > [style*="color: rgb"],
.fz-article-content > [style*="color:#"],
.entry-content > [style*="color: rgb"],
.entry-content > [style*="color:#"] {
  color: var(--body) !important;
}

/* But keep strong/bold white */
.fz-article-content > [style*="color"] strong,
.fz-article-content > [style*="color"] b,
.entry-content > [style*="color"] strong,
.entry-content > [style*="color"] b {
  color: var(--title) !important;
}

/* ─── SOMMAIRE TOC — enhanced for WiseWand generated TOC ─── */
/* First ol in article that contains anchor links = sommaire */
.fz-article-content > ol:first-of-type {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 20px 28px;
  margin: 1.5em 0 2.5em;
  position: relative;
}
.fz-article-content > ol:first-of-type::before {
  content: '📋 Sommaire';
  display: block;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--fh);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.fz-article-content > ol:first-of-type li {
  padding: 8px 0 8px 40px;
  border-bottom: none;
}
.fz-article-content > ol:first-of-type li::before {
  width: 26px; height: 26px;
  border-radius: 8px;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.fz-article-content > ol:first-of-type li a {
  color: var(--subtitle);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.fz-article-content > ol:first-of-type li a:hover {
  color: var(--accent);
}

/* ─── WWC widget containers fix ─── */
.fz-article-content .wwc,
.entry-content .wwc {
  margin: 2em 0;
  border-radius: 20px;
}

/* Fix WWC button alignment */
.fz-article-content .wwc button,
.entry-content .wwc button {
  cursor: pointer;
}

/* Fix WWC range/slider in dark mode */
.fz-article-content .wwc input[type="range"],
.entry-content .wwc input[type="range"] {
  width: 100%;
  background: transparent !important;
}

/* ═══════════════════════════════════════
   ARTICLE LAYOUT — Content + Sidebar
   ═══════════════════════════════════════ */
.fz-article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}

/* ─── SIDEBAR ─── */
.fz-sidebar { min-width: 0; }
.fz-sidebar__sticky {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(192,132,252,0.15) transparent;
}
.fz-sidebar__box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 20px;
}
.fz-sidebar__title {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--fh);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ─── TOC ─── */
.fz-toc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fz-toc__link {
  display: block;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  transition: all 0.2s;
  border-left: 2px solid transparent;
  text-decoration: none;
}
.fz-toc__link:hover {
  color: var(--subtitle);
  background: rgba(255,255,255,0.02);
}
.fz-toc__link--sub {
  padding-left: 24px;
  font-size: 12px;
}
.fz-toc__link--active {
  color: var(--accent) !important;
  background: var(--accent-soft);
  border-left-color: var(--accent);
  font-weight: 600;
}

/* TOC Progress Bar */
.fz-toc__progress {
  margin-top: 14px;
  height: 3px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  overflow: hidden;
}
.fz-toc__progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 3px;
  transition: width 0.15s ease;
}

/* ─── SIDEBAR RECENT ARTICLES ─── */
.fz-sidebar__article {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  text-decoration: none;
  transition: opacity 0.2s;
}
.fz-sidebar__article:last-child { border-bottom: none; }
.fz-sidebar__article:hover { opacity: 0.8; }
.fz-sidebar__article-thumb {
  width: 52px; height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.fz-sidebar__article-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--title);
  font-family: var(--fh);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fz-sidebar__article-date {
  font-size: 11px;
  color: var(--dim);
  margin-top: 3px;
}

/* ─── RESPONSIVE: hide sidebar on mobile/tablet ─── */
@media (max-width: 1024px) {
  .fz-article-layout {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  .fz-sidebar { display: none; }
}

/* ─── PAGINATION STYLES ─── */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
  font-family: var(--fh);
  color: var(--muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
  margin: 0 3px;
}
.page-numbers:hover {
  background: var(--bg-card-hover);
  color: var(--title);
  border-color: var(--border-hover);
}
.page-numbers.current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ─── CATEGORY FILTER as links (for index.php) ─── */
a.fz-cat-filter {
  text-decoration: none;
}

/* ═══ RESPONSIVE — Sidebar + Article Layout ═══ */
@media (max-width: 1024px) {
  .fz-article-layout {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .fz-sidebar { display: none !important; }
}

/* ═══ GLOBAL OVERFLOW FIX ═══ */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img, video, iframe, table, pre, .wwc {
  max-width: 100% !important;
}
.fz-article-content table,
.entry-content table {
  overflow-x: auto;
  max-width: 100%;
}
.wwc {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  word-break: break-word;
}
.wwc select,
.wwc input,
.wwc textarea,
.wwc button {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Fix WP blocks that might overflow */
.wp-block-image,
.wp-block-table,
.wp-block-embed,
.wp-block-code,
.wp-block-preformatted {
  max-width: 100% !important;
  overflow-x: auto !important;
}

/* ═══════════════════════════════════════
   WWC DEEP WIDGET FIXES
   ═══════════════════════════════════════ */

/* ALL buttons inside .wwc — proper dark styling */
.wwc button {
  background: linear-gradient(135deg, #c084fc, #a855f7) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: var(--fh) !important;
  cursor: pointer !important;
  transition: all 0.25s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.wwc button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(192,132,252,0.25) !important;
}
/* Secondary/ghost buttons */
.wwc button[class*="secondary"],
.wwc button[class*="ghost"],
.wwc button[class*="outline"] {
  background: rgba(255,255,255,0.04) !important;
  color: var(--subtitle) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}
.wwc button[class*="secondary"]:hover,
.wwc button[class*="ghost"]:hover,
.wwc button[class*="outline"]:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
}

/* SELECT dropdowns — dark theme */
.wwc select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background: rgba(255,255,255,0.04) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23c084fc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  padding: 12px 40px 12px 16px !important;
  color: #fff !important;
  font-size: 14px !important;
  cursor: pointer !important;
}
.wwc select:focus {
  border-color: rgba(192,132,252,0.4) !important;
  box-shadow: 0 0 0 3px rgba(192,132,252,0.1) !important;
  outline: none !important;
}
/* Select option dropdown bg */
.wwc select option {
  background: #1a1625 !important;
  color: #fff !important;
  padding: 8px !important;
}

/* INPUT fields (number, text, email) */
.wwc input[type="text"],
.wwc input[type="number"],
.wwc input[type="email"],
.wwc input[type="url"],
.wwc textarea {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  color: #fff !important;
  font-size: 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.wwc input:focus,
.wwc textarea:focus {
  border-color: rgba(192,132,252,0.4) !important;
  box-shadow: 0 0 0 3px rgba(192,132,252,0.1) !important;
  outline: none !important;
}
.wwc input::placeholder,
.wwc textarea::placeholder {
  color: rgba(255,255,255,0.25) !important;
}

/* RADIO BUTTONS — fix alignment */
.wwc input[type="radio"] {
  width: 20px !important;
  height: 20px !important;
  accent-color: #c084fc !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}
/* Radio label containers */
.wwc label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  padding: 10px 14px !important;
  border-radius: 12px !important;
  transition: background 0.2s !important;
  color: var(--subtitle) !important;
  font-size: 14px !important;
}
.wwc label:hover {
  background: rgba(255,255,255,0.03) !important;
}

/* CHECKBOXES */
.wwc input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  accent-color: #c084fc !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

/* RANGE SLIDER */
.wwc input[type="range"] {
  width: 100% !important;
  height: 6px !important;
  accent-color: #c084fc !important;
  background: rgba(255,255,255,0.06) !important;
  border-radius: 6px !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.wwc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #c084fc !important;
  border: 3px solid #0d0b14 !important;
  box-shadow: 0 0 10px rgba(192,132,252,0.3) !important;
  cursor: pointer !important;
}

/* PROGRESS/RESULT displays */
.wwc [class*="result"],
.wwc [class*="output"],
.wwc [class*="score"] {
  color: #fff !important;
  font-family: var(--fh) !important;
}

/* Labels (form field labels) */
.wwc [class*="label"]:not(label) {
  color: var(--subtitle) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* Step indicators */
.wwc [class*="step"],
.wwc [class*="etape"],
.wwc [class*="stage"] {
  color: var(--muted) !important;
  font-size: 13px !important;
}

/* Ensure flex-row layouts in widgets work */
.wwc [style*="display:flex"],
.wwc [style*="display: flex"] {
  gap: 12px;
}

/* Fix % symbol display */
.wwc [class*="unit"],
.wwc [class*="suffix"] {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

/* ═══════════════════════════════════════
   MEGA MENU — Desktop dropdowns
   ═══════════════════════════════════════ */
.fz-nav__dropdown {
  position: relative;
}
.fz-nav__trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}
.fz-nav__trigger svg {
  transition: transform 0.2s;
}
.fz-nav__dropdown:hover .fz-nav__trigger svg {
  transform: rotate(180deg);
}
.fz-nav__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  padding: 16px 8px;
  background: rgba(13,11,20,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1000;
}
.fz-nav__dropdown:hover .fz-nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.fz-nav__panel a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--body);
  border-radius: 10px;
  transition: all 0.15s;
  text-decoration: none;
}
.fz-nav__panel a:hover {
  background: rgba(255,255,255,0.04);
  color: var(--title);
}
.fz-nav__panel-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dim);
  padding: 4px 16px 8px;
}
.fz-nav__panel-sep {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 8px 16px;
}

/* ═══ MOBILE MENU — Accordion ═══ */
.fz-mobile-menu__group {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fz-mobile-menu__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  color: var(--body);
  font-size: 16px;
  font-family: var(--fb);
  cursor: pointer;
}
.fz-mobile-menu__arrow {
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.3s;
}
.fz-mobile-menu__group.open .fz-mobile-menu__arrow {
  transform: rotate(90deg);
}
.fz-mobile-menu__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 12px;
}
.fz-mobile-menu__group.open .fz-mobile-menu__sub {
  max-height: 500px;
}
.fz-mobile-menu__sub a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.fz-mobile-menu__sub a:hover {
  color: var(--accent);
}
.fz-mobile-menu__cta {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff !important;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
}

/* Responsive: hide desktop nav dropdowns on mobile */
@media (max-width: 900px) {
  .fz-nav { display: none !important; }
  .fz-header__cta { display: none !important; }
  .fz-burger { display: flex !important; }
}
@media (min-width: 901px) {
  .fz-burger { display: none !important; }
  .fz-mobile-menu { display: none !important; }
}

/* ═══════════════════════════════════════
   CATEGORY PAGE — Layout fixes
   Ensures TOP1 2-col grid and #2/#3 side-by-side
   work correctly regardless of WP wrapper
   ═══════════════════════════════════════ */

/* TOP 1: force 2-column layout */
.fz-top-card--gold .fz-top-card__body,
div[style*="grid-template-columns:1fr 300px"],
div[style*="grid-template-columns: 1fr 300px"] {
  display: grid !important;
  grid-template-columns: 1fr 300px !important;
  gap: 36px !important;
}

/* #2 and #3: ensure side-by-side */
.fz-top-card--silver,
.fz-top-card--bronze {
  min-width: 0;
}

/* Tablet: slightly narrower score column */
@media (max-width: 1024px) {
  .fz-top-card--gold .fz-top-card__body,
  div[style*="grid-template-columns:1fr 300px"],
  div[style*="grid-template-columns: 1fr 300px"] {
    grid-template-columns: 1fr 260px !important;
    gap: 24px !important;
  }
}

/* Mobile: stack TOP 1 */
@media (max-width: 768px) {
  .fz-top-card--gold .fz-top-card__body,
  div[style*="grid-template-columns:1fr 300px"],
  div[style*="grid-template-columns: 1fr 300px"] {
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* #2 and #3: stack on mobile */
  .fz-top-card--silver + .fz-top-card--bronze,
  .fz-grid-2 > .fz-top-card--silver,
  .fz-grid-2 > .fz-top-card--bronze {
    min-width: 100%;
  }
}

/* Gutenberg wrapper override — ensure no max-width constraint on custom pages */
.wp-block-html,
.entry-content > .wp-block-html,
article > .wp-block-html {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
