/* ═══════════════════════════════════════════
   CZR Consulting — WordPress Theme CSS
   ═══════════════════════════════════════════ */

:root {
  --navy: #1a2d4a;
  --navy-deep: #0f1d30;
  --navy-mid: #243d5e;
  --gold: #c9a227;
  --gold-light: #e8c14a;
  --gold-pale: #f5e6b0;
  --steel: #4a7fa5;
  --steel-light: #6da0c5;
  --white: #ffffff;
  --cream: #faf8f3;
  --text-light: #c8d8e8;
  --text-muted: #8aa4be;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--navy-deep); color: var(--white); overflow-x: hidden; }

/* ─── NAV ─── */
.czr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 3rem; display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,29,48,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; cursor: pointer; text-decoration: none; color: var(--white); }
.logo-hex { width: 36px; height: 36px; }
.nav-brand { font-weight: 600; font-size: 1rem; letter-spacing: 0.05em; }
.nav-brand span { color: var(--gold); }
.nav-tagline { font-size: 0.58rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; display: block; margin-top: -2px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a, .nav-links button {
  color: var(--text-light); text-decoration: none; font-size: 0.83rem; font-weight: 400;
  letter-spacing: 0.04em; transition: color 0.25s; background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.nav-links a:hover, .nav-links button:hover { color: var(--gold-light); }
.nav-cta, .nav-links .nav-cta a {
  background: var(--gold) !important; color: var(--navy-deep) !important; padding: 0.5rem 1.3rem;
  border-radius: 4px; font-weight: 600 !important; font-size: 0.8rem !important; transition: background 0.25s !important;
}
.nav-cta:hover, .nav-links .nav-cta a:hover { background: var(--gold-light) !important; }

/* WP menu classes */
.nav-links .menu-item a { color: var(--text-light); text-decoration: none; font-size: 0.83rem; }
.nav-links .menu-item a:hover { color: var(--gold-light); }
.nav-links .menu-item.nav-cta a { background: var(--gold); color: var(--navy-deep); padding: 0.5rem 1.3rem; border-radius: 4px; font-weight: 600; }

/* ─── HERO ─── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 7rem 3rem 4rem; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(74,127,165,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,162,39,0.06) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, #0d2240 50%, #152e4a 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(74,127,165,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(74,127,165,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-layout { position: relative; z-index: 2; display: flex; align-items: center; gap: 4rem; width: 100%; max-width: 1200px; margin: 0 auto; }
.hero-content { flex: 1; max-width: 620px; }
.hero-image-panel { flex-shrink: 0; width: 340px; }
.hero-img-card {
  border-radius: 12px; overflow: hidden; border: 1px solid rgba(201,162,39,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: fadeSlideDown 1.2s 0.4s ease both;
}
.hero-img-card img { width: 100%; display: block; opacity: 0.85; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.3); color: var(--gold-light);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.8rem;
  animation: fadeSlideDown 0.8s ease forwards;
}
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; display: inline-block; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.4); } }

.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 1.4rem;
  animation: fadeSlideDown 0.9s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1rem; color: var(--text-light); line-height: 1.7; max-width: 520px; margin-bottom: 2.2rem; font-weight: 300; animation: fadeSlideDown 1s 0.2s ease both; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; animation: fadeSlideDown 1.1s 0.3s ease both; margin-bottom: 2.5rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--navy-deep);
  padding: 0.9rem 2rem; border-radius: 5px; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(201,162,39,0.25); border: none; cursor: pointer; font-family:'DM Sans',sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.4); }
.btn-ghost { color: var(--text-light); font-size: 0.86rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.25s; border-bottom: 1px solid rgba(200,216,232,0.2); padding-bottom: 2px; }
.btn-ghost:hover { color: var(--white); }
.btn-outline { color: var(--text-light); font-size: 0.86rem; text-decoration: none; border: 1px solid rgba(200,216,232,0.2); padding: 0.7rem 1.5rem; border-radius: 5px; transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-certs { display: flex; gap: 0.8rem; flex-wrap: wrap; animation: fadeSlideDown 1.2s 0.4s ease both; }
.cert-pill { display: flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 0.4rem 0.9rem; border-radius: 6px; font-size: 0.72rem; color: var(--text-muted); }

@keyframes fadeSlideDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }

/* ─── SERVICES STRIP ─── */
.services-strip {
  background: rgba(201,162,39,0.06); border-top: 1px solid rgba(201,162,39,0.15); border-bottom: 1px solid rgba(201,162,39,0.15);
  padding: 1.8rem 3rem; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.service-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); }
.service-sep { color: rgba(201,162,39,0.3); font-size: 1.1rem; }

/* ─── SECTIONS ─── */
section, .czr-main section { padding: 5rem 3rem; max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
.section-label::before { content:''; display:block; width:28px; height:1px; background:var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }

/* ─── WHY CZR ─── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; margin-top: 3.5rem; }
.why-cards { display: flex; flex-direction: column; gap: 1rem; }
.why-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-left: 3px solid var(--gold); padding: 1.3rem 1.5rem; border-radius: 0 8px 8px 0; transition: all 0.3s; }
.why-card:hover { background: rgba(201,162,39,0.06); border-color: rgba(201,162,39,0.4); transform: translateX(4px); }
.why-card-title { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.35rem; }
.why-card-desc { font-size: 0.81rem; color: var(--text-muted); line-height: 1.6; }

.why-right { display: flex; flex-direction: column; gap: 1.5rem; }
.cyber-img-wrap { border-radius: 14px; overflow: hidden; border: 1px solid rgba(74,127,165,0.3); box-shadow: 0 16px 50px rgba(0,0,0,0.4); position: relative; }
.cyber-img-wrap img { width: 100%; display: block; }
.cyber-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem; background: linear-gradient(transparent, rgba(10,20,40,0.95)); }
.cyber-caption { font-size: 0.75rem; color: var(--steel-light); letter-spacing: 0.08em; }

.why-hexcard {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #1e3a56 100%);
  border: 1px solid rgba(201,162,39,0.2); border-radius: 14px; padding: 2rem; position: relative; overflow: hidden;
}
.why-hexcard::before { content:''; position:absolute; top:-40px; right:-40px; width:160px; height:160px; background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%); }
.profile-avatar { width: 60px; height: 60px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy-deep); margin-bottom: 1rem; }
.profile-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.2rem; }
.profile-title { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.profile-bio { font-size: 0.82rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.3rem; }
.profile-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.profile-tag { background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.25); color: var(--gold-light); font-size: 0.68rem; padding: 0.25rem 0.65rem; border-radius: 100px; }

/* ─── SENSIBILISATION ─── */
.sensib-section { max-width: 100%; padding: 0; }
.sensib-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 3rem; }
.sensib-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.sensib-img-wrap { border-radius: 14px; overflow: hidden; border: 1px solid rgba(74,127,165,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.sensib-img-wrap img { width: 100%; display: block; }
.sensib-content { display: flex; flex-direction: column; gap: 1.2rem; }
.sensib-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 1.3rem; border-radius: 10px; }
.sensib-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--gold-light); }
.sensib-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ─── OFFERINGS ─── */
.offerings-section { background: rgba(255,255,255,0.015); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 5rem 0; max-width: 100%; }
.offerings-inner { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }
.offer-card { background: linear-gradient(145deg, rgba(36,61,94,0.6) 0%, rgba(15,29,48,0.8) 100%); border: 1px solid rgba(74,127,165,0.2); border-radius: 12px; padding: 1.8rem; position: relative; overflow: hidden; transition: all 0.35s; }
.offer-card:hover { border-color: rgba(201,162,39,0.35); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.offer-icon { font-size: 1.8rem; margin-bottom: 0.9rem; }
.offer-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.7rem; }
.offer-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.offer-items { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.offer-items li { font-size: 0.76rem; color: var(--text-light); display: flex; align-items: flex-start; gap: 0.4rem; }
.offer-items li::before { content:'\2192'; color: var(--gold); flex-shrink: 0; }

/* ─── AUDIT WORK BANNER ─── */
.audit-work-banner { max-width: 100%; background: rgba(255,255,255,0.01); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.audit-work-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 3rem; display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }
.audit-work-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.audit-work-text p { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem; }
.audit-work-img { border-radius: 12px; overflow: hidden; border: 1px solid rgba(201,162,39,0.15); box-shadow: 0 16px 50px rgba(0,0,0,0.4); }
.audit-work-img img { width: 100%; display: block; }

/* ─── PRÉ-AUDIT ─── */
.audit-section { max-width: 100%; padding: 0; }
.audit-inner { max-width: 860px; margin: 0 auto; padding: 6rem 3rem; }
.audit-card {
  background: linear-gradient(145deg, var(--navy-mid) 0%, #1a3050 100%);
  border: 1px solid rgba(201,162,39,0.25); border-radius: 20px; padding: 3rem; position: relative; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.audit-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, transparent 100%); }
.audit-header { text-align: center; margin-bottom: 2.5rem; }
.audit-badge { display: inline-block; background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.4); color: var(--gold-light); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.4rem 1.2rem; border-radius: 100px; margin-bottom: 1rem; }
.audit-title { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; margin-bottom: 0.5rem; }
.audit-sub { font-size: 0.85rem; color: var(--text-muted); }

.audit-progress { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.progress-bar { flex:1; height:4px; background: rgba(255,255,255,0.08); border-radius:2px; overflow:hidden; }
.progress-fill { height:100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); width:0%; transition: width 0.5s; border-radius:2px; }
.progress-label { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; }

.audit-question { display: none; }
.audit-question.active { display: block; animation: fadeSlideDown 0.5s ease; }
.question-num { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 0.8rem; }
.question-text { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; line-height: 1.4; }
.answers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.answer-btn {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: var(--text-light);
  padding: 1rem; border-radius: 10px; font-size: 0.82rem; text-align: left; cursor: pointer;
  transition: all 0.25s; font-family: 'DM Sans', sans-serif;
}
.answer-btn:hover { background: rgba(201,162,39,0.1); border-color: rgba(201,162,39,0.4); color: var(--white); transform: translateY(-2px); }
.answer-btn.selected { background: rgba(201,162,39,0.15); border-color: var(--gold); color: var(--gold-light); }

.audit-result { text-align: center; }
.result-score-ring { position: relative; display: inline-block; margin-bottom: 1.5rem; }
.score-num { position: absolute; top:50%; left:50%; transform: translate(-50%,-50%); text-align: center; }
.score-num span:first-child { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; display: block; }
.score-label { font-size: 0.65rem; color: var(--text-muted); display: block; margin-top: -4px; }
.result-level { margin-bottom: 2rem; }
.result-level-badge { display: inline-block; padding: 0.3rem 1rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.5rem; }
.result-message { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; max-width: 500px; margin: 0 auto; }

.email-capture { margin-top: 2rem; }
.email-label { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.4rem; }
.email-sub { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem; }
.email-row { display: flex; gap: 0.5rem; max-width: 400px; margin: 0 auto; }
.email-input { flex:1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: var(--white); padding: 0.7rem 1rem; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; }
.email-input::placeholder { color: var(--text-muted); }
.email-submit { background: var(--gold); color: var(--navy-deep); border: none; padding: 0.7rem 1.2rem; border-radius: 6px; font-weight: 600; font-size: 0.82rem; cursor: pointer; font-family: 'DM Sans', sans-serif; white-space: nowrap; }
.email-submit:hover { background: var(--gold-light); }
.email-confirm { margin-top: 1rem; }
.confirm-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.confirm-text { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.audit-restart { background: none; border: 1px solid rgba(255,255,255,0.15); color: var(--text-muted); padding: 0.5rem 1.2rem; border-radius: 6px; margin-top: 1.5rem; cursor: pointer; font-size: 0.78rem; font-family: 'DM Sans', sans-serif; }
.audit-restart:hover { border-color: var(--gold); color: var(--gold-light); }

/* ─── CTA SECTION ─── */
.cta-section { background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, rgba(74,127,165,0.05) 100%); border-top: 1px solid rgba(201,162,39,0.2); padding: 5rem 3rem; }
.cta-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.8rem; }
.cta-sub { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; max-width: 500px; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }

/* ─── PAGE INNER (Réglementation, Articles) ─── */
.page-inner { max-width: 1200px; margin: 0 auto; padding: 8rem 3rem 4rem; }
.page-hero { text-align: center; margin-bottom: 3rem; }
.page-hero p { font-size: 0.9rem; color: var(--text-muted); max-width: 600px; margin: 1rem auto 0; line-height: 1.6; }
.page-content { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }

/* ─── RÉGLEMENTATION ─── */
.reglem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-bottom: 4rem; }
.reglem-card { background: linear-gradient(145deg, rgba(36,61,94,0.5) 0%, rgba(15,29,48,0.7) 100%); border: 1px solid rgba(74,127,165,0.2); border-radius: 14px; padding: 1.8rem; transition: all 0.3s; }
.reglem-card:hover { border-color: rgba(201,162,39,0.3); transform: translateY(-3px); }
.reglem-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.reglem-icon { font-size: 2rem; }
.reglem-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; }
.reglem-subtitle { font-size: 0.72rem; color: var(--text-muted); }
.reglem-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.reglem-status { display: flex; align-items: center; gap: 0.5rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-active { background: #4ade80; }
.status-transition { background: #fbbf24; }
.status-incoming { background: var(--steel-light); }
.status-label { font-size: 0.72rem; color: var(--text-muted); }

/* ─── DPO PARTAGE ─── */
.dpo-partage-relay { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 2.5rem; margin-bottom: 3rem; }
.dpo-relay-header { margin-bottom: 1rem; }
.dpo-relay-logo { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-bottom: 0.3rem; }
.dpo-relay-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; }
.dpo-relay-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 2rem; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.news-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 1.3rem; transition: all 0.3s; }
.news-card:hover { border-color: rgba(201,162,39,0.3); }
.news-date { font-size: 0.68rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.5rem; }
.news-title { font-size: 0.85rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.5rem; }
.news-source { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.news-link { font-size: 0.78rem; color: var(--steel-light); text-decoration: none; }
.news-link:hover { color: var(--gold-light); }

/* ─── ARTICLES ─── */
.articles-filter { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); padding: 0.5rem 1.2rem; border-radius: 100px; font-size: 0.78rem; cursor: pointer; transition: all 0.25s; font-family: 'DM Sans', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: rgba(201,162,39,0.12); border-color: rgba(201,162,39,0.4); color: var(--gold-light); }

.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.article-card { background: linear-gradient(145deg, rgba(36,61,94,0.4) 0%, rgba(15,29,48,0.6) 100%); border: 1px solid rgba(74,127,165,0.15); border-radius: 14px; overflow: hidden; display: flex; transition: all 0.3s; }
.article-card.hidden { display: none; }
.article-card:hover { border-color: rgba(201,162,39,0.3); transform: translateY(-3px); }
.article-img { width: 80px; min-height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; background: rgba(255,255,255,0.02); border-right: 1px solid rgba(255,255,255,0.05); flex-shrink: 0; }
.article-body { padding: 1.3rem; flex: 1; }
.article-meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.6rem; }
.article-platform { font-size: 0.68rem; padding: 0.2rem 0.6rem; border-radius: 100px; font-weight: 500; }
.platform-linkedin { background: rgba(0,119,181,0.15); color: #7ec8e3; }
.platform-x { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.article-date { font-size: 0.7rem; color: var(--text-muted); }
.article-title { font-size: 0.9rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.5rem; }
.article-excerpt { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.8rem; }
.article-tags { display: flex; gap: 0.3rem; margin-bottom: 0.6rem; flex-wrap: wrap; }
.article-tag { font-size: 0.65rem; background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.2); color: var(--gold-light); padding: 0.15rem 0.5rem; border-radius: 100px; }
.article-link { font-size: 0.78rem; color: var(--steel-light); text-decoration: none; }
.article-link:hover { color: var(--gold-light); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 1.5rem; border-radius: 12px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.contact-card a { color: var(--gold-light); text-decoration: none; }
.contact-card a:hover { color: var(--gold); }

.contact-form-wrap { background: linear-gradient(145deg, rgba(36,61,94,0.5) 0%, rgba(15,29,48,0.7) 100%); border: 1px solid rgba(74,127,165,0.2); border-radius: 16px; padding: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.4rem; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); padding: 0.8rem 1rem; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-deep); color: var(--white); }
.form-rgpd { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; margin-top: 0.5rem; }
.form-rgpd a { color: var(--gold-light); }

/* ─── LEGAL PAGES ─── */
.legal-page .legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; margin: 2.5rem 0 1rem; color: var(--gold-light); }
.legal-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { list-style: none; margin-bottom: 1rem; }
.legal-content ul li { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; padding-left: 1.2rem; position: relative; margin-bottom: 0.3rem; }
.legal-content ul li::before { content: '\2192'; position: absolute; left: 0; color: var(--gold); }
.legal-content a { color: var(--gold-light); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
.czr-footer { background: var(--navy-deep); border-top: 1px solid rgba(201,162,39,0.15); padding: 3rem; text-align: center; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { font-weight: 600; font-size: 1rem; margin-bottom: 0.8rem; }
.footer-brand span { color: var(--gold); }
.footer-legal { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; }
.footer-links a { color: var(--text-muted); font-size: 0.78rem; text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-widgets { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-widget-title { font-size: 0.85rem; color: var(--gold); margin-bottom: 0.5rem; }
.footer-widget-item { font-size: 0.8rem; color: var(--text-muted); }
.footer-widget-item a { color: var(--gold-light); text-decoration: none; }

/* ─── SIDEBAR WIDGETS ─── */
.sidebar-widget { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 1.5rem; border-radius: 12px; margin-bottom: 1.5rem; }
.sidebar-widget-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: var(--gold-light); }

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

@media (max-width: 768px) {
  .czr-nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(15,29,48,0.98); flex-direction: column; padding: 2rem; gap: 1rem; border-bottom: 1px solid rgba(201,162,39,0.15); }
  .nav-links.open { display: flex; }

  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-layout { flex-direction: column; gap: 2rem; }
  .hero-image-panel { width: 100%; max-width: 280px; }
  .hero h1 { font-size: 2.2rem; }

  .services-strip { padding: 1.2rem 1.5rem; gap: 1.5rem; }
  section { padding: 3rem 1.5rem; }

  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sensib-grid { grid-template-columns: 1fr; gap: 2rem; }
  .offerings-grid { grid-template-columns: 1fr; }
  .audit-work-inner { grid-template-columns: 1fr; gap: 2rem; }
  .reglem-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { align-items: center; }

  .answers-grid { grid-template-columns: 1fr; }
  .audit-inner { padding: 3rem 1.5rem; }
  .audit-card { padding: 2rem 1.5rem; }
}

/* ─── WP ADMIN BAR FIX ─── */
.admin-bar .czr-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .czr-nav { top: 46px; } }
